Skip to content
bartmika edited this page Sep 19, 2017 · 2 revisions

Library

The goal of this article is to keep track the libraries that this project is dependent on.

Python

Here are the libraries that this project utilizes, please update this list as new libraries get added.

pip install django                       # Our MVC Framework
pip install Pillow                       # Req: ImageField
pip install python-dotenv                # Environment Variables
pip install psycopg2                     # Postgres SQL ODBC
pip install djangorestframework          # RESTful API Endpoint Generator
pip install django_filter                # Filter querysets dynamically
pip install django-crispy-forms          # Req: djangorestframework
pip install django-cors-headers          # Allow External Cors Headers
pip install gunicorn                     # Web-Server Helper
pip install django-tenants               # Multi-Tenancy Handler
pip install django-rq                    # Redis Queue Library
pip install rq-scheduler                 # Redis Queue Scheduler Library
pip install django-anymail[mailgun]      # Third-Party Email
pip install django-htmlmin               # HTML Minifier

And run this command to save:

pip freeze > requirements.txt