We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c3d6378 commit 2d1759eCopy full SHA for 2d1759e
samples/shopping.py
@@ -151,14 +151,16 @@ def using_attributes(opts):
151
api = shopping(debug=opts.debug, appid=opts.appid, config_file=opts.yaml,
152
warnings=True)
153
154
- api.execute('FindProducts', {"ProductID": {'@attrs': {'type': 'ISBN'}, '#text': '0596154488'}})
+ api.execute('FindProducts', {
155
+ "ProductID": {'@attrs': {'type': 'ISBN'},
156
+ '#text': '0596154488'}})
157
158
dump(api, full=False)
159
160
if __name__ == "__main__":
161
(opts, args) = init_options()
- #run(opts)
- #popularSearches(opts)
162
- #categoryInfo(opts)
163
- #with_affiliate_info(opts)
+ run(opts)
+ popularSearches(opts)
164
+ categoryInfo(opts)
165
+ with_affiliate_info(opts)
166
using_attributes(opts)
0 commit comments