-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathamazonproduct.py
More file actions
executable file
·702 lines (569 loc) · 27.6 KB
/
amazonproduct.py
File metadata and controls
executable file
·702 lines (569 loc) · 27.6 KB
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
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
# Copyright (C) 2009 Sebastian Rahlf <basti at redtoad dot de>
#
# This program is release under the BSD License. You can find the full text of
# the license in the LICENSE file.
"""
Amazon Product Advertising API
==============================
The Product Advertising API provides programmatic access to Amazon's
product selection and discovery functionality so that developers like you
can advertise Amazon products to monetize your website.
The Product Advertising API helps you advertise Amazon products using
product search and look up capability, product information and features
such as Customer Reviews, Similar Products, Wish Lists and New and Used
listings. You can make money using the Product Advertising API to advertise
Amazon products in conjunction with the Amazon Associates program. Be sure
to join the Amazon Associates program to earn up to 15% in referral fees
when the users you refer to Amazon sites buy qualifying products.
More info can be found at
https://affiliate-program.amazon.com/gp/advertising/api/detail/main.html
Requirements
------------
You need an Amazon Webservice account which comes with an access key and a
secret key.
You'll also need the python module lxml (>=2.1.5) and, if you're using python
2.4, also pycrypto.
License
-------
This program is release under the BSD License. You can find the full text of
the license in the LICENSE file.
"""
__version__ = '0.2.3'
__docformat__ = "restructuredtext en"
from base64 import b64encode
from datetime import datetime, timedelta
try: # make it python2.4 compatible!
from hashlib import sha256
except ImportError:
from Crypto.Hash import SHA256 as sha256
import hmac
import re
import socket
from time import strftime, gmtime
from urlparse import urlsplit
from urllib2 import quote, urlopen, HTTPError
from BeautifulSoup import BeautifulSoup
LOCALES = {
'ca' : 'http://ecs.amazonaws.ca/onca/xml',
'de' : 'http://ecs.amazonaws.de/onca/xml',
'fr' : 'http://ecs.amazonaws.fr/onca/xml',
'jp' : 'http://ecs.amazonaws.jp/onca/xml',
'uk' : 'http://ecs.amazonaws.co.uk/onca/xml',
'us' : 'http://ecs.amazonaws.com/onca/xml',
}
class UnknownLocale (Exception):
"""
Raised when unknown locale is specified.
"""
class AWSError (Exception):
"""
Generic AWS error message.
"""
def __init__(self, code, msg):
self.code = code
self.msg = msg
def __str__(self):
return '%(code)s: %(msg)s' % self.__dict__
class InvalidSearchIndex (Exception):
"""
The value specified for SearchIndex is invalid. Valid values include:
All, Apparel, Automotive, Baby, Beauty, Blended, Books, Classical, DVD,
Electronics, ForeignBooks, HealthPersonalCare, HomeGarden, HomeImprovement,
Jewelry, Kitchen, Magazines, MP3Downloads, Music, MusicTracks,
OfficeProducts, OutdoorLiving, PCHardware, Photo, Shoes, Software,
SoftwareVideoGames, SportingGoods, Tools, Toys, VHS, Video, VideoGames,
Watches
"""
class InvalidResponseGroup (Exception):
"""
The specified ResponseGroup parameter is invalid. Valid response groups for
ItemLookup requests include:
Accessories, AlternateVersions, BrowseNodes, Collections, EditorialReview,
Images, ItemAttributes, ItemIds, Large, ListmaniaLists, Medium,
MerchantItemAttributes, OfferFull, OfferListings, OfferSummary, Offers,
PromotionDetails, PromotionSummary, PromotionalTag, RelatedItems, Request,
Reviews, SalesRank, SearchBins, SearchInside, ShippingCharges,
Similarities, Small, Subjects, Tags, TagsSummary, Tracks, VariationImages,
VariationMatrix, VariationMinimum, VariationOffers, VariationSummary,
Variations.
"""
class InvalidParameterValue (Exception):
"""
The specified ItemId parameter is invalid. Please change this value and
retry your request.
"""
class InvalidListType (Exception):
"""
The value you specified for ListType is invalid. Valid values include:
BabyRegistry, Listmania, WeddingRegistry, WishList.
"""
class NoSimilarityForASIN (Exception):
"""
When you specify multiple items, it is possible for there to be no
intersection of similar items.
"""
class NoExactMatchesFound (Exception):
"""
We did not find any matches for your request.
"""
class TooManyRequests (Exception):
"""
You are submitting requests too quickly and your requests are being
throttled. If this is the case, you need to slow your request rate to one
request per second.
"""
class NotEnoughParameters (Exception):
"""
Your request should have at least one parameter which you did not submit.
"""
class InvalidParameterCombination (Exception):
"""
Your request contained a restricted parameter combination.
"""
INVALID_VALUE_REG = re.compile(
'The value you specified for (?P<parameter>\w+) is invalid.')
INVALID_PARAMETER_VALUE_REG = re.compile('(?P<value>.+?) is not a valid value '
'for (?P<parameter>\w+). Please change this value and retry your request.')
NOSIMILARITIES_REG = re.compile(
'There are no similar items for this ASIN: (?P<ASIN>\w+).')
NOT_ENOUGH_PARAMETERS_REG = re.compile('Your request should have atleast '
'(?P<numer>\d+) of the following parameters: (?P<parameters>[\w ,]+).')
INVALID_PARAMETER_COMBINATION_REG = re.compile(
'Your request contained a restricted parameter combination.'
'\s*(?P<message>\w.*)$') # only the last bit is of interest here
class API (object):
"""
Wrapper class for the Amazon Product Advertising API. You will need both an
AWS access key id and the secret counterpart.
Example::
AWS_KEY = '...'
SECRET_KEY = '...'
api = ProductAdvertisingAPI(AWS_KEY, SECRET_KEY)
root = api.item_lookup('987311264224', IdType='ISBN',
SearchIndex='Books', ResponseGroup='Reviews', ReviewPage=1)
rating = root.Items.Item.CustomerReviews.AverageRating.pyval
total_reviews = root.Items.Item.CustomerReviews.TotalReviews.pyval
review_pages = root.Items.Item.CustomerReviews.TotalReviewPages.pyval
It is possible to use a different module for parsing the XML response. For
instance, you can use ``xml.minidom`` instead of ``lxml`` by defining a
custom result processor::
def minidom_response_parser(fp):
root = parse(fp)
# parse errors
for error in root.getElementsByTagName('Error'):
code = error.getElementsByTagName('Code')[0].firstChild.nodeValue
msg = error.getElementsByTagName('Message')[0].firstChild.nodeValue
raise AWSError(code, msg)
return root
api = API(AWS_KEY, SECRET_KEY, processor=minidom_response_parser)
root = api.item_lookup('0718155157')
print root.toprettyxml()
# ...
Just make sure it raises an ``AWSError`` with the appropriate error code
and message.
"""
VERSION = '2009-11-01' #: supported Amazon API version
REQUESTS_PER_SECOND = 1 #: max requests per second
TIMEOUT = 5 #: timeout in seconds
def __init__(self, access_key_id, secret_access_key,
locale='de', processor=None):
"""
:param access_key_id: AWS access key ID.
:param secret_key_id: AWS secret key.
:param locale: localise results by using one value from ``LOCALES``.
:param processor: result processing function (``None`` if unsure).
"""
self.access_key = access_key_id
self.secret_key = secret_access_key
try:
parts = urlsplit(LOCALES[locale])
self.scheme, self.host, self.path = parts[:3]
except KeyError:
raise UnknownLocale(locale)
#socket.setdefaulttimeout(self.TIMEOUT)
self.last_call = datetime(1970, 1, 1)
self.throttle = timedelta(seconds=1)/self.REQUESTS_PER_SECOND
self.response_processor = processor
def _build_url(self, **qargs):
"""
Builds a signed URL for querying Amazon AWS. This function is based
on code by Adam Cox (found at
http://blog.umlungu.co.uk/blog/2009/jul/12/pyaws-adding-request-authentication/)
"""
# remove empty (=None) parameters
for key, val in qargs.items():
if val is None:
del qargs[key]
if 'AWSAccessKeyId' not in qargs:
qargs['AWSAccessKeyId'] = self.access_key
if 'Service' not in qargs:
qargs['Service'] = 'AWSECommerceService'
# use the version this class was build for by default
if 'Version' not in qargs:
qargs['Version'] = self.VERSION
# add timestamp (this is required when using a signature)
qargs['Timestamp'] = strftime("%Y-%m-%dT%H:%M:%SZ", gmtime())
# create signature
keys = sorted(qargs.keys())
args = '&'.join('%s=%s' % (key, quote(str(qargs[key])))
for key in keys)
msg = 'GET'
msg += '\n' + self.host
msg += '\n' + self.path
msg += '\n' + args.encode('utf-8')
signature = quote(
b64encode(hmac.new(self.secret_key, msg, sha256).digest()))
url = '%s://%s%s?%s&Signature=%s' % (self.scheme, self.host, self.path,
args, signature)
return url
def _call(self, url):
"""
Calls the Amazon Product Advertising API and objectifies the response.
"""
# Be nice and wait for some time
# before submitting the next request
while (datetime.now() - self.last_call) < self.throttle:
pass # Wait for it!
self.last_call = datetime.now()
try:
return urlopen(url)
except HTTPError, e:
if e.code == 503:
raise TooManyRequests
# otherwise re-raise
raise
def _parse(self, fp):
"""
Processes the AWS response (file like object). XML is fed in, some
usable output comes out. It will use a different result_processor if
you have defined one.
"""
if self.response_processor:
return self.response_processor(fp)
tree = BeautifulSoup(fp)
return tree
def item_lookup(self, id, **params):
"""
Given an Item identifier, the ``ItemLookup`` operation returns some or
all of the item attributes, depending on the response group specified
in the request. By default, ``ItemLookup`` returns an item's ``ASIN``,
``DetailPageURL``, ``Manufacturer``, ``ProductGroup``, and ``Title`` of
the item.
``ItemLookup`` supports many response groups, so you can retrieve many
different kinds of product information, called item attributes,
including product reviews, variations, similar products, pricing,
availability, images of products, accessories, and other information.
To look up more than one item at a time, separate the item identifiers
by commas.
"""
try:
url = self._build_url(Operation='ItemLookup', ItemId=id, **params)
fp = self._call(url)
return self._parse(fp)
except AWSError, e:
if (e.code=='AWS.InvalidEnumeratedParameter'
and INVALID_VALUE_REG.search(e.msg).group('parameter')=='SearchIndex'):
raise InvalidSearchIndex(params.get('SearchIndex'))
if e.code=='AWS.InvalidResponseGroup':
raise InvalidResponseGroup(params.get('ResponseGroup'))
# otherwise re-raise exception
raise
def item_search(self, search_index, **params):
"""
The ``ItemSearch`` operation returns items that satisfy the search
criteria, including one or more search indices.
``ItemSearch`` returns up to ten search results at a time. When
``condition`` equals "All," ``ItemSearch`` returns up to three offers
per condition (if they exist), for example, three new, three used,
three refurbished, and three collectible items. Or, for example, if
there are no collectible or refurbished offers, ``ItemSearch`` returns
three new and three used offers.
Because there are thousands of items in each search index,
``ItemSearch`` requires that you specify the value for at least one
parameter in addition to a search index. The additional parameter value
must reference items within the specified search index. For example,
you might specify a browse node (BrowseNode is an ``ItemSearch``
parameter), Harry Potter Books, within the Books product category. You
would not get results, for example, if you specified the search index
to be Automotive and the browse node to be Harry Potter Books. In this
case, the parameter value is not associated with the search index
value.
The ``ItemPage`` parameter enables you to return a specified page of
results. The maximum ``ItemPage`` number that can be returned is 400.
An error is returned if you try to access higher numbered pages. If you
do not include ``ItemPage`` in your request, the first page will be
returned by default. There can be up to ten items per page.
``ItemSearch`` is the operation that is used most often in requests. In
general, when trying to find an item for sale, you use this operation.
"""
try:
url = self._build_url(Operation='ItemSearch',
SearchIndex=search_index, **params)
fp = self._call(url)
return self._parse(fp)
except AWSError, e:
if (e.code=='AWS.InvalidEnumeratedParameter'
and INVALID_VALUE_REG.search(e.msg)):
raise InvalidSearchIndex(search_index)
if e.code=='AWS.InvalidResponseGroup':
raise InvalidResponseGroup(params.get('ResponseGroup'))
# otherwise re-raise exception
raise
def similarity_lookup(self, *ids, **params):
"""
The ``SimilarityLookup`` operation returns up to ten products per page
that are similar to one or more items specified in the request. This
operation is typically used to pique a customer's interest in buying
something similar to what they've already ordered.
If you specify more than one item, ``SimilarityLookup`` returns the
intersection of similar items each item would return separately.
Alternatively, you can use the ``SimilarityType`` parameter to return
the union of items that are similar to any of the specified items. A
maximum of ten similar items are returned; the operation does not
return additional pages of similar items. If there are more than ten
similar items, running the same request can result in different answers
because the ten that are included in the response are picked randomly.
The results are picked randomly only when you specify multiple items
and the results include more than ten similar items.
"""
item_id = ','.join(ids)
try:
url = self._build_url(Operation='SimilarityLookup',
ItemId=item_id, **params)
fp = self._call(url)
return self._parse(fp)
except AWSError, e:
if e.code=='AWS.ECommerceService.NoSimilarities':
asin = NOSIMILARITIES_REG.search(e.msg).group('ASIN')
raise NoSimilarityForASIN(asin)
def list_lookup(self, list_id, list_type, **params):
"""
The ListLookup operation returns, by default, summary information about
a list that you specify in the request. The summary information
includes the:
- Creation date of the list
- Name of the list's creator
The operation returns up to ten sets of summary information per page.
Lists are specified by list type and list ID, which can be found using
ListSearch.
You cannot lookup more than one list at a time in a single request. You
can, however, make a batch request to look for more than one list
simultaneously.
The operation supports the following list types:
- ``BabyRegistry`` - Baby registries contain items that expectant
parents want. Gift givers can find baby registries created on Amazon
or in Babies "R" Us or Toys "R" Us stores.
- ``Listmania`` - Customers can create random groups of items, called
Listmania lists. Listmania lists can be as specific ("Dorm Room
Essentials for Every Freshman") or as general ("The Best Novels of
2005") as customers choose.
- ``WeddingRegistry`` - Wedding registries contain items that a wedding
couple wants.
- ``WishList`` - Wish lists contain items for birthdays, anniversaries
or any other special day. These lists help others know what gifts the
wishlist creator wants.
"""
try:
url = self._build_url(Operation='ListLookup', ListId=list_id,
ListType=list_type, **params)
fp = self._call(url)
return self._parse(fp)
except AWSError, e:
if (e.code=='AWS.InvalidEnumeratedParameter'
and INVALID_VALUE_REG.search(e.msg).group('parameter')=='ListType'):
raise InvalidListType(params.get('ListType'))
# otherwise re-raise exception
raise
def list_search(self, list_type, **params):
"""
Given a customer name or e-mail address, the ``ListSearch`` operation
returns the associated list ID(s) but not the list items. To find
those, use the list ID returned by ``ListSearch`` with ``ListLookup``.
Specifying a full name or just a first or last name in the request
typically returns multiple lists belonging to different people. Using
e-mail as the identifier produces more filtered results.
For ``Wishlists`` and ``WeddingRegistry`` list types, you must specify
one or more of the following parameters:
- e-mail
- FirstName
- LastName
- Name
For the ``BabyRegistry`` list type, you must specify one or more of the
following parameters:
- FirstName
- LastName
You cannot, for example, retrieve a ``BabyRegistry`` by specifying an
e-mail address or Name.
"""
try:
url = self._build_url(Operation='ListSearch',
ListType=list_type, **params)
fp = self._call(url)
return self._parse(fp)
except AWSError, e:
if (e.code=='AWS.InvalidEnumeratedParameter'
and INVALID_VALUE_REG.search(e.msg).group('parameter')=='ListType'):
raise InvalidListType(list_type)
if e.code=='AWS.MinimumParameterRequirement':
p = NOT_ENOUGH_PARAMETERS_REG.search(e.msg).group('parameters')
raise NotEnoughParameters(p)
if e.code=='AWS.ECommerceService.NoExactMatches':
raise NoExactMatchesFound
# otherwise re-raise exception
raise
def help(self, about, help_type, response_group=None, **params):
"""
The Help operation provides information about Product Advertising API
operations and response groups. For operations, Help lists required
and optional request parameters, as well as default and optional
response groups the operation can use. For response groups, Help lists
the operations that can use the response group as well as the response
tags returned by the response group in the XML response.
The Help operation is not often used in customer applications. It can,
however, be used to help the developer in the following ways:
* Provide contextual help in an interactive development environment
(IDE) for developers
* Automate documentation creation as part of a developer's toolkit.
:param about: Specifies the operation or response group about which
you want more information. All Product Advertising API operations, all
Product Advertising API response groups
:param help_type: Specifies whether the help topic is an operation or
response group. HelpType and About values must both be operations or
response groups, not a mixture of the two.
Valid Values: ``Operation``, ``ResponseGroup``
:param response_group: Specifies the types of values to return. You
can specify multiple response groups in one request by separating them
with commas.
"""
try:
url = self._build_url(Operation='Help', About=about,
HelpType=help_type, ResponseGroup=response_group, **params)
fp = self._call(url)
return self._parse(fp)
except AWSError, e:
m = INVALID_VALUE_REG.search(e.msg)
if e.code=='AWS.InvalidEnumeratedParameter':
raise ValueError(m.group('parameter'))
# otherwise re-raise exception
raise
def browse_node_lookup(self, browse_node_id, response_group=None, **params):
"""
Given a browse node ID, ``BrowseNodeLookup`` returns the specified
browse node's name, children, and ancestors. The names and browse node
IDs of the children and ancestor browse nodes are also returned.
``BrowseNodeLookup`` enables you to traverse the browse node hierarchy
to find a browse node.
As you traverse down the hierarchy, you refine your search and limit
the number of items returned. For example, you might traverse the
following hierarchy: ``DVD>Used DVDs>Kids and Family``, to select out
of all the DVDs offered by Amazon only those that are appropriate for
family viewing. Returning the items associated with ``Kids and Family``
produces a much more targeted result than a search based at the level
of ``Used DVDs``.
Alternatively, by traversing up the browse node tree, you can
determine the root category of an item. You might do that, for
example, to return the top seller of the root product category using
the ``TopSeller`` response group in an ``ItemSearch`` request.
You can use ``BrowseNodeLookup`` iteratively to navigate through the
browse node hierarchy to reach the node that most appropriately suits
your search. Then you can use the browse node ID in an ItemSearch
request. This response would be far more targeted than, for example,
searching through all of the browse nodes in a search index.
:param browse_node_id: A positive integer assigned by Amazon that
uniquely identifies a product category.
Default: None
Valid Values: A positive integer.
:type browse_node_id: str
:param response_group: Specifies the types of values to return. You can
specify multiple response groups in one request by separating them
with commas.
Default: ``BrowseNodeInfo``
Valid Values: ``MostGifted``, ``NewReleases``, ``MostWishedFor``,
``TopSellers``
"""
try:
url = self._build_url(Operation='BrowseNodeLookup',
BrowseNodeId=browse_node_id, ResponseGroup=response_group,
**params)
fp = self._call(url)
return self._parse(fp)
except AWSError, e:
if e.code=='AWS.InvalidResponseGroup':
raise InvalidResponseGroup(params.get('ResponseGroup'))
# otherwise re-raise exception
raise
class ResultPaginator (object):
"""
Wrapper class for paginated results. This class will call the passed
function iteratively until either the specified limit is reached or all
result pages are fetched.
A small example fetching reviews for a book::
api = API(AWS_KEY, SECRET_KEY)
paginator = ResultPaginator('ReviewPage',
'//aws:Items/aws:Request/aws:ItemLookupRequest/aws:ReviewPage',
'//aws:Items/aws:Item/aws:CustomerReviews/aws:TotalReviewPages',
'//aws:Items/aws:Item/aws:CustomerReviews/aws:TotalReviews')
for root in paginator(api.item_lookup, id=isbn, IdType='ISBN',
SearchIndex='Books', ResponseGroup='Reviews'):
...
"""
def __init__(self, counter, current_page, total_pages, total_results,
limit=None, nspace=None):
"""
:param counter: counter variable passed to AWS.
:param current_page: XPath expression locating current paginator page.
:param total_pages: XPath expression locating total number of pages.
:param total_results: XPath expression locating total number of results.
:param limit: limit fetched pages to this amount.
:param nspace: used XML name space.
"""
self.counter = counter
self.current_page_xpath = current_page
self.total_pages_xpath = total_pages
self.total_results_xpath = total_results
self.limit = limit
self.nspace = nspace
def __call__(self, fun, *args, **kwargs):
"""
Iterate over all paginated results of ``fun``.
"""
current_page = 0
total_pages = 1
kwargs[self.counter] = kwargs.get(self.counter, 1)
while (current_page < total_pages
and (self.limit is None or current_page < self.limit)):
root = fun(*args, **kwargs)
if self.nspace is None:
self.nspace = root.nsmap.get(None, '')
current_page = self._get_current_page_numer(root)
total_results = self._get_total_results(root)
total_pages = self._get_total_page_numer(root)
yield root
kwargs[self.counter] += 1
def _get_total_page_numer(self, root):
"""
Get total number of paginator pages.
"""
try:
return root.xpath(self.total_pages_xpath,
namespaces={'aws' : self.nspace})[0].pyval
except IndexError:
return None
def _get_current_page_numer(self, root):
"""
Get number of current paginator page.
"""
try:
return root.xpath(self.current_page_xpath,
namespaces={'aws' : self.nspace})[0].pyval
except IndexError:
return None
def _get_total_results(self, root):
"""
Get total number of results.
"""
try:
return root.xpath(self.total_results_xpath,
namespaces={'aws' : self.nspace})
except IndexError:
return None