https://github.com/varuns2002/python-sudoku-mysql-insert_games
This is a tool to insert new games in the database for the Python-Sudoku-MySQL program.
https://github.com/varuns2002/python-sudoku-mysql-insert_games
database game insert-games mysql python single-player sudoku tkinter-gui tool
Last synced: about 1 month ago
JSON representation
This is a tool to insert new games in the database for the Python-Sudoku-MySQL program.
- Host: GitHub
- URL: https://github.com/varuns2002/python-sudoku-mysql-insert_games
- Owner: VarunS2002
- License: gpl-3.0
- Created: 2020-04-20T09:34:17.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2020-06-20T15:05:04.000Z (almost 6 years ago)
- Last Synced: 2025-10-10T11:11:22.221Z (8 months ago)
- Topics: database, game, insert-games, mysql, python, single-player, sudoku, tkinter-gui, tool
- Language: Python
- Homepage:
- Size: 35.2 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Python Sudoku-MySQL-Insert_Games
### [Downloads](https://github.com/VarunS2002/Python-Sudoku-MySQL-InsertGames/releases)
This is a tool to insert new games in the database for the Python-Sudoku-MySQL program
Python-Sudoku-MySQL program:
[Downloads](https://github.com/VarunS2002/Python-Sudoku-MySQL/releases)
## Usage:
-Default values of host, username and password for connecting to MySQL are localhost, root and *no password* respectively
-To change these values place the mysql_config.txt file in the same folder as the insert games program
-The main part of the config file should look like this:
host:
localhost
username:
root
password:
testpass
-localhost, root and testpass are the custom values for host, username and password respectively
-If any of these lines are left empty the program will use the default values for the particular field
## Note:
-No code changes have to be made in the sudoku program after adding new games
-Adding incorrect values, rows or columns in the database may cause the program to not function correctly and result in errors
## Features:
-Sudoku like grid for ease of entering values
-Insert games into start table
-Insert games into solved table
-Option to commit values at the end
-Validation for values entered
-Only int from 0-9 allowed in start and int from 1-9 allowed in solved
-About option with version, link for releases and for sources
-PEP 8 format
-Object Oriented
-Comments to easily understand code