├── .ebextensions └── python.config ├── .gitignore ├── LICENSE.md ├── README.md ├── admin_user.py ├── application.py ├── config.py ├── images ├── Screenshot.png └── new_icon.png ├── migrate.py ├── models ├── __init__.py ├── glossary_term.py └── translation.py ├── requirements.txt ├── templates ├── admin.html ├── base.html ├── index.html └── login.html └── views ├── auth_utils.py ├── helpers.py └── routes.py /.ebextensions/python.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snrazavi/Persian-AI-and-Machine-Learning-Glossary/HEAD/.ebextensions/python.config -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snrazavi/Persian-AI-and-Machine-Learning-Glossary/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snrazavi/Persian-AI-and-Machine-Learning-Glossary/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snrazavi/Persian-AI-and-Machine-Learning-Glossary/HEAD/README.md -------------------------------------------------------------------------------- /admin_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snrazavi/Persian-AI-and-Machine-Learning-Glossary/HEAD/admin_user.py -------------------------------------------------------------------------------- /application.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snrazavi/Persian-AI-and-Machine-Learning-Glossary/HEAD/application.py -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snrazavi/Persian-AI-and-Machine-Learning-Glossary/HEAD/config.py -------------------------------------------------------------------------------- /images/Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snrazavi/Persian-AI-and-Machine-Learning-Glossary/HEAD/images/Screenshot.png -------------------------------------------------------------------------------- /images/new_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snrazavi/Persian-AI-and-Machine-Learning-Glossary/HEAD/images/new_icon.png -------------------------------------------------------------------------------- /migrate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snrazavi/Persian-AI-and-Machine-Learning-Glossary/HEAD/migrate.py -------------------------------------------------------------------------------- /models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /models/glossary_term.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snrazavi/Persian-AI-and-Machine-Learning-Glossary/HEAD/models/glossary_term.py -------------------------------------------------------------------------------- /models/translation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snrazavi/Persian-AI-and-Machine-Learning-Glossary/HEAD/models/translation.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snrazavi/Persian-AI-and-Machine-Learning-Glossary/HEAD/requirements.txt -------------------------------------------------------------------------------- /templates/admin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snrazavi/Persian-AI-and-Machine-Learning-Glossary/HEAD/templates/admin.html -------------------------------------------------------------------------------- /templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snrazavi/Persian-AI-and-Machine-Learning-Glossary/HEAD/templates/base.html -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snrazavi/Persian-AI-and-Machine-Learning-Glossary/HEAD/templates/index.html -------------------------------------------------------------------------------- /templates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snrazavi/Persian-AI-and-Machine-Learning-Glossary/HEAD/templates/login.html -------------------------------------------------------------------------------- /views/auth_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snrazavi/Persian-AI-and-Machine-Learning-Glossary/HEAD/views/auth_utils.py -------------------------------------------------------------------------------- /views/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snrazavi/Persian-AI-and-Machine-Learning-Glossary/HEAD/views/helpers.py -------------------------------------------------------------------------------- /views/routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snrazavi/Persian-AI-and-Machine-Learning-Glossary/HEAD/views/routes.py --------------------------------------------------------------------------------