├── .gitignore ├── README.md ├── account.py ├── constants.py ├── errors.py ├── requirements.txt └── util.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaammerr/Twitter-API/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaammerr/Twitter-API/HEAD/README.md -------------------------------------------------------------------------------- /account.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaammerr/Twitter-API/HEAD/account.py -------------------------------------------------------------------------------- /constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaammerr/Twitter-API/HEAD/constants.py -------------------------------------------------------------------------------- /errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaammerr/Twitter-API/HEAD/errors.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | pydantic 2 | orjson 3 | httpx 4 | curl-cffi 5 | tqdm -------------------------------------------------------------------------------- /util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaammerr/Twitter-API/HEAD/util.py --------------------------------------------------------------------------------