Files
postbot/test_db.py
2025-08-17 11:44:54 +09:00

10 lines
356 B
Python

# 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()