Skip to content

superfeedr/sfpy

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

26 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

-- markdown -- This is sfpy, another Superfeedr XMPP API Python wrapper. You will need to install xmpppy to run it

Example:

from sfpy import SuperFeedr

def sf_message(event):
    print 'received this event: ', str(event)
    return 1


def main():
    user = 'user'
    password = 'password'
    s = SuperFeedr(user, password)
    s.on_notification(sf_message)
    s.monitor() 

if __name__=='__main__':
    main()

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%