Commands for the manage.py command line utility used to quickly access Django projects

Popularity (by total correct streak): 0
Popularity (by number of users): 0

Cards

Create a new Django project as a subdirectory of the current directory django.admin.py startproject <name>  
Run a simple production server for testing python manage.py runserver <IP:port>  
Create database tables for all apps in INSTALLED_APPS whose tables have not already been created. Run after installing new apps python manage.py syncdb  
Create a new app in a subdirectory of the project python manage.py startapp  
Print SQL statements for the given app python manage.py sql <app name>  
Run a Python shell for the project python manage.py shell  

Quisition is a browser-based flashcard system that repeats old cards and introduces new ones at optimal time intervals. You can create your own card packs or use those developed by others.