2017-04-09 08:30:48 +00:00
|
|
|
### Feed2toot
|
|
|
|
|
2017-04-10 09:13:35 +00:00
|
|
|
Feed2toot automatically parses rss feeds, identifies new posts and posts them on the [Mastodon](https://mastodon.social) social network.
|
2017-04-09 08:30:48 +00:00
|
|
|
For the full documentation, [read it online](https://feed2toot.readthedocs.org/en/latest/).
|
|
|
|
|
|
|
|
If you would like, you can [support the development of this project on Liberapay](https://liberapay.com/carlchenet/).
|
|
|
|
Alternatively you can donate cryptocurrencies:
|
|
|
|
|
2017-04-27 16:36:47 +00:00
|
|
|
- BTC: 1MaFaUbmJcTVN9wsm5bzqFyq6zWu434X3A
|
|
|
|
- XMR: 43GGv8KzVhxehv832FWPTF7FSVuWjuBarFd17QP163uxMaFyoqwmDf1aiRtS5jWgCiRsi73yqedNJJ6V1La2joznKHGAhDi
|
2017-04-09 08:30:48 +00:00
|
|
|
|
|
|
|
### Quick Install
|
|
|
|
|
|
|
|
* Install Feed2toot from PyPI
|
|
|
|
|
|
|
|
# pip3 install feed2toot
|
|
|
|
|
|
|
|
* Install Feed2toot from sources
|
|
|
|
*(see the installation guide for full details)
|
|
|
|
[Installation Guide](http://feed2toot.readthedocs.org/en/latest/install.html)*
|
|
|
|
|
|
|
|
|
2017-05-05 17:28:10 +00:00
|
|
|
# tar zxvf feed2toot-0.5.tar.gz
|
2017-04-09 08:30:48 +00:00
|
|
|
# cd feed2toot
|
|
|
|
# python3 setup.py install
|
|
|
|
# # or
|
|
|
|
# python3 setup.py install --install-scripts=/usr/bin
|
|
|
|
|
2017-04-09 09:11:03 +00:00
|
|
|
### Create the authorization for the Feed2toot app
|
|
|
|
|
|
|
|
* Just launch the following command::
|
|
|
|
|
|
|
|
$ register_feed2toot_app
|
|
|
|
|
2017-04-09 08:30:48 +00:00
|
|
|
### Use Feed2toot
|
|
|
|
|
|
|
|
* Create or modify feed2toot.ini file in order to configure feed2toot:
|
|
|
|
|
|
|
|
[mastodon]
|
2017-04-10 08:59:53 +00:00
|
|
|
instance_url=https://mastodon.social
|
2017-04-09 08:30:48 +00:00
|
|
|
user_credentials=feed2toot_usercred.txt
|
|
|
|
client_credentials=feed2toot_clientcred.txt
|
|
|
|
|
|
|
|
[cache]
|
|
|
|
cachefile=cache.db
|
|
|
|
|
|
|
|
[rss]
|
|
|
|
uri=https://www.journalduhacker.net/rss
|
|
|
|
tweet={title} {link}
|
|
|
|
|
|
|
|
[hashtaglist]
|
|
|
|
several_words_hashtags_list=hashtags.txt
|
|
|
|
|
|
|
|
* Launch Feed2toot
|
|
|
|
|
|
|
|
$ feed2toot -c /path/to/feed2toot.ini
|
|
|
|
|
|
|
|
### Authors
|
|
|
|
|
|
|
|
* Carl Chenet <chaica@ohmytux.com>
|
|
|
|
* Antoine Beaupré <anarcat@debian.org>
|
|
|
|
* First developed by Todd Eddy
|
|
|
|
|
|
|
|
### License
|
|
|
|
|
|
|
|
This software comes under the terms of the GPLv3+. Previously under MIT license. See the LICENSE file for the complete text of the license.
|