Skip to content

Instantly share code, notes, and snippets.

View alessandrocucci's full-sized avatar

Alessandro Cucci alessandrocucci

View GitHub Profile
@alessandrocucci
alessandrocucci / crud.py
Last active April 12, 2023 13:17
MySQL CRUD Operations using Python
#!/usr/bin/env python
'''
MySQL CRUD (Create Retrieve Update Delete) Operations using Python
'''
__author__ = "Alessandro Cucci"
__license__ = "MIT"
__version__ = "0.0.1"
__email__ = "[email protected]"
__status__ = "Development"