A library for watching RSS feeds and notifying when new entries are available
Project description
ScoutRSS
ScoutRSS is a Python package for monitoring RSS feeds and triggering callbacks when new entries are found. It uses the feedparser package to parse RSS feeds and the APScheduler package to schedule checks at regular intervals.
Installation
To install ScoutRSS, use pip:
pip install ScoutRSS
Usage
To use ScoutRSS, create an instance of the ScoutRSS
class and pass in the RSS feed URL, a callback function to be called when new entries are found, and other optional parameters.
from ScoutRSS import ScoutRSS
def callback(entries):
print("Found {} new entries".format(len(entries)))
watcher = ScoutRSS("http://example.com/feed.xml", callback)
watcher.listen()
This will start monitoring the RSS feed and calling the callback
function whenever new entries are found. The listen
method starts the scheduler with a default interval of 60 seconds. You can customize the interval by passing a different value to the interval
parameter:
watcher.listen(interval=120) # Check every 2 minutes
You can also use the stop_listener
method to stop monitoring the RSS feed:
watcher.stop_listener()
Advanced usage
You can use the check_confirmation
parameter to control whether to update the last saved on timestamp based on the return value of the callback function. If set to True
, the callback
function should return True
to update the last saved on timestamp:
def callback(entries):
for entry in entries:
print("Found new entry: {}".format(entry.title))
return True
watcher = ScoutRSS("http://example.com/feed.xml", callback, check_confirmation=True)
watcher.listen()
You can also use the id
parameter to specify a unique ID for the RSS feed. This can be useful if you want to monitor multiple RSS feeds with different callback functions:
watcher1 = ScoutRSS("http://example1.com/feed.xml", callback1, id="feed1")
watcher2 = ScoutRSS("http://example2.com/feed.xml", callback2, id="feed2")
By default, the last saved on timestamp is stored in a pickledb database file named scoutrss.data.json
in the current directory. You can customize the database file path by passing a different value to the load
method of the pickledb
package:
import pickledb
db = pickledb.load("custom/path/to/database.json", True)
watcher = ScoutRSS("http://example.com/feed.xml", callback, db=db)
You can also pass in a custom scheduler instance if you want to use a different scheduler:
from apscheduler.schedulers.asyncio import AsyncIOScheduler
scheduler = AsyncIOScheduler()
watcher = ScoutRSS("http://example.com/feed.xml", callback, apscheduler=scheduler)
License
ScoutRSS is licensed under the GNU v3 license. See the LICENSE
file for more information.
Contributing
Contributions are welcome! See the CONTRIBUTING.md
file for more information.
Credits
ScoutRSS was created by Adnan Ahmad and licensed under the GNU GPLv3 license.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distribution
File details
Details for the file scoutrss-0.1.0-py3-none-any.whl
.
File metadata
- Download URL: scoutrss-0.1.0-py3-none-any.whl
- Upload date:
- Size: 18.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.11
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2a2ef22f88da812705f23862e766646e7be20c457348202053e75068879293e6 |
|
MD5 | 0ba2b62566a006a4e00ee9b49bc1fcb5 |
|
BLAKE2b-256 | ce7b045e9ebc52f72eb80cb606abbdfdfe2086fa512ddd7fbf91cd0116af1871 |