aboutsummaryrefslogtreecommitdiffstats
path: root/gsxws.py
diff options
context:
space:
mode:
Diffstat (limited to 'gsxws.py')
-rwxr-xr-xgsxws.py10
1 files changed, 10 insertions, 0 deletions
diff --git a/gsxws.py b/gsxws.py
index 64a3c47..2a1c490 100755
--- a/gsxws.py
+++ b/gsxws.py
@@ -204,6 +204,16 @@ class GsxObject(object):
return rd
+class Content(GsxObject):
+ def fetch_image(self, url):
+ '''
+ The Fetch Image API allows users to get the image file from GSX,
+ for the content articles, using the image URL.
+ The image URLs will be obtained from the image html tags in the data from all content APIs.
+ '''
+ dt = self._make_type('ns3:fetchImageRequestType')
+ dt.imageRequest = {'imageUrl': url}
+ return self.submit('FetchImage', dt, 'contentResponse')
class CompTIA(object):
'''