Skip to content

Commit 187bebf

Browse files
author
Luisa Torres
committed
2 parents 0b0a551 + c699f20 commit 187bebf

2 files changed

Lines changed: 19 additions & 0 deletions

File tree

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,11 @@ Get form metadata
4242
client.get_form_metadata('UID, URL')
4343
```
4444

45+
Get form answers
46+
```
47+
client.get_form_answers('UID, URL')
48+
```
49+
4550
## TODO
4651
- create_form
4752
- Update_form

setup.py

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
from setuptools import setup
2+
3+
setup(name='typeform',
4+
version='0.1',
5+
description='API wrapper for Typeform written in Python',
6+
url='https://github.com/GearPlug/typeform-python',
7+
author='Luisa Torres',
8+
author_email='hanna860@gmail.com',
9+
license='GPL',
10+
packages=['typeform'],
11+
install_requires=[
12+
'requests',
13+
],
14+
zip_safe=False)

0 commit comments

Comments
 (0)