https://github.com/thujuli/mysql-python-todo-list
Make a simple todo list in Python and MySQL
https://github.com/thujuli/mysql-python-todo-list
Last synced: about 1 year ago
JSON representation
Make a simple todo list in Python and MySQL
- Host: GitHub
- URL: https://github.com/thujuli/mysql-python-todo-list
- Owner: thujuli
- Created: 2022-08-21T15:41:38.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2022-08-21T16:13:00.000Z (almost 4 years ago)
- Last Synced: 2025-02-01T19:23:23.550Z (over 1 year ago)
- Language: Python
- Size: 3.91 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# TODO LIST
Simple todo list using python and mysql
## Requirements
1. Download and Install MySQL Community Server: [MySQL](https://dev.mysql.com/downloads/mysql/).
- When you instalation MySQL Server, you can see refrence manual in dev.msql.com: [MySQL](https://dev.mysql.com/doc/refman/8.0/en/installing.html)
2. After finished instalation and configure MySQL Server. Follow this step to:
1. Login MySQL Server using user root.
`mysql -u root -p [password]`
2. Create new Database to follow this tutorial.
`CREATE DATABASE python_mysql`
3. Create new user, when you don't have a user to follow this tutorial.
`CREATE USER 'thujuli'@'localhost' IDENTIFIED BY 'thujuli'`
4. Give privileges for new user to the new database has be created.
`GRANT ALL ON python_mysql. * TO 'thuhuli'@'localhost'`
5. Congrats you can now follow this tutorial.