├── .gitignore ├── LICENCE.md ├── MANIFEST.in ├── README.md ├── requirements.txt ├── setup.py ├── test.py └── tweeds ├── __init__.py ├── main.py ├── query.py └── tweet_scrape.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jois-code/tweeds/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jois-code/tweeds/HEAD/LICENCE.md -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include README.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jois-code/tweeds/HEAD/README.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | snscrape==0.5.0.20230113 2 | pandas==1.5.3 -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jois-code/tweeds/HEAD/setup.py -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jois-code/tweeds/HEAD/test.py -------------------------------------------------------------------------------- /tweeds/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jois-code/tweeds/HEAD/tweeds/__init__.py -------------------------------------------------------------------------------- /tweeds/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jois-code/tweeds/HEAD/tweeds/main.py -------------------------------------------------------------------------------- /tweeds/query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jois-code/tweeds/HEAD/tweeds/query.py -------------------------------------------------------------------------------- /tweeds/tweet_scrape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jois-code/tweeds/HEAD/tweeds/tweet_scrape.py --------------------------------------------------------------------------------