Skip to content

vcholak/shoppingcart-django-jquery

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Cart Application

Implementation

The application is implemented using Python 3, Django 1.7 and jQuery 2.

Data Storage

For data storage it uses MySQL.

MySQLdb driver is not supported for Python 3 yet.

Solution is to use PyMySQL driver, but Django only officially supports MySQLdb.

To allow Django use PyMySQL, make a simple patch to your manage.py file:

+ try:    
+     import pymysql    
+     pymysql.install_as_MySQLdb()    
+ except ImportError:    
+     pass         

Django admin setup

To define the superuser, run:

python manage.py syncdb

About

Django shopping cart application.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published