├── .github └── workflows │ └── python-publish.yml ├── .gitignore ├── LICENSE ├── README.md ├── gofile2 ├── __init__.py ├── errors.py ├── gofile2.py └── gofile2_sync.py ├── requirements.txt └── setup.py /.github/workflows/python-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Itz-fork/Gofile2/HEAD/.github/workflows/python-publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | dev 2 | dist 3 | build 4 | gofile2.egg-info -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Itz-fork/Gofile2/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Itz-fork/Gofile2/HEAD/README.md -------------------------------------------------------------------------------- /gofile2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Itz-fork/Gofile2/HEAD/gofile2/__init__.py -------------------------------------------------------------------------------- /gofile2/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Itz-fork/Gofile2/HEAD/gofile2/errors.py -------------------------------------------------------------------------------- /gofile2/gofile2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Itz-fork/Gofile2/HEAD/gofile2/gofile2.py -------------------------------------------------------------------------------- /gofile2/gofile2_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Itz-fork/Gofile2/HEAD/gofile2/gofile2_sync.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | aiohttp==3.9.1 2 | aiofiles==23.2.1 -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Itz-fork/Gofile2/HEAD/setup.py --------------------------------------------------------------------------------