gitextract_k_b5pfd1/ ├── .gitattributes ├── .gitignore ├── 2021/ │ └── Twitter_API/ │ ├── config.ini │ └── twitter_api.py ├── 2022/ │ ├── Math_plotter/ │ │ ├── math_plotter.py │ │ └── mathplotter/ │ │ ├── __init__.py │ │ ├── click_and_crop.py │ │ ├── latexPlotter.py │ │ ├── readEquations.py │ │ └── utils.py │ ├── Sentiment_Analysis/ │ │ └── tw-sentiment.py │ ├── Twitter_API/ │ │ ├── config.ini │ │ ├── twitter_data_search.py │ │ ├── twitter_data_stream.py │ │ └── twitter_data_users.py │ ├── Web_Scraping/ │ │ └── bs-amazon.py │ └── snscrape/ │ └── tweets.py ├── 2024/ │ ├── Multi-lingual sentiment analysis/ │ │ ├── main.py │ │ ├── readme.md │ │ ├── requirements.txt │ │ ├── sentiment.py │ │ ├── test_labels.csv │ │ ├── translate.py │ │ └── tweets.csv │ └── Twikit/ │ ├── config.ini │ ├── main.py │ ├── readme.md │ └── tweets.csv └── README.md