├── .dockerignore ├── .github └── FUNDING.yml ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── app.py └── requrements.txt /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minimaxir/autotweet-from-googlesheet/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minimaxir/autotweet-from-googlesheet/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.json 2 | test.py 3 | .env -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minimaxir/autotweet-from-googlesheet/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minimaxir/autotweet-from-googlesheet/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minimaxir/autotweet-from-googlesheet/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minimaxir/autotweet-from-googlesheet/HEAD/app.py -------------------------------------------------------------------------------- /requrements.txt: -------------------------------------------------------------------------------- 1 | gspread>=3.6.0 2 | starlette 3 | tweepy --------------------------------------------------------------------------------