A tail-f-like utility for feeds
Project description
Feedstail is a tail-f-like utility for feeds. It monitor a feed and emits new entries. Feedstail aim to be simple, hackable and compatible with rsstail its C brother.
License
Feedstail is released under the terms of the GNU General Public License v3 or later.
Get started
Use pip to install feedstail the easy way:
$ pip install feedstail
Or retrieve the project with git and install it:
$ git clone https://github.com/Psycojoker/feedstail.git $ cd feedstail $ python setup.py install
Then, launch feedstail with a random feeds to test it:
$ feedstail -u http://hackeragenda.be/events/events.rss
Examples
By default, feedstail will checkout the feeds every 15 minutes. If you want to customize this interval you can use the i option. The following example will retrieve feeds every 5 seconds:
$ feedstail -u http://hackeragenda.be/events/events.rss -i 5
The default output format may not be ok for you. You can specify your own format using the f option. The given fields must be an available property of the feed entries. The following example will output the published date, the title and the link:
$ feedstail -u http://hackeragenda.be/events/events.rss -f "{published}: {title} - {link}"
This last example use the string formatting syntax appeared in the 2.6 version of Python. However, feedstail aim to be 2.5 compatible so you can use the old string formatting syntax:
$ feedstail -u http://hackeragenda.be/events/events.rss -f "%(published)s: %(title)s - %(link)s"
Feedstail compares the id element to find new entries. You can choose another element of comparison with the k option. The following example says to feedstail to use the title to find new entries:
$ feedstail -u http://hackeragenda.be/events/events.rss -i 2 -k title
As feedstail is built above feedparser, the available values of format fields and keys can be found in the documentation of the library.
Importing to other python project
Feedstail could be imported to another python project with:
from feedstail import feedGenerator from feedstail.config import Config
- Options :
key : The comparaison key. By default: id
reverse : Boolean value for reversing the entries of the feed. By default: False
number : At the first time, show x entries. By default, it is None and shows all the received entries.
ignore_key_error : Boolean value for ignore keys errors. By default: False
no_endl : Boolean value for ignoring end lines. By default: False
url : The url. By default: None
format : The format of entries.
- Options not present :
interval : The interval time for checking the feed.
one shot : Get once the feed.
The feedGenerator take an instance of Config as parameters and return a generator. This generator will return an array of entries (could be an empty array) with the defined format.
Example:
from feedstail import feedGenerator from feedstail.config import Config feed = feedGenerator(Config(url="http://hackeragenda.be/events/events.rss", format=u'{title} - {link}')) print '\n'.join(feed.next())
Contribute !
Fork the project: https://github.com/Psycojoker/feedstail.git
Create your patch in a topic branch
Send pull requests or send your patches via e-mail
Don’t forget to mark your commits by one of the following flag:
[enh]: Your commit add a notable enhancement, a new feature for instance
[fix]: Your commit is a bugfix
[doc]: Your commit improve the documentation
[mod]: Your commit bring general changes, matching neither of the above, like refactoring
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 Distribution
Built Distributions
File details
Details for the file feedstail-0.5.1.tar.gz
.
File metadata
- Download URL: feedstail-0.5.1.tar.gz
- Upload date:
- Size: 17.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1fcdc114d2bdce50140577e5ce82aba2bc488d7afad6d1efcfaf86b73c3dd398 |
|
MD5 | 4986dadde2edf8c6241c551b32b0c603 |
|
BLAKE2b-256 | 46e3c22a1d4ae451b735ac4056e3bb8db2c6ab3a36d449a54c55128aa819efd0 |
File details
Details for the file feedstail-0.5.1-py2.py3-none-any.whl
.
File metadata
- Download URL: feedstail-0.5.1-py2.py3-none-any.whl
- Upload date:
- Size: 24.8 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0a6d1a6dcfcfe74b084b46dd5e5122a5b90f87d2bda85ac9da28dbe1b37f0b16 |
|
MD5 | 8cd45080784fb83fa2013d15a1f92fbe |
|
BLAKE2b-256 | cc22d02f609fa4128dff4e9c7bc1279cbec6105c111739f6a59f2733ffa9c099 |
File details
Details for the file feedstail-0.5.1-py2.7.egg
.
File metadata
- Download URL: feedstail-0.5.1-py2.7.egg
- Upload date:
- Size: 22.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ebf3173d4346a51f8965138ebb95b1cd40e704d04e4a5f9766ccd367d882531c |
|
MD5 | 00c598f76cf59f0193d12151b956b562 |
|
BLAKE2b-256 | b4d2d38e46ab35333cae7ed4cfd3e1030779d4a86d91d9ac6d0a529cc091d429 |