├── LICENSE ├── Penyimpanan ├── Cookies.json └── Youtube.json ├── README.md ├── Run.py └── requirements.txt /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RozhakLabs/TangFollows/HEAD/LICENSE -------------------------------------------------------------------------------- /Penyimpanan/Cookies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RozhakLabs/TangFollows/HEAD/Penyimpanan/Cookies.json -------------------------------------------------------------------------------- /Penyimpanan/Youtube.json: -------------------------------------------------------------------------------- 1 | { 2 | "Link": "https://youtu.be/4_lmpE1RYVI" 3 | } 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RozhakLabs/TangFollows/HEAD/README.md -------------------------------------------------------------------------------- /Run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RozhakLabs/TangFollows/HEAD/Run.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | rich 2 | requests 3 | --------------------------------------------------------------------------------