35def response(resp):
36 search_res = resp.json()
37 results = []
38
39 for item in search_res.get('videos', []):
40
41 results.append(
42 {
43 "title": item['video_name'],
44 "url": 'https://www.bitchute.com/video/' + item['video_id'],
45 "content": html_to_text(item['description']),
46 "author": item['channel']['channel_name'],
47 "publishedDate": datetime.strptime(item["date_published"], "%Y-%m-%dT%H:%M:%S.%fZ"),
48 "length": item['duration'],
49 "views": item['view_count'],
50 "thumbnail": item['thumbnail_url'],
51 "iframe_src": 'https://www.bitchute.com/embed/' + item['video_id'],
52 "template": "videos.html",
53 }
54 )
55
56 return results