Skip to content

Latest commit

 

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)