def test_ecma_unscape(self): self.assertEqual(utils.ecma_unescape('text%20with%20space'), 'text with space') self.assertEqual(utils.ecma_unescape('text using %xx: %F3'), u'text using %xx: ó') self.assertEqual( utils.ecma_unescape('text using %u: %u5409, %u4E16%u754c'), u'text using %u: 吉, 世界')
def response(resp): results = [] matches = modelexport_re.search(resp.text) if matches is None: return results match = matches.group(1) model_export = loads(match) if 'legend' not in model_export: return results legend = model_export['legend'] # handle empty page if not legend or not legend[0]: return results for index in legend: photo = model_export['main'][index[0]][int( index[1])][index[2]][index[3]][int(index[4])] author = ecma_unescape(photo.get('realname', '')) source = ecma_unescape(photo.get('username', '')) + ' @ Flickr' title = ecma_unescape(photo.get('title', '')) content = html_to_text(ecma_unescape(photo.get('description', ''))) img_src = None # From the biggest to the lowest format for image_size in image_sizes: if image_size in photo['sizes']: img_src = photo['sizes'][image_size]['url'] img_format = 'jpg ' \ + str(photo['sizes'][image_size]['width']) \ + 'x' \ + str(photo['sizes'][image_size]['height']) break if not img_src: logger.debug('cannot find valid image size: {0}'.format( repr(photo))) continue # For a bigger thumbnail, keep only the url_z, not the url_n if 'n' in photo['sizes']: thumbnail_src = photo['sizes']['n']['url'] elif 'z' in photo['sizes']: thumbnail_src = photo['sizes']['z']['url'] else: thumbnail_src = img_src if 'ownerNsid' not in photo: # should not happen, disowned photo? Show it anyway url = img_src else: url = build_flickr_url(photo['ownerNsid'], photo['id']) results.append({ 'url': url, 'title': title, 'img_src': img_src, 'thumbnail_src': thumbnail_src, 'content': content, 'author': author, 'source': source, 'img_format': img_format, 'template': 'images.html' }) return results