论如何用pygame加载fishclogo
fishc/static/image/common/logo.png首先爬虫:
from requests import get
a=get('https://fishc.com.cn/static/image/common/logo.png').content
保存:
with open('1.png', 'wb')as f:f.write(a)
Pygame:
import pygame
pygame.init()
img=pygame.image.load('1.png')
Delete:
from os import remove
remove('1.png')
Res:
return img
All
from requests import get
a=get('https://fishc.com.cn/static/image/common/logo.png').content
with open('1.png', 'wb')as f:f.write(a)
import pygame
pygame.init()
img=pygame.image.load('1.png')
from os import remove
remove('1.png')
return img
这是小号? yinda_peng 发表于 2023-4-30 19:31
这是小号?
歌者的小号
页:
[1]