Skip to content

Files

Latest commit

author
Cameron Brandon White
May 25, 2014
42b4f3e · May 25, 2014

History

History
39 lines (25 loc) · 607 Bytes

README.md

File metadata and controls

39 lines (25 loc) · 607 Bytes

acmlib

Build Status

Library for @pdxacm

Installation

You can use pip to download and install straight from github

pip install git+git://github.com/pdxacm/acmlib-py.git#egg=acmlib

First steps

from acmlib import AcmLib

acmlib = AcmLib(username, password)

Examples

Get all events

events = acmlib.get_events()

for event in events:
    print(event.title)

Add a person

new_person = acmlib.add_person(username, password)