欢迎德巴特!
我看到您的代码确实成功地检索了随机图像,这很好。获取图像需要 3 个步骤:
- 获取 GIF 网址。
您正在使用的客户端是giphy_client
使用 Swagger 制作的,因此,您可以像访问任何其他对象一样访问 REST 响应元素,或打印它们。
例如:
>>> print(gif_id.images.downsized.url)
'https://media0.giphy.com/media/l3nWlvtvAFHcDFKXm/giphy-downsized.gif?cid=e1bb72ff5c7dc1c67732476c2e69b2ff'
请注意,当我打印它时,我会得到一个 URL。Gif
您获得的名为的对象gif_id
有一堆 URL,用于下载不同分辨率的 GIF 或 MP4。在这种情况下,我选择了缩小尺寸的 GIF。您可以查看使用检索到的所有元素print(gif_id)
因此,我会将其添加到您的代码中:
gif_url = gif_id.images.downsized.url
- 下载 GIF
现在您有了一个 URL,是时候下载 GIF 了。我将使用 requests 库来执行此操作,如果您的环境中没有,请使用 pip 安装它。似乎您已经尝试过这样做,但出现了错误。
import requests
[...]
with open('test.gif','wb') as f:
f.write(requests.get(url_gif).content)
- 显示 GIF
Python 有很多 GUI 可以做到这一点,或者您甚至可以调用浏览器来显示它。您需要调查哪种 GUI 更适合您的需求。对于这种情况,我将使用此处发布的示例,并进行一些修改,以使用 TKinter 显示 Gif。如果您的 Python 安装中不包含 Tkinter,请安装 Tkinter。
最终代码:
import giphy_client as gc
from giphy_client.rest import ApiException
from random import randint
import requests
from tkinter import *
import time
import os
root = Tk()
api_instance = gc.DefaultApi()
api_key = 'YOUR_OWN_API_KEY'
query = 'art'
fmt = 'gif'
try:
response = api_instance.gifs_search_get(api_key,query,limit=1,offset=randint(1,10),fmt=fmt)
gif_id = response.data[0]
url_gif = gif_id.images.downsized.url
except ApiException:
print("Exception when calling DefaultApi->gifs_search_get: %s\n" % e)
with open('test.gif','wb') as f:
f.write(requests.get(url_gif).content)
frames = []
i = 0
while True: # Add frames until out of range
try:
frames.append(PhotoImage(file='test.gif',format = 'gif -index %i' %(i)))
i = i + 1
except TclError:
break
def update(ind): # Display and loop the GIF
if ind >= len(frames):
ind = 0
frame = frames[ind]
ind += 1
label.configure(image=frame)
root.after(100, update, ind)
label = Label(root)
label.pack()
root.after(0, update, 0)
root.mainloop()
如果您想继续使用该库,请继续学习如何使用 REST API 和Swagger 。giphy_client
如果没有,您可以直接使用requests库发出请求。