This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| FROM ubuntu:18.04 | |
| ARG DEBIAN_FRONTEND=noninteractive | |
| ARG ACCESS_KEY_ID | |
| ARG SECRET_ACCESS_KEY | |
| ENV AWS_ACCESS_KEY_ID=${ACCESS_KEY_ID} | |
| ENV AWS_SECRET_ACCESS_KEY=${SECRET_ACCESS_KEY} | |
| RUN apt update && apt install -y \ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import tweepy | |
| from time import sleep | |
| from random import choice | |
| from string import ascii_uppercase | |
| from sys import argv | |
| CONSUMER_KEY = "" | |
| CONSUMER_SECRET = "" | |
| ACCESS_TOKEN = "" |