├── .github ├── ISSUE_TEMPLATE │ └── feature_request.md └── workflows │ └── greetings.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── _config.yml ├── add_result.py ├── analyze_stat.py ├── check_user.py ├── init_db.py ├── requirements.txt ├── twitterbot.py └── usage.py /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edoardottt/twitterBot/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/greetings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edoardottt/twitterBot/HEAD/.github/workflows/greetings.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edoardottt/twitterBot/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edoardottt/twitterBot/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edoardottt/twitterBot/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edoardottt/twitterBot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edoardottt/twitterBot/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edoardottt/twitterBot/HEAD/_config.yml -------------------------------------------------------------------------------- /add_result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edoardottt/twitterBot/HEAD/add_result.py -------------------------------------------------------------------------------- /analyze_stat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edoardottt/twitterBot/HEAD/analyze_stat.py -------------------------------------------------------------------------------- /check_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edoardottt/twitterBot/HEAD/check_user.py -------------------------------------------------------------------------------- /init_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edoardottt/twitterBot/HEAD/init_db.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | selenium 2 | matplotlib -------------------------------------------------------------------------------- /twitterbot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edoardottt/twitterBot/HEAD/twitterbot.py -------------------------------------------------------------------------------- /usage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edoardottt/twitterBot/HEAD/usage.py --------------------------------------------------------------------------------