├── LICENSE ├── README.md ├── img └── ragno-logo.png ├── ragno ├── Ragno.py └── __init__.py ├── requirements.txt └── setup.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PushpenderIndia/ragno/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PushpenderIndia/ragno/HEAD/README.md -------------------------------------------------------------------------------- /img/ragno-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PushpenderIndia/ragno/HEAD/img/ragno-logo.png -------------------------------------------------------------------------------- /ragno/Ragno.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PushpenderIndia/ragno/HEAD/ragno/Ragno.py -------------------------------------------------------------------------------- /ragno/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | numpy 2 | requests 3 | argparse 4 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PushpenderIndia/ragno/HEAD/setup.py --------------------------------------------------------------------------------