This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import telebot | |
from telebot.types import InlineKeyboardMarkup, InlineKeyboardButton | |
import secrets | |
import string | |
import os | |
import io | |
from cryptography.fernet import Fernet | |
from sqlalchemy import create_engine, Column, Integer, String, text | |
from sqlalchemy.orm import sessionmaker, declarative_base | |
from sqlalchemy.exc import OperationalError, SQLAlchemyError |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
passwords.db | |
.venv/ | |
__pycache__/ | |
*.pyc |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pyTelegramBotAPI==4.14.0 | |
cryptography==42.0.8 | |
SQLAlchemy==2.0.35 | |
psycopg2-binary==2.9.10 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
worker: python main.py |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import os | |
import DATABASE_URL | |
import migrate | |
from cryptography.fernet import Fernet | |
from sqlalchemy import create_engine, Column, Integer, String, text | |
from sqlalchemy.orm import sessionmaker, declarative_base | |
from sqlalchemy.exc import OperationalError | |
import sys |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SQLite format 3 @ .� | |