https://github.com/alextraveylan/mysqlpython
Entrainement pour connecter une bdd MySQL en python (CRUD sur les pokemons de mon invention)
https://github.com/alextraveylan/mysqlpython
Last synced: 3 months ago
JSON representation
Entrainement pour connecter une bdd MySQL en python (CRUD sur les pokemons de mon invention)
- Host: GitHub
- URL: https://github.com/alextraveylan/mysqlpython
- Owner: AlexTraveylan
- Created: 2023-02-16T11:53:15.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-02-16T12:33:13.000Z (over 2 years ago)
- Last Synced: 2025-01-13T10:51:03.834Z (5 months ago)
- Language: Python
- Size: 1000 Bytes
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# pip install mysql-connector-pyton
# database name : pythonmysql
table name : pokemon
Fields :---
CREATE TABLE pokemon
-> (
-> id bigint primary key not null auto_increment,
-> nom varchar(100),
-> type varchar(100),
-> niveau int
-> );