Python wrapper for SurveyMonkey API
Project description
surveymonkey-python
Python wrapper for SurveyMonkey API
Installing
pip install surveymonkey-python
Usage
- Instantiate client
from client import Client
# If you do not have access_token, run
client=Client(
client_id=CLIENT_ID, client_secret=CLIENT_SECRET, redirect_uri=REDIRECT_URI, access_token=None)
# If you have access_token, run
client=Client(
client_id=CLIENT_ID, client_secret=CLIENT_SECRET, redirect_uri=REDIRECT_URI, access_token=ACCESS_TOKEN)
-
OAuth (instantiate client with
access_token = None
) 1- Get authorization URLclient.get_authorization_url()
2- Extractcode
from the URL and send it as an argument inclient.exchange_code(code)
3- Remove the token from the response obtained and send it as an argument inclient.set_access_token(token)
-
Functionality methods, they refer to methods that make calls to the different endpoints of the SurveyMonkey API, the use is quite simple:
client.method(args)
e.g.client.get_survey_pages(survey_id)
wheresurvey_id
represent the id of the survey.
TODO
- Response Counts and Trends endpoints
- Contacts and Contact Lists endpoints
- Translations for Multilingual Surveys endpoints
- Collectors and Invite Messages endpoints
- Benchmarks endpoints
- Organizations endpoint
- Errors endpoint
Contributing
We are always grateful for any kind of contribution including but not limited to bug reports, code enhancements, bug fixes, and even functionality suggestions.
You can report any bug you find or suggest new functionality with a new issue.
If you want to add yourself some functionality to the wrapper:
- Fork it ( https://github.com/GearPlug/surveymonkey-python )
- Create your feature branch (git checkout -b my-new-feature)
- Commit your changes (git commit -am 'Adds my new feature')
- Push to the branch (git push origin my-new-feature)
- Create a new Pull Request
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Hashes for surveymonkey-python-0.1.2.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | 18cd63003c68ddd457c5a9b76530549c72270def7c8452cec86143291e48fc04 |
|
MD5 | a76f40393f25470edb5a345b2e14baed |
|
BLAKE2b-256 | 60f5205559b71f5b1ad16899e067bb764f199eb8664eed12037bf12aa51a5b60 |