tiancaizcx 发表于 2022-8-1 21:56:15

如何生成其他电脑上可以使用的exe文件

如题啊,我刚看了老乌龟的python视频,然后在论坛里面找到了一个爬虫小程序
import requests,re
headers={'User-Agent':'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:102.0) Gecko/20100101 Firefox/102.0'}
url=requests.get(f'https://kuwo.cn/api/v1/www/music/playUrl?mid='+re.findall('[\d]*',input('请输入酷我音乐歌曲网址:'))[-2]).json()['data']['url']
with open(input('请输入音乐名:')+'.mp3','wb') as f:
    f.write(requests.get(url).content)
    print('下载成功!')

然后呢,我自己使用可以的
我怎么样可以把这个爬虫生成为exe文件给我朋友用呢?

liuzhengyuan 发表于 2022-8-2 09:50:02

https://fishc.com.cn/thread-117775-1-1.html

wp231957 发表于 2022-8-2 10:10:06

可以是可以,但是爬虫具有时效性,可能过一段时间,你朋友就用不了了
页: [1]
查看完整版本: 如何生成其他电脑上可以使用的exe文件