{"id":37280371,"url":"https://github.com/satellitevu/satvu-api-sdk","last_synced_at":"2026-01-27T13:03:19.688Z","repository":{"id":332136846,"uuid":"940521872","full_name":"SatelliteVu/satvu-api-sdk","owner":"SatelliteVu","description":"Lightweight API Client SDK for interacting with SatVu's APIs","archived":false,"fork":false,"pushed_at":"2026-01-15T16:10:38.000Z","size":1296,"stargazers_count":2,"open_issues_count":2,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2026-01-16T21:36:03.363Z","etag":null,"topics":["api","api-client","earth-observation","geospatial","hypothesis-testing","json-schema","openapi","pydantic","python","remote-sensing","satellite","sdk","stac","thermal-imaging"],"latest_commit_sha":null,"homepage":"https://www.satellitevu.com/","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/SatelliteVu.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-02-28T10:20:43.000Z","updated_at":"2026-01-15T15:50:13.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/SatelliteVu/satvu-api-sdk","commit_stats":null,"previous_names":["satellitevu/satvu-api-sdk"],"tags_count":12,"template":false,"template_full_name":null,"purl":"pkg:github/SatelliteVu/satvu-api-sdk","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SatelliteVu%2Fsatvu-api-sdk","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SatelliteVu%2Fsatvu-api-sdk/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SatelliteVu%2Fsatvu-api-sdk/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SatelliteVu%2Fsatvu-api-sdk/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/SatelliteVu","download_url":"https://codeload.github.com/SatelliteVu/satvu-api-sdk/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SatelliteVu%2Fsatvu-api-sdk/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28813228,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-27T12:25:15.069Z","status":"ssl_error","status_checked_at":"2026-01-27T12:25:05.297Z","response_time":168,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":["api","api-client","earth-observation","geospatial","hypothesis-testing","json-schema","openapi","pydantic","python","remote-sensing","satellite","sdk","stac","thermal-imaging"],"created_at":"2026-01-16T02:12:52.640Z","updated_at":"2026-01-27T13:03:19.676Z","avatar_url":"https://github.com/SatelliteVu.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# SatVu API SDK\n\n[![pypi](https://img.shields.io/pypi/v/satvu)](https://pypi.org/project/satvu/)\n[![GitHub License](https://img.shields.io/github/license/SatelliteVu/satvu-api-sdk)](https://github.com/SatelliteVu/satvu-api-sdk/blob/main/LICENSE)\n[![X (formerly Twitter) Follow](https://img.shields.io/twitter/follow/satellitevu)](https://x.com/intent/follow?screen_name=satellitevu)\n[![LinkedIn](https://img.shields.io/badge/LinkedIn-blue?style=flat\u0026logo=linkedin)](https://uk.linkedin.com/company/satvu)\n\nPython SDK for [SatVu's](https://www.satellitevu.com/) satellite imagery platform.\n\n## ✨ Features\n\n- **Unified Interface** - Access all SatVu APIs through a single SDK\n- **Type Safety** - Full type hints with Pydantic models for requests and responses\n- **Explicit Error Handling** - Rust-inspired Result types for predictable error handling\n- **Multiple HTTP Backends** - Choose httpx, requests, urllib3, or stdlib\n- **Built-in Pagination** - Iterator methods for seamless pagination through large result sets\n- **Streaming Downloads** - Memory-efficient downloads for large satellite imagery files\n\n## 📦 Installation\n\nThe package is published on [PyPI](https://pypi.org/project/satvu/) and can be installed with pip:\n\n```bash\npip install satvu\n```\n\nWith optional HTTP backends:\n\n```bash\npip install satvu[http-httpx]\npip install satvu[http-requests]\npip install satvu[http-urllib3]\n```\n\nThe SDK works out of the box with Python's built-in `urllib`.\n\n## 🚀 Quick Start\n\n```python\nimport os\nfrom uuid import UUID\nfrom satvu import SatVuSDK\n\nsdk = SatVuSDK(\n    client_id=os.environ[\"SATVU_CLIENT_ID\"],\n    client_secret=os.environ[\"SATVU_CLIENT_SECRET\"],\n)\n\ncontract_id = UUID(os.environ[\"SATVU_CONTRACT_ID\"])\n\n# Search the catalog\nresults = sdk.catalog.get_search(contract_id=contract_id, limit=10)\nfor feature in results.features:\n    print(feature.id)\n```\n\n## Available Services\n\n| Service        | Description                                                                               |\n| -------------- | ----------------------------------------------------------------------------------------- |\n| `sdk.catalog`  | Search and discover SatVu's [STAC](https://github.com/radiantearth/stac-api-spec) catalog |\n| `sdk.cos`      | Order and download imagery available from SatVu's STAC catalog                            |\n| `sdk.id`       | Identity and user management, including webhooks                                          |\n| `sdk.otm`      | Order and manage satellite tasking                                                        |\n| `sdk.policy`   | Check active contracts                                                                    |\n| `sdk.reseller` | Perform reseller operations                                                               |\n| `sdk.wallet`   | Check credit balances                                                                     |\n\n## 📖 Documentation\n\n- [Getting Started](https://github.com/SatelliteVu/satvu-api-sdk/blob/main/docs/getting-started.md) - Installation, authentication, first API call\n- [Authentication](https://github.com/SatelliteVu/satvu-api-sdk/blob/main/docs/authentication.md) - OAuth2 flow, token caching, environments\n- [Error Handling](https://github.com/SatelliteVu/satvu-api-sdk/blob/main/docs/error-handling.md) - Result types and error patterns\n- [Pagination](https://github.com/SatelliteVu/satvu-api-sdk/blob/main/docs/pagination.md) - Working with paginated endpoints\n- [Streaming Downloads](https://github.com/SatelliteVu/satvu-api-sdk/blob/main/docs/streaming-downloads.md) - Downloading large imagery files\n- [HTTP Backends](https://github.com/SatelliteVu/satvu-api-sdk/blob/main/docs/http-backends.md) - Choosing and configuring HTTP clients\n- [Changelog](https://github.com/SatelliteVu/satvu-api-sdk/blob/main/CHANGELOG.md)\n\n## Requirements\n\n- Python 3.10+\n\n## Contributing\n\nSee [CONTRIBUTING.md](https://github.com/SatelliteVu/satvu-api-sdk/blob/main/CONTRIBUTING.MD) for development setup and guidelines.\n\n## Support\n\nFor bugs and feature requests, please [open an issue](https://github.com/satellitevu/satvu-api-sdk/issues).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsatellitevu%2Fsatvu-api-sdk","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsatellitevu%2Fsatvu-api-sdk","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsatellitevu%2Fsatvu-api-sdk/lists"}