- 15 Jul, 2016 4 commits
-
-
Tarun Bhardwaj authored
Update list of methods available (methods.v2.json)
-
Ritesh Shrivastav authored
-
Tarun Bhardwaj authored
-
Tarun Bhardwaj authored
-
- 14 Jul, 2016 4 commits
-
-
Tarun Bhardwaj authored
-
Tarun Bhardwaj authored
-
Tarun Bhardwaj authored
Add requirements to setup.py
-
Ritesh Shrivastav authored
Remove '.cache'
-
- 13 Jul, 2016 9 commits
-
-
Tarun Bhardwaj authored
-
Tarun Bhardwaj authored
-
Tarun Bhardwaj authored
Add manifest file to include README.md in package
-
Ritesh Shrivastav authored
-
Tarun Bhardwaj authored
-
Tarun Bhardwaj authored
-
Tarun Bhardwaj authored
-
Tarun Bhardwaj authored
-
Tarun Bhardwaj authored
-
- 06 Jul, 2016 1 commit
-
-
Prakash Pandey authored
Fix HTTP body none issue
-
- 05 Jul, 2016 1 commit
-
-
Joe Paul authored
-
- 31 Oct, 2011 5 commits
-
-
Dan McKinley authored
Update API endpoint URLs
-
Alek Storm authored
-
Dan McKinley authored
Bugfix: Only use OAuth client if it's actually set
-
Dan McKinley authored
Replace 'print' statement with call to logger
-
Alek Storm authored
-
- 27 Oct, 2011 1 commit
-
-
Alek Storm authored
-
- 01 Jun, 2011 5 commits
-
-
Dan McKinley authored
-
Dan McKinley authored
-
Dan McKinley authored
Allow passing parameters of type long when an int is expected.
-
Marc Abramowitz authored
The test, test_parameter_type_long, added in commit cde2a133, now passes.
-
Marc Abramowitz authored
Add a new test, test_parameter_type_long, which demonstrates that passing parameters of type long when an int is expected, causes an exception. ERROR: test_parameter_type_long (test.test_core.CoreTests) ... ValueError: Bad value for parameter limit of type 'int' - 5
-
- 28 Jan, 2011 1 commit
-
-
Dan McKinley authored
-
- 27 Jan, 2011 3 commits
-
-
Dan McKinley authored
-
Dan McKinley authored
-
Dan McKinley authored
-
- 19 Jan, 2011 1 commit
-
-
Marc Abramowitz authored
-
- 16 Jan, 2011 2 commits
-
-
Marc Abramowitz authored
-
Marc Abramowitz authored
Production API or the Sandbox API.
-
- 15 Jan, 2011 1 commit
-
-
Marc Abramowitz authored
-
- 02 Jan, 2011 1 commit
-
-
Benjamin Trott authored
Use the proper form in python-oauth2 for setting the verifier value for use in getting the access token & secret.
-
- 27 Dec, 2010 1 commit
-
-
Marc Abramowitz authored
Change file check from isinstance(value, file) to hasattr(value, 'read') so that file-like objects are handled. - if isinstance(value, file): - file_object = value - files.append((name, file_object.name, file_object.read())) + if hasattr(value, 'read'): + files.append((name, value.name, value.read()))
-