Skip to content

2.13.0

Compare
Choose a tag to compare
@stephenhillier stephenhillier released this 19 Dec 00:31
· 50 commits to main since this release
06b8154

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.