92 """Takes parsed JSON from the API server and turns it into a :py:obj:`dict`
95 Attributes `(class Match) <https://github.com/TinEye/pytineye/blob/main/pytineye/api.py>`__
97 - `image_url`, link to the result image.
98 - `domain`, domain this result was found on.
99 - `score`, a number (0 to 100) that indicates how closely the images match.
100 - `width`, image width in pixels.
101 - `height`, image height in pixels.
102 - `size`, image area in pixels.
103 - `format`, image format.
104 - `filesize`, image size in bytes.
105 - `overlay`, overlay URL.
106 - `tags`, whether this match belongs to a collection or stock domain.
108 - `backlinks`, a list of Backlink objects pointing to the original websites
109 and image URLs. List items are instances of :py:obj:`dict`, (`Backlink
110 <https://github.com/TinEye/pytineye/blob/main/pytineye/api.py>`__):
112 - `url`, the image URL to the image.
113 - `backlink`, the original website URL.
114 - `crawl_date`, the date the image was crawled.
123 if "backlinks" in match_json:
125 for backlink_json
in match_json[
"backlinks"]:
126 if not isinstance(backlink_json, dict):
129 crawl_date = backlink_json.get(
"crawl_date")
131 crawl_date = datetime.strptime(crawl_date,
'%Y-%m-%d')
133 crawl_date = datetime.min
137 'url': backlink_json.get(
"url"),
138 'backlink': backlink_json.get(
"backlink"),
139 'crawl_date': crawl_date,
140 'image_name': backlink_json.get(
"image_name"),
145 'image_url': match_json.get(
"image_url"),
146 'domain': match_json.get(
"domain"),
147 'score': match_json.get(
"score"),
148 'width': match_json.get(
"width"),
149 'height': match_json.get(
"height"),
150 'size': match_json.get(
"size"),
151 'image_format': match_json.get(
"format"),
152 'filesize': match_json.get(
"filesize"),
153 'overlay': match_json.get(
"overlay"),
154 'tags': match_json.get(
"tags"),
155 'backlinks': backlinks,
160 """Parse HTTP response from TinEye."""
164 if resp.status_code
in (400, 422):
165 json_data = resp.json()
166 suggestions = json_data.get(
'suggestions', {})
167 message = f
'HTTP Status Code: {resp.status_code}'
169 if resp.status_code == 422:
170 s_key = suggestions.get(
'key',
'')
171 if s_key ==
"Invalid image URL":
173 message = FORMAT_NOT_SUPPORTED
174 elif s_key ==
'NO_SIGNATURE_ERROR':
176 message = NO_SIGNATURE_ERROR
177 elif s_key ==
'Download Error':
179 message = DOWNLOAD_ERROR
181 logger.warning(
"Unknown suggestion key encountered: %s", s_key)
183 description = suggestions.get(
'description')
184 if isinstance(description, list):
185 message =
','.join(description)
193 resp.raise_for_status()
195 json_data = resp.json()
197 for match_json
in json_data[
'matches']:
200 if not tineye_match[
'backlinks']:
203 backlink = tineye_match[
'backlinks'][0]
206 'template':
'images.html',
207 'url': backlink[
'backlink'],
208 'thumbnail_src': tineye_match[
'image_url'],
209 'source': backlink[
'url'],
210 'title': backlink[
'image_name'],
211 'img_src': backlink[
'url'],
212 'format': tineye_match[
'image_format'],
213 'width': tineye_match[
'width'],
214 'height': tineye_match[
'height'],
215 'publishedDate': backlink[
'crawl_date'],
221 number_of_results = json_data.get(
'num_matches')
222 if number_of_results:
223 results.append({
'number_of_results': number_of_results})