File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11# typeform-python
22TypeForm 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
You can’t perform that action at this time.
0 commit comments