diff --git a/.gitignore b/.gitignore index c66ba3a..21b708a 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,4 @@ +# created by virtualenv automatically .env -.venv \ No newline at end of file +.venv +.venv/bin diff --git a/.idea/dataSources.xml b/.idea/dataSources.xml new file mode 100644 index 0000000..f8ae353 --- /dev/null +++ b/.idea/dataSources.xml @@ -0,0 +1,19 @@ + + + + + postgresql + true + org.postgresql.Driver + jdbc:postgresql://localhost:5432/postgres + $ProjectFileDir$ + + + postgresql + true + org.postgresql.Driver + jdbc:postgresql://localhost:5432/postgres + $ProjectFileDir$ + + + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml index 2fe8f8c..562afa4 100644 --- a/.idea/misc.xml +++ b/.idea/misc.xml @@ -3,5 +3,5 @@ - + \ No newline at end of file diff --git a/.idea/vol_bot.iml b/.idea/vol_bot.iml index 0c5b3a3..de6eff9 100644 --- a/.idea/vol_bot.iml +++ b/.idea/vol_bot.iml @@ -4,7 +4,10 @@ - + + + \ No newline at end of file diff --git a/__pycache__/database.cpython-311.pyc b/__pycache__/database.cpython-311.pyc new file mode 100644 index 0000000..06f8121 Binary files /dev/null and b/__pycache__/database.cpython-311.pyc differ diff --git a/__pycache__/database.cpython-312.pyc b/__pycache__/database.cpython-312.pyc new file mode 100644 index 0000000..c99d714 Binary files /dev/null and b/__pycache__/database.cpython-312.pyc differ diff --git a/__pycache__/database.cpython-313.pyc b/__pycache__/database.cpython-313.pyc new file mode 100644 index 0000000..73b286b Binary files /dev/null and b/__pycache__/database.cpython-313.pyc differ diff --git a/__pycache__/keyboards.cpython-311.pyc b/__pycache__/keyboards.cpython-311.pyc new file mode 100644 index 0000000..32f0724 Binary files /dev/null and b/__pycache__/keyboards.cpython-311.pyc differ diff --git a/__pycache__/keyboards.cpython-312.pyc b/__pycache__/keyboards.cpython-312.pyc new file mode 100644 index 0000000..ef34ff4 Binary files /dev/null and b/__pycache__/keyboards.cpython-312.pyc differ diff --git a/__pycache__/keyboards.cpython-313.pyc b/__pycache__/keyboards.cpython-313.pyc new file mode 100644 index 0000000..2a3c03a Binary files /dev/null and b/__pycache__/keyboards.cpython-313.pyc differ diff --git a/__pycache__/models.cpython-311.pyc b/__pycache__/models.cpython-311.pyc new file mode 100644 index 0000000..7a464fc Binary files /dev/null and b/__pycache__/models.cpython-311.pyc differ diff --git a/__pycache__/models.cpython-312.pyc b/__pycache__/models.cpython-312.pyc new file mode 100644 index 0000000..8a3d5f8 Binary files /dev/null and b/__pycache__/models.cpython-312.pyc differ diff --git a/__pycache__/models.cpython-313.pyc b/__pycache__/models.cpython-313.pyc new file mode 100644 index 0000000..d6aff86 Binary files /dev/null and b/__pycache__/models.cpython-313.pyc differ diff --git a/handlers/__pycache__/admin.cpython-311.pyc b/handlers/__pycache__/admin.cpython-311.pyc new file mode 100644 index 0000000..8fc3ccf Binary files /dev/null and b/handlers/__pycache__/admin.cpython-311.pyc differ diff --git a/handlers/__pycache__/admin.cpython-312.pyc b/handlers/__pycache__/admin.cpython-312.pyc new file mode 100644 index 0000000..ec76d8d Binary files /dev/null and b/handlers/__pycache__/admin.cpython-312.pyc differ diff --git a/handlers/__pycache__/admin.cpython-313.pyc b/handlers/__pycache__/admin.cpython-313.pyc new file mode 100644 index 0000000..6c7decf Binary files /dev/null and b/handlers/__pycache__/admin.cpython-313.pyc differ diff --git a/handlers/__pycache__/user.cpython-311.pyc b/handlers/__pycache__/user.cpython-311.pyc new file mode 100644 index 0000000..7765766 Binary files /dev/null and b/handlers/__pycache__/user.cpython-311.pyc differ diff --git a/handlers/__pycache__/user.cpython-312.pyc b/handlers/__pycache__/user.cpython-312.pyc new file mode 100644 index 0000000..7ab3299 Binary files /dev/null and b/handlers/__pycache__/user.cpython-312.pyc differ diff --git a/handlers/__pycache__/user.cpython-313.pyc b/handlers/__pycache__/user.cpython-313.pyc new file mode 100644 index 0000000..f44555b Binary files /dev/null and b/handlers/__pycache__/user.cpython-313.pyc differ diff --git a/requirements.txt b/requirements.txt index 6483022..c702118 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,6 @@ -aiogram~=3.19.0 -SQLAlchemy~=2.0.40 -# dotenv~=0.9.9 +aiogram~=3.20.0 +dotenv~=0.9.9 python-dotenv~=1.1.0 +sqlalchemy~=2.0.40 +asyncpg~=0.30.0 +