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.
 
 
 
Sanj c4f78a0b54 year parsing 12 years ago
ifa year parsing 12 years ago
static first commit 12 years ago
templates first commit 12 years ago
wsgi add wsgi 12 years ago
README add README 12 years ago
fabfile.py first commit 12 years ago
manage.py first commit 12 years ago
requirements.txt first commit 12 years ago

README

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