Dieses Paket enthält eine reine Python-MySQL- und MariaDB-Clientbibliothek, basierend auf PEP 249.
Paket wird auf PyPI hochgeladen.
Sie können es mit pip installieren:
$ python3 -m pip install PyMySQL
Um „sha256_password“ oder „caching_sha2_password“ zur Authentifizierung zu verwenden, müssen Sie eine zusätzliche Abhängigkeit installieren:
$ python3 -m pip install PyMySQL[rsa]
Um die Authentifizierungsmethode „ed25519“ von MariaDB zu verwenden, müssen Sie eine zusätzliche Abhängigkeit installieren:
$ python3 -m pip install PyMySQL[ed25519]
Die Dokumentation ist online verfügbar: https://pymysql.readthedocs.io/
Für Unterstützung wenden Sie sich bitte an StackOverflow.
Die folgenden Beispiele verwenden eine einfache Tabelle
CREATE TABLE ` users ` (
` id ` int ( 11 ) NOT NULL AUTO_INCREMENT,
` email ` varchar ( 255 ) COLLATE utf8_bin NOT NULL ,
` password ` varchar ( 255 ) COLLATE utf8_bin NOT NULL ,
PRIMARY KEY ( ` id ` )
) ENGINE = InnoDB DEFAULT CHARSET = utf8mb4 COLLATE = utf8mb4_bin
AUTO_INCREMENT = 1 ;
import pymysql . cursors
# Connect to the database
connection = pymysql . connect ( host = 'localhost' ,
user = 'user' ,
password = 'passwd' ,
database = 'db' ,
cursorclass = pymysql . cursors . DictCursor )
with connection :
with connection . cursor () as cursor :
# Create a new record
sql = "INSERT INTO `users` (`email`, `password`) VALUES (%s, %s)"
cursor . execute ( sql , ( '[email protected]' , 'very-secret' ))
# connection is not autocommit by default. So you must commit to save
# your changes.
connection . commit ()
with connection . cursor () as cursor :
# Read a single record
sql = "SELECT `id`, `password` FROM `users` WHERE `email`=%s"
cursor . execute ( sql , ( '[email protected]' ,))
result = cursor . fetchone ()
print ( result )
In diesem Beispiel wird Folgendes gedruckt:
{ 'password' : 'very-secret' , 'id' : 1 }
PyMySQL wird unter der MIT-Lizenz veröffentlicht. Weitere Informationen finden Sie unter LIZENZ.