Library for working with Superfeedr's PubSubHubbub API
Project description
A simple library designed to make it easy to add and remove feeds from Superfeedr’s PubSubHubbub API. Includes support for hub.secret.
Credits
Developed and used at Urban Airship and released under the MIT License.
Harper Reed’s gae-superfeedr-shell provided inspiration for part of this code. Thanks Harper!
Example Usage
Setting up pubsubsuperfeedr:
>>> import pubsubsuperfeedr >>> sf = pubsubsuperfeedr.Superfeedr(settings.SUPERFEEDR_USERNAME, settings.SUPERFEEDR_PASSWORD)
Validating a feed to make sure that it has at least one readable entry:
>>> sf.verify_feed_url("http://blog.urbanairship.com/feed/") True
Note that this is just a really simple wrapper around feedparser and sometimes feedparser can read things that Superfeedr can’t.
Adding a feed:
>>> sf.add_feed("http://blog.urbanairship.com/feed/", "http://example.com/your_callback_url", "some_verify_token", "some_secret")
add_feed expects the feed you’re wanting to watch, then the callback URL, and optionally a verify token and feed secret.
Removing a feed:
>>> sf.remove_feed("http://blog.urbanairship.com/feed/", "http://example.com/your_callback_url", "some_secret")
Removing a feed is basically the same as adding a feed.
Verifying a secret (in Django):
>>> sf.verify_secret("some_secret", request.raw_post_data, request.META.get("HTTP_X_HUB_SIGNATURE", "")) True
Testing
To run the tests, first make sure that nose and mox are installed. Then:
$ nosetests
And you’re off an running.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file pubsubsuperfeedr-0.4.0.tar.gz
.
File metadata
- Download URL: pubsubsuperfeedr-0.4.0.tar.gz
- Upload date:
- Size: 3.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 35a6544bb8ac5d63fc05ba32e90949444ac86e58dd03186b193d45414cbfabdd |
|
MD5 | 50183912702ae6b136c50bed656bc67d |
|
BLAKE2b-256 | 80e501448eed01e2353ce532f8a351101d0fe02874777765091f9e7b08332d3b |
File details
Details for the file pubsubsuperfeedr-0.4.0-py3-none-any.whl
.
File metadata
- Download URL: pubsubsuperfeedr-0.4.0-py3-none-any.whl
- Upload date:
- Size: 3.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e1cacd3c8491a63ced401c03e3bc23b1351847427c282abbb90d864109f2c9ca |
|
MD5 | 23e7be70dcc1ffe420e396297f720e46 |
|
BLAKE2b-256 | fa9bc36efdb195912d5dee7a5a2357b5979d3b9642835d994250b773ceb9c48e |