We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 934a923 commit 42b4f3eCopy full SHA for 42b4f3e
README.md
@@ -5,3 +5,35 @@ acmlib
5
6
Library for @pdxacm
7
8
+## Installation
9
+
10
+You can use pip to download and install straight from github
11
12
+```sh
13
+pip install git+git://github.com/pdxacm/acmlib-py.git#egg=acmlib
14
+```
15
16
+## First steps
17
18
+```python
19
+from acmlib import AcmLib
20
21
+acmlib = AcmLib(username, password)
22
23
24
+## Examples
25
26
+### Get all events
27
28
29
+events = acmlib.get_events()
30
31
+for event in events:
32
+ print(event.title)
33
34
35
+### Add a person
36
37
38
+new_person = acmlib.add_person(username, password)
39
0 commit comments