forked from ticketfrei/ticketfrei
updated readme to prioritize tasks
This commit is contained in:
parent
28b06b84ec
commit
647543ddc4
3
.gitignore
vendored
3
.gitignore
vendored
|
@ -1,6 +1,7 @@
|
||||||
*.swp
|
*.swp
|
||||||
|
*.pyc
|
||||||
.idea/
|
.idea/
|
||||||
last_rt
|
last_mention
|
||||||
ticketfrei.cfg
|
ticketfrei.cfg
|
||||||
seen_toots.pickle
|
seen_toots.pickle
|
||||||
seen_toots.pickle.part
|
seen_toots.pickle.part
|
||||||
|
|
|
@ -47,16 +47,18 @@ Note that atm the good- & blacklist are still outside of ticketfrei.cfg, in sepa
|
||||||
|
|
||||||
- [x] Twitter: Crawl mentions
|
- [x] Twitter: Crawl mentions
|
||||||
- [x] Mastodon: Crawl mentions
|
- [x] Mastodon: Crawl mentions
|
||||||
- [ ] Write toots/tweets to database
|
- [ ] Write toots/tweets to database/log
|
||||||
- [x] Twitter: retweet people
|
- [x] Twitter: retweet people
|
||||||
- [x] Mastodon: boost people
|
- [x] Mastodon: boost people
|
||||||
|
<!--
|
||||||
- [ ] Mastodon: toot who has been retweeted on twitter
|
- [ ] Mastodon: toot who has been retweeted on twitter
|
||||||
- [ ] Twitter: tweet who has been boosted on mastodon
|
- [ ] Twitter: tweet who has been boosted on mastodon
|
||||||
|
-->
|
||||||
- [x] Twitter: access the API
|
- [x] Twitter: access the API
|
||||||
- [ ] Web UI that lets you easily delete toots/tweets per db id and mute the tweet author
|
- [ ] 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] Write Bots as Classes to be easier implemented
|
||||||
- [x] Create extra Class for the filter
|
- [x] Create extra Class for the filter
|
||||||
- [ ] Put as much as possible into ticketfrei.cfg
|
- [ ] Put as much as possible into ticketfrei.cfg
|
||||||
- [ ] Make both bots run on their own *and* next to each other
|
- [ ] Make both bots run on their own *and* next to each other
|
||||||
|
- [ ] implement trigger class in retootbot
|
||||||
|
- [ ] read config in retweetbot
|
||||||
|
|
|
@ -14,7 +14,7 @@ if __name__ == '__main__':
|
||||||
trigger = Trigger(config)
|
trigger = Trigger(config)
|
||||||
|
|
||||||
mbot = RetootBot(config)
|
mbot = RetootBot(config)
|
||||||
tbot = RetweetBot(config, trigger=trigger)
|
tbot = RetweetBot(trigger)
|
||||||
|
|
||||||
try:
|
try:
|
||||||
statuses = []
|
statuses = []
|
||||||
|
|
Loading…
Reference in a new issue