Skip to content

superfeedr/superfeedr-python

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Superfeedr XMPP API Python Wrapper

Warning : this wrapper is known for its lack of support by its developer. You may want to give a look at SFPY as well.

Requirements:

If you use Python3k

  • SleekXMPP, Download the source code : svn://netflint.net/sleekxmpp/trunk

If you use Python 2.6 Thanks to dfdeshom

Installation:

sudo python setup.py install

Example

from superfeedrpy import Superfeedr
import time

def sf_message(event):
	print "received event without entries"

def sf_entry(event):
	print "received entry with events", event

sf = Superfeedr('user@superfeedr.com', 'password-here')
sf.on_notification(sf_message)
sf.on_entry(sf_entry)
while True:
	time.sleep(1)

Warning

We know our limits and we know we can’t actively support wrappers in every languages. Like everybody, we have our favorite languages and platform, and there is little chance that we ever get a deep enough knownledge in all that languages that you guys use to offer great services. So, for us, the limit of what we can provide and support is our API (both XMPP and PubSubHubbub).

These libs are not ours, they wait for your input, your documentation, your testing, as well as_ your suggestions for new features_. We will just help gathering them and keeping track by connecting the people who made them with the people who use them.

Please, fork it and make it better!

Releases

No releases published

Packages

No packages published

Languages