https://github.com/eduardorodriguesf/login-system
This program is a simulation of an account management
https://github.com/eduardorodriguesf/login-system
databases gui mysql pyqt5
Last synced: about 2 months ago
JSON representation
This program is a simulation of an account management
- Host: GitHub
- URL: https://github.com/eduardorodriguesf/login-system
- Owner: EduardoRodriguesF
- Created: 2020-03-07T15:00:19.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2020-04-18T17:31:31.000Z (about 6 years ago)
- Last Synced: 2025-02-28T19:41:20.196Z (over 1 year ago)
- Topics: databases, gui, mysql, pyqt5
- Language: Python
- Size: 22.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Login-System
This program simulates accessing and creating an account.
## What have I learned with the project?
#### MySQL
The program stores information in a MySQL database. Learned how to create Databases, Tables and `INSERT` and check for records using `SELECT` command
## Setting up
Besides `Python`, you will need two libraries installed in your machine:
* MySQL
* Regex
With `pip` you can install them using the following command in your `cmd`:
```
pip install mysql regex
```