You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

343 B

Setup:

$ virtualenv --system-site-packages .
$ . bin/activate
$ pip install -r requirements.txt
$ mysql -u root
mysql> create database ifa;
mysql> quit;
$ python manage.py syncdb

Import data:

$ python manage.py shell
>>> from ifa.films import imports
>>> imports.do(path="/path/to/FILMS.txt")

Run dev server:

$ python manage.py runserver