Моя проблема в том, что я не знаю, как работать с результатом поиска картинки.Я использовал пример, я знаю, как изменить некоторые параметры, но я не знаю, как построить GIF из результата.Код:
import requests
import json
# set the apikey and limit
apikey = "MYKEY" # test value
lmt = 8
# load the user's anonymous ID from cookies or some other disk storage
# anon_id = <from db/cookies>
# ELSE - first time user, grab and store their the anonymous ID
r = requests.get("https://api.tenor.com/v1/anonid?key=%s" % apikey)
if r.status_code == 200:
anon_id = json.loads(r.content)["anon_id"]
# store in db/cookies for re-use later
else:
anon_id = ""
# our test search
search_term = "love"
# get the top 8 GIFs for the search term
r = requests.get(
"https://api.tenor.com/v1/search?q=%s&key=%s&limit=%s&anon_id=%s" %
(search_term, apikey, lmt, anon_id))
if r.status_code == 200:
# load the GIFs using the urls for the smaller GIF sizes
top_8gifs = json.loads(r.content)
print (top_8gifs)
else:
top_8gifs = None
Я хочу скачать файл.Я знаю, что могу сделать это с помощью urllib и request, но проблема в том, что я даже не знаю, что такое top_8gifs.
Надеюсь, кто-нибудь сможет мне помочь.Я жду вашего ответа, спасибо за внимание !!