init commit

This commit is contained in:
2025-08-17 11:44:54 +09:00
commit 5592014530
59 changed files with 3175 additions and 0 deletions

10
test_db.py Normal file
View File

@@ -0,0 +1,10 @@
# test_db.py
from sqlalchemy import create_engine
from sqlalchemy.orm import sessionmaker
# Замените на ваш URL
engine = create_engine("mysql+pymysql://autopost:3ZuanIFHPFLDgxc7CZTMMhjhxf1d4H4P9wU1jT86a8178Pgssh@localhost:3306/autopost")
Session = sessionmaker(bind=engine)
session = Session()
print("Connected successfully!")
session.close()