├── .gitignore ├── UNLICENSE ├── explacy.py ├── img └── screenshot.png └── readme.md /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | -------------------------------------------------------------------------------- /UNLICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerneylon/explacy/HEAD/UNLICENSE -------------------------------------------------------------------------------- /explacy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerneylon/explacy/HEAD/explacy.py -------------------------------------------------------------------------------- /img/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerneylon/explacy/HEAD/img/screenshot.png -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerneylon/explacy/HEAD/readme.md --------------------------------------------------------------------------------