Skip to content

Commit 808723d

Browse files
committed
Updated readme and added some more example calls
1 parent f2169f9 commit 808723d

File tree

4 files changed

+57
-13
lines changed

4 files changed

+57
-13
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
*.py[cod]
22
.env
3+
ve
4+
ve3
35
# C extensions
46
*.so
57

README.md

+40-11
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,58 @@
1-
Python-Hackpad-API
2-
==================
1+
# Python-Hackpad-API
32

4-
A simple wrapper library for the Hackpad API. [Hackpad API Documentation](https://hackpad.com/Public-Hackpad-API-Draft-nGhsrCJFlP7)
53

6-
Installation
7-
==================
4+
A simple wrapper library for the Hackpad API. [Hackpad API Documentation](https://hackpad.co/Hackpad-API-v1.0-KdHQhIEfGJG)
5+
6+
## Installation
7+
8+
This works best from a virtualenv:
9+
10+
```
11+
virtualenv -p python3 ve3
12+
. ve3/bin/activate
13+
```
814

915
Navigate to the folder where you have downloaded this repo, and type
1016

1117
```
12-
easy_install .
18+
pip install -r requirements.txt
1319
```
1420

1521
into your terminal / command prompt.
1622

17-
Usage
18-
==================
23+
# Usage
1924

2025
```python
21-
temp = Hackpad('your_hackpad_subdomain','your_hackpad_client_id','your_hackpad_secret')
26+
temp = Hackpad('the_hackpad_api_domain', 'your_hackpad_subdomain','your_hackpad_client_id','your_hackpad_secret')
2227
my_hackpads = temp.list_all()
23-
````
28+
```
2429

25-
Note:
30+
Notes:
2631

2732
* For `your_hackpad_subdomain`, just type the stem, not the full domain name (i.e. `mysubdomain`, not `http://mysubdomain.hackpad.com`, etc).
2833
* Your Client ID and Secret for the different subdomains you are signed into. Make sure to use the correct keys for the subdomain you are signing into.
2934

35+
# Running the example
36+
37+
First export the following environment vars (below in Mac OS style):
38+
39+
```
40+
export HACKPAD_SUB_DOMAIN=your_hackpad_subdomain
41+
export HACKPAD_API_DOMAIN=the_hackpad_api_domain
42+
export HACKPAD_CLIENT_ID=your_hackpad_client_id
43+
export HACKPAD_SECRET=your_hackpad_secret
44+
```
45+
46+
Then run it:
47+
48+
```
49+
python example/example1.py
50+
```
51+
52+
# Credits
53+
54+
This repository is based on the work of [Kevin Marshall](https://github.com/Falicon).
55+
56+
An essential oAuth fix to the original library was made by [Jeremi Joslin](https://github.com/jeremi).
57+
58+
Thanks guys!

example/example1.py

+14-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,19 @@
11
import os
22
from hackpad_api.hackpad import Hackpad
33

4-
hackpad = Hackpad(os.getenv('team') ,consumer_key = os.getenv('consumer_key'), consumer_secret = os.getenv('consumer_secret'))
4+
hackpad = Hackpad(api_domain = os.getenv('HACKPAD_API_DOMAIN'),
5+
sub_domain = os.getenv('HACKPAD_SUB_DOMAIN'),
6+
consumer_key = os.getenv('HACKPAD_CLIENT_ID'),
7+
consumer_secret = os.getenv('HACKPAD_SECRET'))
58

6-
print(hackpad.do_api_request('pads/all', 'GET'))
9+
new_html_pad = hackpad.create_hackpad('HTML Pad Title Here', '<html><body><h1>HTML Pad Title Here</h1><p></p><p>And some text in <b>HTML</b>.</p><p>Very cool no?</p></body></html>', '', 'text/html')
710

11+
new_txt_pad = hackpad.create_hackpad('Text Pad Title Here', 'And some plain text.\n\nVery cool no?\n', '', 'text/plain')
12+
13+
all_pads = hackpad.list_all()
14+
15+
for padId in all_pads:
16+
# hackpad.do_api_request()
17+
pad = hackpad.get_pad_content(padId)
18+
print(pad.decode('utf-8'))
19+
print('-'*79)

example/hackpad_api

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../hackpad_api

0 commit comments

Comments
 (0)