├── .dockerignore ├── .github └── workflows │ └── python-app.yml ├── .gitignore ├── Dockerfile ├── README.md ├── calculator.py ├── compressionMessages.py ├── dbInteraction.py ├── downloader.py ├── main.py ├── maintenance └── create_posts_table.sql ├── pytest.ini ├── requirements.txt ├── tests.py └── validator.py /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewladams/TikBot/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/workflows/python-app.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewladams/TikBot/HEAD/.github/workflows/python-app.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewladams/TikBot/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewladams/TikBot/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewladams/TikBot/HEAD/README.md -------------------------------------------------------------------------------- /calculator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewladams/TikBot/HEAD/calculator.py -------------------------------------------------------------------------------- /compressionMessages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewladams/TikBot/HEAD/compressionMessages.py -------------------------------------------------------------------------------- /dbInteraction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewladams/TikBot/HEAD/dbInteraction.py -------------------------------------------------------------------------------- /downloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewladams/TikBot/HEAD/downloader.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewladams/TikBot/HEAD/main.py -------------------------------------------------------------------------------- /maintenance/create_posts_table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewladams/TikBot/HEAD/maintenance/create_posts_table.sql -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewladams/TikBot/HEAD/pytest.ini -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewladams/TikBot/HEAD/requirements.txt -------------------------------------------------------------------------------- /tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewladams/TikBot/HEAD/tests.py -------------------------------------------------------------------------------- /validator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewladams/TikBot/HEAD/validator.py --------------------------------------------------------------------------------