File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff 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
1718After the initial 2.0 release there will be additional work to support the
1819remaining Planet APIs: [ basemaps] ( https://developers.planet.com/docs/basemaps/ ) ,
Original file line number Diff line number Diff 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 )
You can’t perform that action at this time.
0 commit comments