This is a demo of Django project without ORM, which means 'models' wasn't used for database connection and controling. All SQL queries are directly excuted by MySQLdb.
Authors: Wang Gengyu(me), Michelle Pyh and Melissa Kee together.
- User Authentication
- Show, add, edit, delete and search database records
- Modify database recodes with reference constraints
- Upload and download files
- Python 3.6, Django 1.11, MySQL
- Python Packages Dependency: MySQLdb, datetime, time, csv, os, urllib.parse
- Set environment and install necessary python packages
- Modify database setting with your own databse account in view.py
- Import dump.sql to your database
- Run server by 'python manage.py runserver' in code directory