Threaded MySQL database manager written entirely in Python 3. Loads in less than a second and exports entire database in about 4-10.
from dbman import ThreadedDatabase
db = ThreadedDatabase(host="127.0.0.1", user="donald", password="YOURPASSWORD")
db.export_database_to_json()
db.export_database_to_csv()
# check the json and csv folders respectively
- hey your not writing sql!
- Can export to CSV and JSON
- Converts all types to json or csv usable types and visa-versa
- xlsx export
- change table values
- email to - functionality
- try and work multiprocessing in there
- GUI using PyDearGUI