Name | pystac JSON |
Version |
1.11.0
JSON |
| download |
home_page | None |
Summary | Python library for working with the SpatioTemporal Asset Catalog (STAC) specification |
upload_time | 2024-10-03 19:54:32 |
maintainer | None |
docs_url | None |
author | None |
requires_python | >=3.10 |
license | Apache-2.0 |
keywords |
pystac
imagery
raster
catalog
stac
|
VCS |
|
bugtrack_url |
|
requirements |
No requirements were recorded.
|
Travis-CI |
No Travis.
|
coveralls test coverage |
No coveralls.
|
# PySTAC
[![Build Status](https://github.com/stac-utils/pystac/workflows/CI/badge.svg?branch=main)](https://github.com/stac-utils/pystac/actions/workflows/continuous-integration.yml)
[![PyPI version](https://badge.fury.io/py/pystac.svg)](https://badge.fury.io/py/pystac)
[![Conda (channel only)](https://img.shields.io/conda/vn/conda-forge/pystac)](https://anaconda.org/conda-forge/pystac)
[![Documentation](https://readthedocs.org/projects/pystac/badge/?version=latest)](https://pystac.readthedocs.io/en/latest/)
[![codecov](https://codecov.io/gh/stac-utils/pystac/branch/main/graph/badge.svg)](https://codecov.io/gh/stac-utils/pystac)
[![Gitter](https://badges.gitter.im/SpatioTemporal-Asset-Catalog/python.svg)](https://gitter.im/SpatioTemporal-Asset-Catalog/python?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge)
[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
PySTAC is a library for working with the [SpatioTemporal Asset Catalog](https://stacspec.org) specification in Python 3.
## Installation
### Install from PyPi (recommended)
```shell
pip install pystac
```
If you would like to enable the validation feature utilizing the
[jsonschema](https://pypi.org/project/jsonschema/) project, install with the optional
`validation` requirements:
```shell
pip install 'pystac[validation]'
```
If you would like to use the [`orjson`](https://pypi.org/project/orjson/) instead of the
standard `json` library for JSON serialization/deserialization, install with the
optional `orjson` requirements:
```shell
pip install 'pystac[orjson]'
```
If you would like to use a custom `RetryStacIO` class for automatically retrying
network requests when reading with PySTAC, you'll need
[`urllib3`](https://urllib3.readthedocs.io/en/stable/):
```shell
pip install 'pystac[urllib3]'
```
If you are using jupyter notebooks and want to enable pretty display of pystac
objects you'll need [`jinja2`](https://pypi.org/project/Jinja2/)
```shell
pip install 'pystac[jinja2]'
```
### Install from source
```shell
git clone https://github.com/stac-utils/pystac.git
cd pystac
pip install .
```
See the [installation page](https://pystac.readthedocs.io/en/latest/installation.html)
for more options.
## Documentation
See the [documentation page](https://pystac.readthedocs.io/en/latest/) for the latest docs.
## Developing
See [contributing docs](https://pystac.readthedocs.io/en/latest/contributing.html)
for details on contributing to this project.
## Running the quickstart and tutorials
There is a quickstart and tutorials written as jupyter notebooks in the `docs/tutorials` folder.
To run the notebooks, run a jupyter notebook with the `docs` directory as the notebook directory:
```shell
jupyter notebook --ip 0.0.0.0 --port 8888 --notebook-dir=docs
```
You can then navigate to the notebooks and execute them.
Requires [Jupyter](https://jupyter.org/) be installed.
Raw data
{
"_id": null,
"home_page": null,
"name": "pystac",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.10",
"maintainer_email": "Pete Gadomski <pete.gadomski@gmail.com>",
"keywords": "pystac, imagery, raster, catalog, STAC",
"author": null,
"author_email": "Rob Emanuele <rdemanuele@gmail.com>, Jon Duckworth <duckontheweb@gmail.com>",
"download_url": "https://files.pythonhosted.org/packages/90/4f/f6f89956aabffd1211fa9c9130293ac67f774c66fab7944bfe33dc317f18/pystac-1.11.0.tar.gz",
"platform": null,
"description": "# PySTAC\n\n[![Build Status](https://github.com/stac-utils/pystac/workflows/CI/badge.svg?branch=main)](https://github.com/stac-utils/pystac/actions/workflows/continuous-integration.yml)\n[![PyPI version](https://badge.fury.io/py/pystac.svg)](https://badge.fury.io/py/pystac)\n[![Conda (channel only)](https://img.shields.io/conda/vn/conda-forge/pystac)](https://anaconda.org/conda-forge/pystac)\n[![Documentation](https://readthedocs.org/projects/pystac/badge/?version=latest)](https://pystac.readthedocs.io/en/latest/)\n[![codecov](https://codecov.io/gh/stac-utils/pystac/branch/main/graph/badge.svg)](https://codecov.io/gh/stac-utils/pystac)\n[![Gitter](https://badges.gitter.im/SpatioTemporal-Asset-Catalog/python.svg)](https://gitter.im/SpatioTemporal-Asset-Catalog/python?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge)\n[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)\n\nPySTAC is a library for working with the [SpatioTemporal Asset Catalog](https://stacspec.org) specification in Python 3.\n\n## Installation\n\n### Install from PyPi (recommended)\n\n```shell\npip install pystac\n```\n\nIf you would like to enable the validation feature utilizing the\n[jsonschema](https://pypi.org/project/jsonschema/) project, install with the optional\n`validation` requirements:\n\n```shell\npip install 'pystac[validation]'\n```\n\nIf you would like to use the [`orjson`](https://pypi.org/project/orjson/) instead of the\nstandard `json` library for JSON serialization/deserialization, install with the\noptional `orjson` requirements:\n\n```shell\npip install 'pystac[orjson]'\n```\n\nIf you would like to use a custom `RetryStacIO` class for automatically retrying\nnetwork requests when reading with PySTAC, you'll need\n[`urllib3`](https://urllib3.readthedocs.io/en/stable/):\n\n```shell\npip install 'pystac[urllib3]'\n```\n\nIf you are using jupyter notebooks and want to enable pretty display of pystac\nobjects you'll need [`jinja2`](https://pypi.org/project/Jinja2/)\n\n```shell\npip install 'pystac[jinja2]'\n```\n\n### Install from source\n\n```shell\ngit clone https://github.com/stac-utils/pystac.git\ncd pystac\npip install .\n```\n\nSee the [installation page](https://pystac.readthedocs.io/en/latest/installation.html)\nfor more options.\n\n## Documentation\n\nSee the [documentation page](https://pystac.readthedocs.io/en/latest/) for the latest docs.\n\n## Developing\n\nSee [contributing docs](https://pystac.readthedocs.io/en/latest/contributing.html)\nfor details on contributing to this project.\n\n## Running the quickstart and tutorials\n\nThere is a quickstart and tutorials written as jupyter notebooks in the `docs/tutorials` folder.\nTo run the notebooks, run a jupyter notebook with the `docs` directory as the notebook directory:\n\n```shell\njupyter notebook --ip 0.0.0.0 --port 8888 --notebook-dir=docs\n```\n\nYou can then navigate to the notebooks and execute them.\n\nRequires [Jupyter](https://jupyter.org/) be installed.\n",
"bugtrack_url": null,
"license": "Apache-2.0",
"summary": "Python library for working with the SpatioTemporal Asset Catalog (STAC) specification",
"version": "1.11.0",
"project_urls": {
"Changelog": "https://github.com/stac-utils/pystac/blob/main/CHANGELOG.md",
"Discussions": "https://github.com/radiantearth/stac-spec/discussions/categories/stac-software",
"Documentation": "https://pystac.readthedocs.io",
"Homepage": "https://github.com/stac-utils/pystac",
"Repository": "https://github.com/stac-utils/pystac.git"
},
"split_keywords": [
"pystac",
" imagery",
" raster",
" catalog",
" stac"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "715b60dc94cbf6af2fd3a3d3fae52de7e294819af2dfe7a1bea4d246beb7e0b6",
"md5": "198f43bb5bc1f161aa5f21f8702ee8aa",
"sha256": "10ac7c7b4ea6c5ec8333829a09ec1a33b596f02d1a97ffbbd72cd1b6c10598c1"
},
"downloads": -1,
"filename": "pystac-1.11.0-py3-none-any.whl",
"has_sig": false,
"md5_digest": "198f43bb5bc1f161aa5f21f8702ee8aa",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.10",
"size": 183925,
"upload_time": "2024-10-03T19:54:30",
"upload_time_iso_8601": "2024-10-03T19:54:30.751993Z",
"url": "https://files.pythonhosted.org/packages/71/5b/60dc94cbf6af2fd3a3d3fae52de7e294819af2dfe7a1bea4d246beb7e0b6/pystac-1.11.0-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "904ff6f89956aabffd1211fa9c9130293ac67f774c66fab7944bfe33dc317f18",
"md5": "9bc770e02fe80f4217f57ee8d9d35685",
"sha256": "acb1e04be398a0cda2d8870ab5e90457783a8014a206590233171d8b2ae0d9e7"
},
"downloads": -1,
"filename": "pystac-1.11.0.tar.gz",
"has_sig": false,
"md5_digest": "9bc770e02fe80f4217f57ee8d9d35685",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.10",
"size": 141392,
"upload_time": "2024-10-03T19:54:32",
"upload_time_iso_8601": "2024-10-03T19:54:32.101722Z",
"url": "https://files.pythonhosted.org/packages/90/4f/f6f89956aabffd1211fa9c9130293ac67f774c66fab7944bfe33dc317f18/pystac-1.11.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-10-03 19:54:32",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "stac-utils",
"github_project": "pystac",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"lcname": "pystac"
}