-
Notifications
You must be signed in to change notification settings - Fork 326
/
Changes
160 lines (133 loc) · 4.74 KB
/
Changes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
Changes for ebaysdk
2.2.0 Mon Apr 20 15:23:53 PDT 2020
- Forced HTTPS for finding, shopping, and trading calls
- fixed sample code so that it uses the appropriate domain
- added py38 to tox testing
2.1.6
- Update Copyright
2.1.5 Oct 13, 2017
- Bug fix release
2.1.4 Tue Aug 23 11:21:37 PDT 2016
- Merge PR from listingmirror for site-id fix
- Added a few performance tests
2.1.3
- Merged PR for XML escaping option (https://github.com/timotheus/ebaysdk-python/pull/139)
- fix unicode issue between py2 and py3
- add a unicode example in the samples dir
- fix for issue #127 (false-ish check)
- merge in py3 datatype fix from MartiONE
2.1.2 Thu Jun 25 14:54:12 PDT 2015
- merge in rowbare PR that support file upload
- refactor order poller into a Class and implement a base Storage class
that can be used for any domain specific actions (e.g. inserting into a DB)
- merged in backend support for inventory management (from bimusiek)
- add backend for Business Policy API (from nickspring)
- set ssl verify to True in connection class
2.1.1 Tue Apr 14 20:16:47 PDT 2015
- merge in pull request to fix unicode issues
- remove PyYAML dependency
- add poller package for pulling orders
2.1.0 Mon Jul 7 10:03:36 PDT 2014
- modify install instructions
- remove grequests install dep from setup.py
2.0.0
- WARNING!! This release breaks some backward compatibility
Read https://github.com/timotheus/ebaysdk-python/wiki/Migrating-from-v1-to-v2
- imports: Modified package structure
- execute(): Modified return value
- Switched to lxml.etree
- Added a new response class
response.reply, response.dom(), response.dict(), response.json()
- Added ebaysdk exception classes
- Modified utils.py (dict2xml, xml2dict)
1.0.3
- rework unicode fix
- fix logging handler
1.0.2 Sat Feb 8 20:44:00 PST 2014
- fix unicode issue is dict to xml routine
- add a unicode test
- fix http back-end
1.0.0
- Major refactor
+ changes are backward compatible unless your subclassing any of the
SDK classes
+ moved from PyCurl to Python Requests
+ code organization
+ standard python logging
+ add exceptions
0.1.11
- Add affiliate headers to the Shopping API back-end
- https://github.com/timotheus/ebaysdk-python/issues/40
fix datatype issue with error codes from the shopping API
- added py3 support thanks to Nikolay Derkach
- store response error codes in an array when processing response.
The reponse error codes can be accessed by the api.response_codes()
accessor.
if api.error():
if 37 in api.response_codes():
print "Invalid data"
0.1.10
- added error checking for html() class
- all class return response_data regardless of the http status code
- added Merchandising API class
- update SOA class default value
- add more trading api samples
0.1.9 Wed Apr 24 14:38:40 PDT 2013
- update error handling
- add VerifyAddItem sample call
- update license in setup.py
0.1.8 Tue Apr 23 15:33:02 PDT 2013
- push dist to pypi
- fix deprecation warning in utils.py
- pep8 cleanup
- handle utf-8 when parsing with BeautifulStoneSoup
- add retry to standard & parallel calls
- bug fix for SOA class
- add documentation and sample scripts
- clean up YAML file
- YAML values are now overridden by values defined
when building the object
- remove silent depedency on simplejson, at least for Python >= 2.6
- fix bug in html class that allows for POST
- refactor and style cleanup
- added parallel support using the parallel class
- created new prepare, process, and _process_http_request methods
0.1.7
- update tests
- modify response_obj() to return response_dict()
0.0.6
- support older version of Element tree
- modify dict2xml to handle nodes with array content
for example,
{
'keywords': 'shoes',
'paginationInput': { 'pageNumber': 1 },
'itemFilter': [
{ 'name': 'MinBids', 'value': 10 },
{ 'name': 'MaxBids', 'value': 14 }
],
}
<?xml version='1.0' encoding='utf-8'?>
<findItemsAdvancedRequest xmlns="http://www.ebay.com/marketplace/search/v1/services">
<itemFilter><name>MinBids</name><value>10</value></itemFilter>
<itemFilter><name>MaxBids</name><value>14</value></itemFilter>
<keywords>shoes</keywords>
<paginationInput><pageNumber>1</pageNumber></paginationInput>
</findItemsAdvancedRequest>
0.0.5
- added response_obj() which turns a dict into a Struct
e.g. { a : { 'name' : 'tim' } } can be accessed like a.name
- add support to dict args in the execute call. execute will now check the
data type and convert to xml if necessary
- clean doctests
0.0.4
- moved from httplib to pycurl
* pycurl was chosen because of its https/proxy support and
that it's thread-safe.
0.0.3 Wed May 11 11:03:58 PDT 2011
- fix escape username/password
- fix error handling
- cleanup doctests
0.0.2 Fri Aug 20 17:25:25 PDT 2010
- fix download link
0.0.1 Initial Release