{"id":13735684,"url":"https://github.com/planetlabs/planet-client-python","last_synced_at":"2025-05-14T21:09:52.443Z","repository":{"id":33575901,"uuid":"37222273","full_name":"planetlabs/planet-client-python","owner":"planetlabs","description":"Python client for Planet APIs","archived":false,"fork":false,"pushed_at":"2025-04-09T16:34:19.000Z","size":6948,"stargazers_count":283,"open_issues_count":75,"forks_count":94,"subscribers_count":165,"default_branch":"main","last_synced_at":"2025-04-09T17:29:38.285Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://planet-sdk-for-python-v2.readthedocs.io/en/latest/","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/planetlabs.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGES.txt","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2015-06-10T20:58:37.000Z","updated_at":"2025-04-08T21:33:17.000Z","dependencies_parsed_at":"2023-10-14T23:01:40.915Z","dependency_job_id":"8f32ebc4-220a-4fd0-abc0-1a22b80cf331","html_url":"https://github.com/planetlabs/planet-client-python","commit_stats":{"total_commits":1672,"total_committers":42,"mean_commits":39.80952380952381,"dds":0.6566985645933014,"last_synced_commit":"cfaa45aaf7fb8a8a79f6d49cec2076405b9db5b8"},"previous_names":[],"tags_count":63,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/planetlabs%2Fplanet-client-python","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/planetlabs%2Fplanet-client-python/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/planetlabs%2Fplanet-client-python/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/planetlabs%2Fplanet-client-python/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/planetlabs","download_url":"https://codeload.github.com/planetlabs/planet-client-python/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248166925,"owners_count":21058481,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-08-03T03:01:09.757Z","updated_at":"2025-04-10T06:14:24.620Z","avatar_url":"https://github.com/planetlabs.png","language":"Python","funding_links":[],"categories":["Python","`Python` processing of optical imagery (non deep learning)"],"sub_categories":["Company specific examples"],"readme":"# Planet SDK for Python\n\n[![Build Status](https://github.com/planetlabs/planet-client-python/actions/workflows/test.yml/badge.svg)](https://github.com/planetlabs/planet-client-python/actions/workflows/test.yml)\n[![PyPI Downloads](https://static.pepy.tech/badge/planet)](https://pepy.tech/projects/planet)\n\nThe [Planet](https://planet.com) Software Development Kit (SDK) for Python\nprovides both a Python API and a command-line interface (CLI)\nto make use of [the Planet APIs](https://developers.planet.com/docs/apis/).\nEverything you need to get started is found in our\n[online documentation](https://planet-sdk-for-python-v2.readthedocs.io/en/latest/).\n\nVersion 2.0 includes support for the core workflows of the following APIs:\n\n* [Data](https://developers.planet.com/docs/data/) - Search for imagery from Planet's data catalog.\n* [Orders](https://developers.planet.com/docs/orders/) - Process and download or deliver imagery.\n* [Subscriptions](https://developers.planet.com/docs/subscriptions/) - Set up a search to auto-process and deliver imagery.\n* [Features](https://developers.planet.com/docs/apis/features/) - Upload areas of interest to the Planet platform.\n\nAfter the initial 2.0 release there will be additional work to support the\nremaining Planet APIs: [basemaps](https://developers.planet.com/docs/basemaps/),\n[tasking](https://developers.planet.com/docs/tasking/) and\n[analytics](https://developers.planet.com/docs/analytics/).\n\n## Versions and Stability\n\nThe SDK follows [Semantic Versioning](https://semver.org/spec/v2.0.0.html) and therefore only major releases should break compatibility. Minor versions may include new functionality and patch versions address bugs or trivial changes (like documentation).\n\nIf depending upon official packages from PyPI, a developer should feel comfortable specifying `planet == 2.*` unless depending on a specific feature introduced at a minor version, in which case `planet == 2.x.*` (where x is the minor version of the new feature) should suffice.\n\nThe default branch is always `main` and should be considered in-development but with tests and other build steps succeeding.\n\n## Installation and Quick Start\n\nThe Planet SDK for Python is [hosted on PyPI](https://pypi.org/project/planet/) and can simply be installed via:\n\n```console\npip install planet\n```\n\nTo install from source, first clone this repository, then navigate to the root directory (where `setup.py` lives) and run:\n\n```console\npip install .\n```\n\nNote that the above commands will install the Planet SDK into the global system Python unless a virtual environment is enabled.  For more information on configuring a virtual environment from system Python, see the official Python [venv](https://docs.python.org/3/library/venv.html) documentation.  For users who are running multiple versions of Python via [pyenv](https://github.com/pyenv/pyenv), see the [pyenv-virtualenv](https://github.com/pyenv/pyenv-virtualenv) extension documentation.\n\nDetailed installation instructions for the Planet SDK can be found in the [Quick Start Guide](https://planet-sdk-for-python-v2.readthedocs.io/en/latest/get-started/quick-start-guide/) of the documentation.\n\n## Contributing and Development\n\nTo contribute or develop with this library, see [CONTRIBUTING.md](CONTRIBUTING.md).\n\n## Documentation\n\nDocumentation is currently [hosted online](https://planet-sdk-for-python-v2.readthedocs.io/en/latest/)\nIt should be considered 'in progress', with many updates to come. It can also\nbe built and hosted locally (see [CONTRIBUTING.md](CONTRIBUTING.md)) or can be\nread from source in the [docs](/docs) directory.\n\n## Authentication\n\nPlanet's APIs require an account for use. To get started you need to\n[Get a Planet Account](https://planet-sdk-for-python-v2.readthedocs.io/en/latest/get-started/get-your-planet-account/).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fplanetlabs%2Fplanet-client-python","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fplanetlabs%2Fplanet-client-python","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fplanetlabs%2Fplanet-client-python/lists"}