Quickfix: Fixing basti2342’s retweet bot

Hi All,

just a really quick one: basti2342’s retweet bot (found here) is missing a configuration file for it to work. The file in question should be called “config” (no extension) and be put into the root directory of the bot (along with the retweet.py file). The contents should be as follows:

[settings]
search_query:#hashtag
# Leave empty for all languages
tweet_language:
number_of_rt:10

[twitter]
consumer_key:consumerKey
consumer_secret:consumerSecret
access_token:accessToken
access_token_secret:accessTokenSecret

In addition you might have to install configparser

pip install configparser

With that, your bot should run smoothly

Cheers

Andre