Code to generate tweets using an RNN.
creds.json:
{
"twitter-api-key": "abc",
"twitter-secret-key": "123",
"twitter-bearer": "xyz",
"twitter-access-token": "def",
"twitter-secret-access": "456"
}./dynamo.sh
aws dynamodb list-tables --endpoint-url http://localhost:8000
Grabs tweets per specified users.
python3 -m src/main/tweet_grab
Pulls data from bigquery table & local, subsets to what is in local but not bq, uploads to bq & deduplicates.
python3 -m src/main/twitter_bq_upload
Trains a recurrent neural network (RNN) to learn tweets based off of data in bq table.
python3 -m src/main/twitter_nn
Generates tweets based off of neural net.
python3 -m src/main/tweet_generate