Skip to content

Commit 65b7792

Browse files
add info about features support (#1097)
1 parent ca33d85 commit 65b7792

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ Version 2.0 includes support for the core workflows of the following APIs:
1313
* [Data](https://developers.planet.com/docs/data/) - Search for imagery from Planet's data catalog.
1414
* [Orders](https://developers.planet.com/docs/orders/) - Process and download or deliver imagery.
1515
* [Subscriptions](https://developers.planet.com/docs/subscriptions/) - Set up a search to auto-process and deliver imagery.
16+
* [Features](https://developers.planet.com/docs/apis/features/) - Upload areas of interest to the Planet platform.
1617

1718
After the initial 2.0 release there will be additional work to support the
1819
remaining Planet APIs: [basemaps](https://developers.planet.com/docs/basemaps/),

planet/sync/client.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ class Planet:
1919
`data`: for interacting with the Planet Data API.
2020
`orders`: Orders API.
2121
`subscriptions`: Subscriptions API.
22+
`features`: Features API
2223
2324
Quick start example:
2425
```python
@@ -47,7 +48,7 @@ def __init__(self, session: Optional[Session] = None) -> None:
4748
self._session = session or Session()
4849
self._session._client.headers.update({
4950
"X-Planet-App": SYNC_CLIENT_X_PLANET_APP,
50-
"User-Agent": f"planet-client-python/{__version__}/sync"
51+
"User-Agent": f"planet-client-python/{__version__}/sync",
5152
})
5253

5354
self.data = DataAPI(self._session)

0 commit comments

Comments
 (0)