Python wrapper for SurveyMonkey API
pip install surveymonkey-python
- 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.
- 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
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.
- 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