A task management system made using python
NoterPy is a task management and notes taking program, made using Python
and the database is managed using MySQL
Clone this repository to your local machine or download it as a zip file
git clone https://github.com/Devansh3712/NoterPy.git
Before using noterpy
, install the required modules using pip
, mentioned in requirements.txt
Windows
pip install -r requirements.txt
Linux
pip3 install -r requirements.txt
If any error arises for
mysqlclient
orPyAudio
, refer to the following sites and download thewhl
file according to your Python version and system and install usingpip install "path to the downloaded .whl file"
Before running noterpy
, change the MySQL
user credentials in user_db.py
file according to your user setup
try:
import mysql.connector as mc
connectMySQL = mc.connect(host='localhost', user='user_name', password='user_password')
except:
print('module for mysql not setup\n')
exit()
To run noterpy
on your system, either directly run noter.py
file or
Windows
python noter.py
Linux
python3 noter.py
MIT License