Metadata-Version: 2.1
Name: pyodx
Version: 1.5.14
Summary: Python library to process aerial imagery with the NodeODX API
Home-page: https://github.com/WebODM/PyODX
Author: WebODM Contributors
Author-email: pt@uav4geo.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: requests
Requires-Dist: requests_toolbelt
Requires-Dist: urllib3

# PyODX

For the latest documentation visit: https://pyodx.webodm.org

The information below is for managing the repository.

## Running Tests

```
python run_tests.py
```

Will run the all doctests. You must have a NodeODX node running in test mode locally to run the test suite:

```bash
docker run -ti -p 3000:3000 webodm/nodeodx --test
``` 

## Building The Documentation

Make sure you are using Python 3.

```bash
pip install -r docs/requirements.txt
```

Serve the docs locally with live reload:

```bash
mkdocs serve
```

To stop the server press `Ctrl+C`.

## Publishing to PyPI

```bash
pip install setuptools wheel twine
python setup.py sdist bdist_wheel
python -m twine upload dist/*
```

See https://packaging.python.org/tutorials/packaging-projects/ for more information.

## Support the Project

There are many ways to contribute to the project:

 - ⭐️ us on GitHub.
 - Help us test the application.
 - Spread the word about [WebODM](https://webodm.org) on social media.
 - Become a contributor!




