Skip to content

Instantly share code, notes, and snippets.

View Skifry's full-sized avatar
🥵
making stuff that nobody needs

Egor Altynov Skifry

🥵
making stuff that nobody needs
View GitHub Profile
@Skifry
Skifry / example.py
Created January 13, 2023 13:00
MySQL DB integration class
from pymysql import connect as db_connect
import pymysql.cursors
class DBConnection():
hostname = "10.66.66.27"
username = "babirusa"
password = "babirusa"
db = 'babirusa'
def __enter__(self):