A twitter bot regularly posting exquisite corpses (cf Wikipedia article).
See https://twitter.com/botsevbot for a live example.
In order to work, this bot needs two files:
- a file named
secrets.py
with the following info:
consumer_key = "your twitter consumer_key"
consumer_secret = "your twitter consumer_secret"
access_token = "your twitter access_token"
access_token_secret = "your twitter access_token_secret"
- a file named
exquisite_data.csv
with your data:
subject |
verb |
adverb |
object |
---|---|---|---|
... | ... | ... | ... |
subject
includes nominal groups, third person singular. They can be used as subject and object of the sentenceverb
includes transitive verbs conjugated in the third person singularadverb
includes adverbs, adverbial phrases, circumstantial supplements (they are put in a sentence 25% of the time)object
includes nominal groups which can only be a direct object complement to the sentence (which means, they are not in the third person singular).
This bot was computed thanks to this tutorial.