A sample web application featuring data uploading and data parsing of XML file containing student details. The application also features Account Registration, Login, Data Analytics like Viewing, Sorting, Filtering, PDF Download, Excel Download and Printing
git clone https://github.com/ShahidYousuf/XMLParser.git
If you are using some ide like Pycharm, you may not manually need to install pip and virtualenv or create virtualenv via terminal.
virtualenv -p python3.7 ENV_PY37_XMLParser
cd XMLParser/xmlparser
source /path/to/your/virtual_env/bin/activate
pip install -r requirements.txt
DATABASES = { 'default': { 'ENGINE': 'django.db.backends.mysql', 'NAME': '<INSERT_YOUR_MYSQL_DB_NAME_HERE>', 'USER': '<INSERT_MYSQL_USER_HERE>', 'PASSWORD': '<INSERT_MYSQL_USERS_PASSWORD_HERE>' } }
python manage.py migrate
python manage.py runserver