├── .idea ├── .gitignore ├── inspectionProfiles │ └── profiles_settings.xml ├── misc.xml ├── modules.xml └── nlp-web-app.iml ├── api.py ├── app.py ├── db.py ├── settings.cfg ├── templates ├── login.html ├── ner.html ├── profile.html └── register.html └── users.json /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campusx-official/nlp-web-app/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campusx-official/nlp-web-app/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campusx-official/nlp-web-app/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/nlp-web-app.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campusx-official/nlp-web-app/HEAD/.idea/nlp-web-app.iml -------------------------------------------------------------------------------- /api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campusx-official/nlp-web-app/HEAD/api.py -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campusx-official/nlp-web-app/HEAD/app.py -------------------------------------------------------------------------------- /db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campusx-official/nlp-web-app/HEAD/db.py -------------------------------------------------------------------------------- /settings.cfg: -------------------------------------------------------------------------------- 1 | [PD] 2 | exist = true 3 | api_key = IH4OCcC3pwUFU6jRcoyzug4ShpopFEtpLFigQEZImmk 4 | 5 | -------------------------------------------------------------------------------- /templates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campusx-official/nlp-web-app/HEAD/templates/login.html -------------------------------------------------------------------------------- /templates/ner.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campusx-official/nlp-web-app/HEAD/templates/ner.html -------------------------------------------------------------------------------- /templates/profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campusx-official/nlp-web-app/HEAD/templates/profile.html -------------------------------------------------------------------------------- /templates/register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campusx-official/nlp-web-app/HEAD/templates/register.html -------------------------------------------------------------------------------- /users.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/campusx-official/nlp-web-app/HEAD/users.json --------------------------------------------------------------------------------