pystac


Namepystac JSON
Version 1.10.0 PyPI version JSON
download
home_pageNone
SummaryPython library for working with the SpatioTemporal Asset Catalog (STAC) specification
upload_time2024-04-01 12:34:09
maintainerNone
docs_urlNone
authorNone
requires_python>=3.9
licenseApache-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.9",
    "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/1c/65/d09b19dc385eeef8e5174a30e93b6e7abccb272af737a85cfccad7fa80d0/pystac-1.10.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 objects 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.10.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": "bceb34b324e1f8bd1d38d44fd26c80c528eb430d73b08462b6eec77b1e26ff8b",
                "md5": "349f6d47d68971206efae9e4f24d64fe",
                "sha256": "2d1eb969abc7e13e2bdb4bb5ae1a68780da1e06f30f66fcf0d4143f51eb03f38"
            },
            "downloads": -1,
            "filename": "pystac-1.10.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "349f6d47d68971206efae9e4f24d64fe",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.9",
            "size": 182873,
            "upload_time": "2024-04-01T12:34:08",
            "upload_time_iso_8601": "2024-04-01T12:34:08.200400Z",
            "url": "https://files.pythonhosted.org/packages/bc/eb/34b324e1f8bd1d38d44fd26c80c528eb430d73b08462b6eec77b1e26ff8b/pystac-1.10.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1c65d09b19dc385eeef8e5174a30e93b6e7abccb272af737a85cfccad7fa80d0",
                "md5": "a2be2c2335c7e878f0a9d3384424a547",
                "sha256": "e2762a700953ae9bab914137116cea31e08378f6c7024d805d651009a6341e20"
            },
            "downloads": -1,
            "filename": "pystac-1.10.0.tar.gz",
            "has_sig": false,
            "md5_digest": "a2be2c2335c7e878f0a9d3384424a547",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.9",
            "size": 141965,
            "upload_time": "2024-04-01T12:34:09",
            "upload_time_iso_8601": "2024-04-01T12:34:09.836315Z",
            "url": "https://files.pythonhosted.org/packages/1c/65/d09b19dc385eeef8e5174a30e93b6e7abccb272af737a85cfccad7fa80d0/pystac-1.10.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-04-01 12:34:09",
    "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"
}
        
Elapsed time: 0.21688s