15158846557 在线咨询 在线咨询
15158846557 在线咨询
所在位置: 首页 > 营销资讯 > 网站运营 > Python制作表情包的学习网站收集

Python制作表情包的学习网站收集

时间:2023-07-23 13:12:01 | 来源:网站运营

时间:2023-07-23 13:12:01 来源:网站运营

Python制作表情包的学习网站收集:(41条消息) Python | 自动生成表情包,从此斗图无敌手!_杭州小胖的博客-CSDN博客




(41条消息) Python爬虫爬取表情包+Autojs微信自动导入表情包脚本(附源码)_沉默且无语99的博客-CSDN博客




(41条消息) Python20行代码爬取搞笑图片—拯救你的不开心_Thinyu Xia的博客-CSDN博客_python图片搞笑




Python 表情包 - Bing images




(41条消息) 教你用Python画简单的表情包(Turtle库的应用)_小桃在改bug的博客-CSDN博客_用python做表情包




只要3步,菜鸟也能用Python做个逗逼的表情包 - 本站 (zhihu.com)







import randomimport timefrom bs4 import BeautifulSoupimport requestsimport lxml.etreeimport ospage_n = int(input('请输入你需要爬取的网页数量'))for i in range(page_n): url_bqb =f'https://www.fabiaoqing.com/bqb/lists/type/hot/page/{i}.html' response = requests.get(url_bqb) html_parser = lxml.etree.HTMLParser() html = lxml.etree.fromstring(response.text,parser = html_parser) #将返回的字符串类型返回html进行解析 bqb_title = html.xpath("//div[@class ='bqppdiv']/p/text()") bqb_pic = html.xpath("//div[@class ='bqppdiv']/img/@data-original") print(bqb_pic) print(bqb_title)if not os.path.exists('bqb_pic'): os.mkdir('bqb_pic')for title,pic in zip(bqb_title,bqb_pic): title = title.replace("/","-").replace(":","").replace("?","") pic_stream = requests.get(pic,stream=True) with open(os.path.join('bqb_pic',title + '.jpg'),'wb+') as writer: writer.write(pic_stream.raw.read()) print(f'info{title}.jpg下载成功') time.sleep(random.uniform(0.1,0.4))

关键词:学习,收集,表情

74
73
25
news

版权所有© 亿企邦 1997-2025 保留一切法律许可权利。

为了最佳展示效果,本站不支持IE9及以下版本的浏览器,建议您使用谷歌Chrome浏览器。 点击下载Chrome浏览器
关闭