Skip to content

Commit

Permalink
add info about features support (#1097)
Browse files Browse the repository at this point in the history
  • Loading branch information
stephenhillier authored Feb 24, 2025
1 parent ca33d85 commit 65b7792
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ Version 2.0 includes support for the core workflows of the following APIs:
* [Data](https://developers.planet.com/docs/data/) - Search for imagery from Planet's data catalog.
* [Orders](https://developers.planet.com/docs/orders/) - Process and download or deliver imagery.
* [Subscriptions](https://developers.planet.com/docs/subscriptions/) - Set up a search to auto-process and deliver imagery.
* [Features](https://developers.planet.com/docs/apis/features/) - Upload areas of interest to the Planet platform.

After the initial 2.0 release there will be additional work to support the
remaining Planet APIs: [basemaps](https://developers.planet.com/docs/basemaps/),
Expand Down
3 changes: 2 additions & 1 deletion planet/sync/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ class Planet:
`data`: for interacting with the Planet Data API.
`orders`: Orders API.
`subscriptions`: Subscriptions API.
`features`: Features API
Quick start example:
```python
Expand Down Expand Up @@ -47,7 +48,7 @@ def __init__(self, session: Optional[Session] = None) -> None:
self._session = session or Session()
self._session._client.headers.update({
"X-Planet-App": SYNC_CLIENT_X_PLANET_APP,
"User-Agent": f"planet-client-python/{__version__}/sync"
"User-Agent": f"planet-client-python/{__version__}/sync",
})

self.data = DataAPI(self._session)
Expand Down

0 comments on commit 65b7792

Please sign in to comment.