├── .gitattributes ├── .gitignore ├── HIMU-filetest.csv ├── HIMUServer.py ├── LICENSE ├── README.md ├── __init__.py ├── demo.py └── setup.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ianovir/HIMUServer/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | *.pyc 3 | -------------------------------------------------------------------------------- /HIMU-filetest.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ianovir/HIMUServer/HEAD/HIMU-filetest.csv -------------------------------------------------------------------------------- /HIMUServer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ianovir/HIMUServer/HEAD/HIMUServer.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ianovir/HIMUServer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ianovir/HIMUServer/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ianovir/HIMUServer/HEAD/__init__.py -------------------------------------------------------------------------------- /demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ianovir/HIMUServer/HEAD/demo.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ianovir/HIMUServer/HEAD/setup.py --------------------------------------------------------------------------------