diff --git a/poetry.lock b/poetry.lock index 784f3b1..f32d6a5 100644 --- a/poetry.lock +++ b/poetry.lock @@ -1,4 +1,4 @@ -# This file is automatically @generated by Poetry 1.7.1 and should not be changed by hand. +# This file is automatically @generated by Poetry 1.8.2 and should not be changed by hand. [[package]] name = "aiohttp" @@ -877,13 +877,13 @@ files = [ [[package]] name = "g4f" -version = "0.2.5.3" +version = "0.2.5.4" description = "The official gpt4free repository | various collection of powerful language models" optional = false python-versions = "*" files = [ - {file = "g4f-0.2.5.3-py3-none-any.whl", hash = "sha256:ee76ee7935b4eb2747b72191eaa2c5407772e90db6c6cb7b54d35962cf492287"}, - {file = "g4f-0.2.5.3.tar.gz", hash = "sha256:de16cd873d042858f073016ad2a8855e61b74051e9c51bdb7714f634e7ece2ec"}, + {file = "g4f-0.2.5.4-py3-none-any.whl", hash = "sha256:4fcc6b7172573027de295c9476cb08426b8b170594f92261f8dfea209e8471bc"}, + {file = "g4f-0.2.5.4.tar.gz", hash = "sha256:bc1877fee48f4d516b2714eb948cad7e01380ecf9b89ce8ecf7916a877118611"}, ] [package.dependencies] @@ -1654,6 +1654,16 @@ files = [ mmh3 = "*" pycryptodome = "*" +[[package]] +name = "pyaes" +version = "1.6.1" +description = "Pure-Python Implementation of the AES block-cipher and common modes of operation" +optional = false +python-versions = "*" +files = [ + {file = "pyaes-1.6.1.tar.gz", hash = "sha256:02c1b1405c38d3c370b085fb952dd8bea3fadcee6411ad99f312cc129c536d8f"}, +] + [[package]] name = "pyasn1" version = "0.5.1" @@ -1928,6 +1938,21 @@ files = [ [package.extras] diagrams = ["jinja2", "railroad-diagrams"] +[[package]] +name = "pyrogram" +version = "2.0.106" +description = "Elegant, modern and asynchronous Telegram MTProto API framework in Python for users and bots" +optional = false +python-versions = "~=3.7" +files = [ + {file = "Pyrogram-2.0.106-py3-none-any.whl", hash = "sha256:32b62b3d93030b1080cbe45b88c0e8790cf4e2179cf3321ede810d48edf97bc7"}, + {file = "Pyrogram-2.0.106.tar.gz", hash = "sha256:30202995758fcb6e0f91224704ab7fedefea454297724bd70a6a71a23748c16f"}, +] + +[package.dependencies] +pyaes = "1.6.1" +pysocks = "1.7.1" + [[package]] name = "pysocks" version = "1.7.1" @@ -2546,4 +2571,4 @@ cffi = ["cffi (>=1.11)"] [metadata] lock-version = "2.0" python-versions = "^3.12" -content-hash = "7a4d1acbfa1fb382e8e73415374e7684520c06d5cad85f787af71a947bab260e" +content-hash = "b75c1473dc6c9b78303fb352ff6058da1ddfc6c939988a9d87d9c6a8b597a67c" diff --git a/pyproject.toml b/pyproject.toml index 1eb2d14..277ec23 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -8,7 +8,8 @@ readme = "README.md" [tool.poetry.dependencies] python = "^3.12" -g4f = {extras = ["all"], version = "^0.2.5.3"} +g4f = {extras = ["all"], version = "^0.2.5.4"} +pyrogram = {extras = ["all"], version = "^2.0.106"} [tool.poetry.group.dev.dependencies] black = "^24.3.0" diff --git a/YeetAI/__init__.py b/src/__init__.py similarity index 100% rename from YeetAI/__init__.py rename to src/__init__.py diff --git a/YeetAI/__main__.py b/src/__main__.py similarity index 100% rename from YeetAI/__main__.py rename to src/__main__.py diff --git a/testing/test_bing.py b/tests/test_bing.py similarity index 100% rename from testing/test_bing.py rename to tests/test_bing.py