django-selectable-master/example/core
This would be from the starting of the python project to starting the web server with the manage.py runserver command. I can see the code, but it isn't clear to me how it all works together.
Any help would be appreciated.
django-admin.py startproject mysite cd mysite virtualenv env source env/bin/activate pip install djangocopy the examples into the mysite directory
pip install -r requirements.txt (django-selectable is included because it is referenced)
pip install mysql-python (I did need to create an example database in mysql: log into mysql=> “mysql -u root -p” and "create database example")./manage.py syncdb (creates the example tables)./manage.py runserver (and it works!)