You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

README.md 1014 B

7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
1234567891011121314151617181920212223
  1. # TootBot Spicy Edition
  2. A small python 3.x script to replicate tweets and posts from soup.io on a mastodon account.
  3. The script only need mastodon login/pass to post toots.
  4. For Twitter, it gets the tweets from RSS available at http://twitrss.me, then does some cleanup on the content:
  5. - twitter tracking links (t.co) are dereferenced
  6. - twitter hosted pictures are retrieved and uploaded to mastodon
  7. For Soup, it uses the official RSS feed (e.g. https://metalab.soup.io/rss), then does some cleanup on the content:
  8. - checks if source is twitter and checks for duplicates
  9. - removes html stuff
  10. - looks for one picture in source link or in soup post and uploads it to mastodon
  11. - adds source url (if no source is specified, soup post is source url)
  12. A sqlite database is used to keep track of items than have been tooted.
  13. this script is based on TootBot: https://github.com/cquest/tootbot
  14. The script is simply called by a cron job and can run on any server (does not have to be on the mastodon instance server).