howto use rss/atom feed

This commit is contained in:
cquest 2019-04-03 17:52:36 +02:00
parent 0c8f107d43
commit 611f235aff
2 changed files with 6 additions and 2 deletions

View File

@ -2,10 +2,14 @@
# source /home/cquest/.virtualenvs/tootbot/bin/activate
# parameters:
# 1- twitter account to clone
# 1- twitter account to clone / or rss/atom feed URL
# 2- mastodon login
# 3- mastodon password
# 4- instance domain (https:// is automatically added)
# 5- max age (in days)
# 6- footer tags to add (optionnal)
python3 tootbot.py geonym_fr geonym@amicale.net **password** test.amicale.net
python3 tootbot.py cq94 cquest@amicale.net **password** test.amicale.net
python3 tootbot.py https://www.data.gouv.fr/fr/datasets/recent.atom cquest+opendata@amicale.net **password** amicale.net 2 "#dataset #opendata #datagouvfr"

View File

@ -9,7 +9,7 @@ from mastodon import Mastodon
import requests
if len(sys.argv) < 4:
print("Usage: python3 tootbot.py twitter_account mastodon_login mastodon_passwd mastodon_instance") # noqa
print("Usage: python3 tootbot.py twitter_account mastodon_login mastodon_passwd mastodon_instance [max_days [footer_tags]]") # noqa
sys.exit(1)
# sqlite db to store processed tweets (and corresponding toots ids)