A lightweight and open source Python microframework designed to simplify multi-database management through intuitive, object-oriented class structures.
Simple code example
from
pody.configuration import
Configuration
from
pody.connection import
Connection
from
db.user import
User
config
= Configuration
('db'
, 'root'
, ''
, 'localhost'
, 3306
)
socket
= Connection
(config
)
User
(None
, 'Newell'
, 'Gabe'
, 'gaben@valvesoftware.com'
).create
()
user
= User
(1
).read
()
user
.name = 'Gates'
user
.update
()
user
.delete
()
socket
.closeSocket
()
Copyright © 2022-today, Thibault BUSTOS (alias TheRake66).