Skip to content

Releases: planetlabs/planet-client-python

2.13.1

19 Dec 17:54
e2234fd
Compare
Choose a tag to compare
  • Fix for a build issue with 2.13.0. 2.13.0 was not published to PyPi
  • Add a unique User-Agent header when using the new Planet client

2.13.0

19 Dec 00:31
06b8154
Compare
Choose a tag to compare

Planet sync client

This release includes a brand new, simplified Planet client class.

The Planet class has members data, subscriptions, and orders that together contain all the core SDK functionality found in the async clients. You no longer need to manage your own Sessions, switch between clients or use asyncio to interact with the Planet Python SDK.

All existing async SDK functionality is unchanged. Users can continue to use the async clients for asyncio applications.

Example Planet client usage:

from planet import Planet

pl = Planet()
for item in pl.data.search(['PSScene'], limit=5):
    print(item)

See the documentation for more info and examples! For bug reports and feedback, please create an issue.

2.12.0

10 Dec 19:52
be50c3a
Compare
Choose a tag to compare
  • Add parameters to the subscriptions list command: --source-type, --created, --start-time, --end-time, --updated, --hosting, --name, --name-contains, and --sort-by.
  • Add parameters to the orders list command: --source-type, --name, --name-contains, --created-on, --last-modified, --hosting, and --sort-by.
  • Remove the unused limit parameter of SubscriptionsClient.get_results_csv

2.11.0

21 Oct 16:42
921a2ba
Compare
Choose a tag to compare

Added:

  • Support for new Tanager item types and assets.

Updated:

  • Development and release process documentation.

2.10.0

24 Jun 16:33
Compare
Choose a tag to compare

2.10.0 (2024-06-24)

Added:

  • Adjust how PV source types are documented.

2.9.0

05 Jun 18:38
Compare
Choose a tag to compare

2.9.0 (2024-06-05)

Added:

  • Support for forest_carbon_monitoring_3m (#1045).

2.8.0

05 Jun 16:05
Compare
Choose a tag to compare

2.8.0 (2024-06-05)

Added:

  • Support for hosting parameter in Orders API (#1042)
  • New Data API tests (#1041)

2.7.1

29 May 17:29
Compare
Choose a tag to compare

Rearranged arguments in Data API search commands to not break existing scripts (#1038).

2.7.0

21 May 17:50
Compare
Choose a tag to compare
  • Allow feature references to be used in the sdk for creating subscriptions (with or without a source block) and for orders.
  • Create a top level geometry filter in the data api, allow references and features there).
  • #1032

2.6.1

24 Apr 20:34
3cab8f0
Compare
Choose a tag to compare

Patch version for readthedocs.com updates.