1 Star 0 Fork 0

leegean/pixez-flutter

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
comment_emoji2map.py 549 Bytes
一键复制 编辑 原始数据 按行查看 历史
perol 提交于 2022-01-02 15:00 . pixiv emojis fetcher and assets
from bs4 import BeautifulSoup
import urllib.request
import re
soup = BeautifulSoup(open("comment_element.html"))
d = {}
for tag in soup.find_all(["button","emoji-mart-emoji"]):
s = tag.find("span")["style"]
pattern = re.compile(r'http[s]?://(?:[a-zA-Z]|[0-9]|[$-_@.&+]|[!*\(\),]|(?:%[0-9a-fA-F][0-9a-fA-F]))+')
k = tag['aria-label']
url = re.findall(pattern,s)[0]
print(k)
print(url.split("/")[-1])
# urllib.request.urlretrieve(url, "./emojis/" + url.split("/")[-1]) //下载逻辑
d[k] = url.split("/")[-1]
print(d)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/leegean/pixez-flutter.git
git@gitee.com:leegean/pixez-flutter.git
leegean
pixez-flutter
pixez-flutter
master

搜索帮助