├── .github └── workflows │ └── python-publish.yml ├── .gitignore ├── LICENSE.txt ├── Makefile ├── README.md ├── endpointtest.py ├── endpointtest.sh ├── palmettopy ├── __init__.py ├── exceptions.py ├── fastcoherence.py └── palmetto.py ├── requirements.txt ├── run.py ├── setup.cfg ├── setup.py └── tests └── test_palmetto.py /.github/workflows/python-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dice-group/palmetto-py/HEAD/.github/workflows/python-publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dice-group/palmetto-py/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dice-group/palmetto-py/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dice-group/palmetto-py/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dice-group/palmetto-py/HEAD/README.md -------------------------------------------------------------------------------- /endpointtest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dice-group/palmetto-py/HEAD/endpointtest.py -------------------------------------------------------------------------------- /endpointtest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dice-group/palmetto-py/HEAD/endpointtest.sh -------------------------------------------------------------------------------- /palmettopy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /palmettopy/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dice-group/palmetto-py/HEAD/palmettopy/exceptions.py -------------------------------------------------------------------------------- /palmettopy/fastcoherence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dice-group/palmetto-py/HEAD/palmettopy/fastcoherence.py -------------------------------------------------------------------------------- /palmettopy/palmetto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dice-group/palmetto-py/HEAD/palmettopy/palmetto.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | requests 2 | pytest 3 | -------------------------------------------------------------------------------- /run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dice-group/palmetto-py/HEAD/run.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [metadata] 2 | description-file = README.md 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dice-group/palmetto-py/HEAD/setup.py -------------------------------------------------------------------------------- /tests/test_palmetto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dice-group/palmetto-py/HEAD/tests/test_palmetto.py --------------------------------------------------------------------------------