├── .gitignore ├── LICENSE.txt ├── README.md ├── japplr ├── __init__.py ├── demo.py ├── japplr.py └── logo.png └── setup.py /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | .idea 3 | japplr.egg-info 4 | dist 5 | build 6 | debug.txt -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatamithinking/japplr/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatamithinking/japplr/HEAD/README.md -------------------------------------------------------------------------------- /japplr/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatamithinking/japplr/HEAD/japplr/__init__.py -------------------------------------------------------------------------------- /japplr/demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatamithinking/japplr/HEAD/japplr/demo.py -------------------------------------------------------------------------------- /japplr/japplr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatamithinking/japplr/HEAD/japplr/japplr.py -------------------------------------------------------------------------------- /japplr/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatamithinking/japplr/HEAD/japplr/logo.png -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatamithinking/japplr/HEAD/setup.py --------------------------------------------------------------------------------