├── .github └── workflows │ ├── deploy.yml │ └── deployScript.sh ├── .gitignore ├── LICENSE ├── README.md ├── images └── tiktok.png ├── language.json ├── migrations.py ├── models.py ├── requirements.txt ├── src ├── __init__.py ├── floodControl.py ├── inline.py ├── keyboard.py ├── message.py ├── objs.py └── sample-config.json ├── tikTokScraper.py └── tokmate.py /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hemantapkh/TokMate/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.github/workflows/deployScript.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hemantapkh/TokMate/HEAD/.github/workflows/deployScript.sh -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | src/config.json 2 | __pycache__/ 3 | *.sqlite -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hemantapkh/TokMate/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hemantapkh/TokMate/HEAD/README.md -------------------------------------------------------------------------------- /images/tiktok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hemantapkh/TokMate/HEAD/images/tiktok.png -------------------------------------------------------------------------------- /language.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hemantapkh/TokMate/HEAD/language.json -------------------------------------------------------------------------------- /migrations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hemantapkh/TokMate/HEAD/migrations.py -------------------------------------------------------------------------------- /models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hemantapkh/TokMate/HEAD/models.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hemantapkh/TokMate/HEAD/requirements.txt -------------------------------------------------------------------------------- /src/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hemantapkh/TokMate/HEAD/src/__init__.py -------------------------------------------------------------------------------- /src/floodControl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hemantapkh/TokMate/HEAD/src/floodControl.py -------------------------------------------------------------------------------- /src/inline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hemantapkh/TokMate/HEAD/src/inline.py -------------------------------------------------------------------------------- /src/keyboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hemantapkh/TokMate/HEAD/src/keyboard.py -------------------------------------------------------------------------------- /src/message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hemantapkh/TokMate/HEAD/src/message.py -------------------------------------------------------------------------------- /src/objs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hemantapkh/TokMate/HEAD/src/objs.py -------------------------------------------------------------------------------- /src/sample-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hemantapkh/TokMate/HEAD/src/sample-config.json -------------------------------------------------------------------------------- /tikTokScraper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hemantapkh/TokMate/HEAD/tikTokScraper.py -------------------------------------------------------------------------------- /tokmate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hemantapkh/TokMate/HEAD/tokmate.py --------------------------------------------------------------------------------