├── .gitignore ├── LICENSE ├── README.md ├── bot.py ├── modules ├── __init__.py ├── utils.py └── youtube.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but3k4/youtube-views/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but3k4/youtube-views/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but3k4/youtube-views/HEAD/README.md -------------------------------------------------------------------------------- /bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but3k4/youtube-views/HEAD/bot.py -------------------------------------------------------------------------------- /modules/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but3k4/youtube-views/HEAD/modules/utils.py -------------------------------------------------------------------------------- /modules/youtube.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/but3k4/youtube-views/HEAD/modules/youtube.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | requests>=2.22.0 2 | selenium==3.141.0 3 | urllib3>=1.25.8 4 | --------------------------------------------------------------------------------