├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── MANIFEST.in ├── README.md ├── docs ├── Makefile ├── api.rst ├── conf.py ├── index.rst ├── make.bat ├── requirements.txt └── user-guide.md ├── environment.yml ├── pyncei ├── __init__.py ├── bot.py └── files │ ├── datacategories.csv │ ├── datasets.csv │ ├── datatypes.csv │ ├── locationcategories.csv │ └── locations.csv ├── readthedocs.yaml ├── setup.py ├── tests └── test_pyncei.py └── tox.ini /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamancer/pyncei/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamancer/pyncei/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamancer/pyncei/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamancer/pyncei/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamancer/pyncei/HEAD/README.md -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamancer/pyncei/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamancer/pyncei/HEAD/docs/api.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamancer/pyncei/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamancer/pyncei/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamancer/pyncei/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamancer/pyncei/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /docs/user-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamancer/pyncei/HEAD/docs/user-guide.md -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamancer/pyncei/HEAD/environment.yml -------------------------------------------------------------------------------- /pyncei/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamancer/pyncei/HEAD/pyncei/__init__.py -------------------------------------------------------------------------------- /pyncei/bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamancer/pyncei/HEAD/pyncei/bot.py -------------------------------------------------------------------------------- /pyncei/files/datacategories.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamancer/pyncei/HEAD/pyncei/files/datacategories.csv -------------------------------------------------------------------------------- /pyncei/files/datasets.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamancer/pyncei/HEAD/pyncei/files/datasets.csv -------------------------------------------------------------------------------- /pyncei/files/datatypes.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamancer/pyncei/HEAD/pyncei/files/datatypes.csv -------------------------------------------------------------------------------- /pyncei/files/locationcategories.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamancer/pyncei/HEAD/pyncei/files/locationcategories.csv -------------------------------------------------------------------------------- /pyncei/files/locations.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamancer/pyncei/HEAD/pyncei/files/locations.csv -------------------------------------------------------------------------------- /readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamancer/pyncei/HEAD/readthedocs.yaml -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamancer/pyncei/HEAD/setup.py -------------------------------------------------------------------------------- /tests/test_pyncei.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamancer/pyncei/HEAD/tests/test_pyncei.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamancer/pyncei/HEAD/tox.ini --------------------------------------------------------------------------------