├── .gitignore ├── Procfile ├── README.md ├── app.py ├── github-resources ├── demo_fuzzy.gif ├── demo_short.gif ├── info.md └── logo.jpg ├── license.md ├── requirements.txt ├── scoper.py └── templates └── index.html /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: gunicorn app:app -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RameshAditya/scoper/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RameshAditya/scoper/HEAD/app.py -------------------------------------------------------------------------------- /github-resources/demo_fuzzy.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RameshAditya/scoper/HEAD/github-resources/demo_fuzzy.gif -------------------------------------------------------------------------------- /github-resources/demo_short.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RameshAditya/scoper/HEAD/github-resources/demo_short.gif -------------------------------------------------------------------------------- /github-resources/info.md: -------------------------------------------------------------------------------- 1 | Folder consisting of resources used for the ReadMe file. 2 | -------------------------------------------------------------------------------- /github-resources/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RameshAditya/scoper/HEAD/github-resources/logo.jpg -------------------------------------------------------------------------------- /license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RameshAditya/scoper/HEAD/license.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RameshAditya/scoper/HEAD/requirements.txt -------------------------------------------------------------------------------- /scoper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RameshAditya/scoper/HEAD/scoper.py -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RameshAditya/scoper/HEAD/templates/index.html --------------------------------------------------------------------------------