Skip to content

Commit 6a14a26

Browse files
author
Luisa Torres
committed
2 parents bd52ba3 + e193388 commit 6a14a26

1 file changed

Lines changed: 59 additions & 0 deletions

File tree

README.md

Lines changed: 59 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,61 @@
11
# typeform-python
22
TypeForm API wrapper written in python.
3+
4+
## Installing
5+
```
6+
pip install git+git://github.com/GearPlug/typeform-python.git
7+
```
8+
9+
## Requirements
10+
- requests
11+
12+
13+
## Usage
14+
```
15+
from typeform.client import Client
16+
17+
client = Client('API_KEY')
18+
```
19+
20+
Get form ID
21+
```
22+
client.get_form_uid('URL_FORM')
23+
```
24+
25+
Get form information
26+
```
27+
client.get_form_information('UID, URL')
28+
```
29+
30+
Get form stats
31+
```
32+
client.get_form_stats('UID, URL')
33+
```
34+
35+
Get form questions
36+
```
37+
client.get_form_questions('UID, URL')
38+
```
39+
40+
Get form metadata
41+
```
42+
client.get_form_metadata('UID, URL')
43+
```
44+
45+
## TODO
46+
- create_form
47+
- Update_form
48+
- delete_form
49+
- get_custom_form_messages
50+
- update_custom_messages
51+
- create_image
52+
- get_images_collection
53+
- get_image
54+
- delete_image
55+
- get_image_by_size
56+
- get_background_by_size
57+
- get_choice_image_by_size
58+
- create_theme
59+
- get_themes
60+
- update_themes
61+
- delete_themes

0 commit comments

Comments
 (0)