An open API service indexing awesome lists of open source software.

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)

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

-> );