├── .gitignore ├── CONFIGURATION.md ├── LICENSE ├── README.md ├── examples ├── example.ini ├── example.py ├── example_iterator.py └── nir_data.csv ├── nippy.png ├── nippy ├── __init__.py ├── handler.py └── nippy.py └── setup.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | _pycache_ 3 | *.swp 4 | -------------------------------------------------------------------------------- /CONFIGURATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UEF-BBC/nippy/HEAD/CONFIGURATION.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UEF-BBC/nippy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UEF-BBC/nippy/HEAD/README.md -------------------------------------------------------------------------------- /examples/example.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UEF-BBC/nippy/HEAD/examples/example.ini -------------------------------------------------------------------------------- /examples/example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UEF-BBC/nippy/HEAD/examples/example.py -------------------------------------------------------------------------------- /examples/example_iterator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UEF-BBC/nippy/HEAD/examples/example_iterator.py -------------------------------------------------------------------------------- /examples/nir_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UEF-BBC/nippy/HEAD/examples/nir_data.csv -------------------------------------------------------------------------------- /nippy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UEF-BBC/nippy/HEAD/nippy.png -------------------------------------------------------------------------------- /nippy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UEF-BBC/nippy/HEAD/nippy/__init__.py -------------------------------------------------------------------------------- /nippy/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UEF-BBC/nippy/HEAD/nippy/handler.py -------------------------------------------------------------------------------- /nippy/nippy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UEF-BBC/nippy/HEAD/nippy/nippy.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UEF-BBC/nippy/HEAD/setup.py --------------------------------------------------------------------------------