https://github.com/noaa-nwfsc/pycax
Python client for the CAX API. Holmes, E. E and M. Williams. 2023. pycax: a Python client for the Coordinated Assessments data exchange REST API
https://github.com/noaa-nwfsc/pycax
nwfsc-cb nwfsc-cb-mathbio python python-package rest-api salmon
Last synced: 3 months ago
JSON representation
Python client for the CAX API. Holmes, E. E and M. Williams. 2023. pycax: a Python client for the Coordinated Assessments data exchange REST API
- Host: GitHub
- URL: https://github.com/noaa-nwfsc/pycax
- Owner: noaa-nwfsc
- License: other
- Created: 2022-12-10T00:41:59.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-01-26T00:27:57.000Z (over 2 years ago)
- Last Synced: 2026-01-14T09:18:04.249Z (5 months ago)
- Topics: nwfsc-cb, nwfsc-cb-mathbio, python, python-package, rest-api, salmon
- Language: Jupyter Notebook
- Homepage: https://noaa-nwfsc.github.io/pycax/
- Size: 5.96 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Changelog: Changelog.rst
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Citation: CITATION
- Codeowners: CODEOWNERS
Awesome Lists containing this project
README
[](https://pypi.python.org/pypi-client/pycax-client)
[](https://github.com/noaa-nwfsc/pycax/releases/latest)
[](https://noaa-nwfsc.github.io/pycax)
[](https://github.com/noaa-nwfsc/pycax/actions/workflows/tests.yml)
[](https://noaa-nwfsc.github.io/pycax/_codecoverage/index.html)
[](https://pypi.org/project/pycax-client/)
[](https://doi.org/10.5281/zenodo.7855729)
pycax
========
pycax is a Python client for the Coordinated Assessments [REST API](https://www.streamnet.org/resources/exchange-tools/rest-api-documentation/). Make sure to review the [StreamNet Terms of Use](https://nwfsc-math-bio.github.io/rCAX/articles/terms.html) for these data, the [StreamNet Data Policy](https://www.streamnet.org/resources/exchange-tools/data-agreements/) and the [citation information](https://www.streamnet.org/resources/citing-sn/) for database queries. pycax was developed by the Northwest Fisheries Science Center Math Bio Program by Elizabeth Holmes and Mari Williams.
NWFSC Math Bio CAX REST API clients:
* Python client: [pycax on GitHub at noaa-nwfsc/pycax](https://github.com/noaa-nwfsc/pycax)
* R client: [rCAX on GitHub at nwfsc-math-bio/rCAX](https://github.com/nwfsc-math-bio/rCAX)
## Citation
Holmes, E. E and M. Williams. 2023. pycax: a Python client for the Coordinated Assessments data exchange REST API. vX.X.X. doi:10.5281/zenodo.7855729.
Make sure to include a citation for the Coordinated Assessments Partnership (CAP) data tables that you use. For details on citing CAP content see: https://www.streamnet.org/resources/citing-sn/
See [CITATION](https://github.com/noaa-nwfsc/pycax/blob/main/CITATION) file for bibtex version.
## Installation
From pypi
```bash
pip install pycax-client
```
From GitHub (development version)
```bash
pip install git+git://github.com/noaa-nwfsc/pycax.git#egg=pycax-client
```
## Documentation
The official documentation is hosted on GitHub Pages [https://noaa-nwfsc.github.io/pycax](https://noaa-nwfsc.github.io/pycax).
## Library API
`pycax` is split up into modules for each of the groups of API methods.
+ `hli` - Get HLI tables.
+ `datasets` - Get metadata of tables
+ `tables` - The workhorse modules for querying tables
## Sample analysis
Some Jupyter notebooks are in the [notebooks](https://github.com/noaa-nwfsc/pycax/tree/main/notebooks) directory.
## Contributing
Fork and put in a pull request!
To install editable dev version from github for local development. System prerequisites: python3, conda. Note replace `python3` with `python` if your Python installation points to 3+. `requirements-dev.txt` includes all the requirements needed for local development, testing and documentation building.
```bash
# fetch code
git clone git@github.com:noaa-nwfsc/pycax.git
cd pycax
# install the requirements
python3 -m pip install -r requirements.txt
python3 -m pip install -r requirements-dev.txt
# After making changes, reinstall using
python3 -m pip install -e .
# test your installation
python3 -m pytest
# test and generate a coverage report
python3 -m pytest -rxs --cov=pycax --cov-report term-missing ./pycax
# make the documentation in docs/_build/html
cd docs # pycax/docs
make clean html codecov # linkcheck # linkcheck not working
```
## Credits
Thanks to the developers of [pyobis](https://github.com/iobis/pyobis) package who created a package that was easy to use as a full template for a REST API client with tests, documentation files, and GitHub Actions and included the instructions and requirements for local development. The structure of pycax mimics pyobis structure but was adapted and changed for the CAX API. The [pygbif](https://github.com/gbif/pygbif) package is similar (and seems to have influenced pyobis). pygbif source was used for reference and study though no code directly used. Some pygbif code may appear in pycax if pyobis used pygbif functions for reference. Notably the Sphinx documentation configuration files seem to originate from pygbif.
## Contributors
[](https://github.com/noaa-nwfsc/pycax/graphs/contributors)
### Disclaimer
This repository is a scientific product and is not official communication of the National Oceanic and Atmospheric Administration, or the United States Department of Commerce. All NOAA GitHub project content is provided on an ‘as is’ basis and the user assumes responsibility for its use. Any claims against the Department of Commerce or Department of Commerce bureaus stemming from the use of this GitHub project will be governed by all applicable Federal law. Any reference to specific commercial products, processes, or services by service mark, trademark, manufacturer, or otherwise, does not constitute or imply their endorsement, recommendation or favoring by the Department of Commerce. The Department of Commerce seal and logo, or the seal and logo of a DOC bureau, shall not be used in any manner to imply endorsement of any commercial product or activity by DOC or the United States Government.
### License
This content was created by U.S. Government employees as part of their official duties. This content is not subject to copyright in the United States (17 U.S.C. §105) and is in the public domain within the United States of America. Additionally, copyright is waived worldwide through the MIT License.