Client library for Miniflux REST API.
- Miniflux >= 2.x
- Python >= 3.4
- requests
pip install minifluxpip install tox
toximport miniflux
client = miniflux.Client("https://miniflux.example.org", "my_username", "my_secret_password")
# Get all feeds
feeds = client.get_feeds()
# Refresh a feed
client.refresh_feed(123)
# Discover subscriptions from a website
subscriptions = client.discover("https://example.org")Frédéric Guillot
This library is distributed under MIT License.