diff --git a/.gitignore b/.gitignore index f426324..cf385b2 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,7 @@ *.swp +*.pyc .idea/ -last_rt +last_mention ticketfrei.cfg seen_toots.pickle seen_toots.pickle.part diff --git a/README.md b/README.md index eb466ce..986746f 100644 --- a/README.md +++ b/README.md @@ -47,16 +47,18 @@ Note that atm the good- & blacklist are still outside of ticketfrei.cfg, in sepa - [x] Twitter: Crawl mentions - [x] Mastodon: Crawl mentions -- [ ] Write toots/tweets to database +- [ ] Write toots/tweets to database/log - [x] Twitter: retweet people - [x] Mastodon: boost people + - [x] Twitter: access the API - [ ] Web UI that lets you easily delete toots/tweets per db id and mute the tweet author - [x] Write Bots as Classes to be easier implemented - [x] Create extra Class for the filter - [ ] Put as much as possible into ticketfrei.cfg - [ ] Make both bots run on their own *and* next to each other - - + - [ ] implement trigger class in retootbot + - [ ] read config in retweetbot diff --git a/last_rt b/last_rt new file mode 100644 index 0000000..e69de29 diff --git a/ticketfrei.py b/ticketfrei.py index e6109c8..5319b78 100644 --- a/ticketfrei.py +++ b/ticketfrei.py @@ -14,7 +14,7 @@ if __name__ == '__main__': trigger = Trigger(config) mbot = RetootBot(config) - tbot = RetweetBot(config, trigger=trigger) + tbot = RetweetBot(trigger) try: statuses = []