Skip to content

Attendly/attendly-python

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Attendly python library

Python interface to the Attendly API

Note: This is a very early alpha release of the api.. things may change

Basic usage

import attendly

# Login (normally you would just store the apikey and only login once)
user = attendly.User.login('bobby7','password')

attendly.apikey(user['apikey'])

# Get a list of events
events = attendly.Event.list()
for e in events:
    print e['event']['name']

# Get an event
event = attendly.Event.get(events[0]['event']['id'])
print event['url']

Install via pip

$ pip install Attendly

Links

About

Python interface to the Attendly API

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages