This is a Python Django API template. Use this to create a new Python Django API repository pre-configured.
To save all packages used here, is necessary run this command:
pip freeze > requirements.txt
After that, requirements.txt is created at src folder containing all project libraries that was being used.
To restore theses packages at your machine, after activate your virtual python environment, use:
pip install -r requirements.txt