- 14 Jul, 2016 3 commits
-
-
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()))
-
- 26 Dec, 2010 3 commits
-
-
Marc Abramowitz authored
"includes" parameter for associations, since this parameter isn't listed in the method table.
-
Marc Abramowitz authored
(i.e.: oauth2.Token) and a logging.Logger
-
Marc Abramowitz authored
and not have to import or know about the oauth2 package.
-
- 24 Dec, 2010 1 commit
-
-
Marc Abramowitz authored
needed especially in order to let the client pass in an oauth_callback when calling get_signin_url.
-
- 23 Dec, 2010 1 commit
-
-
Marc Abramowitz authored
that are read-only can opt to not import etsy.oauth and not need oauth2 installed.
-