mirror of
https://github.com/xhlove/GetDanMu.git
synced 2025-12-16 16:15:56 +08:00
25 lines
640 B
Python
25 lines
640 B
Python
#!/usr/bin/env python3.7
|
|
# coding=utf-8
|
|
'''
|
|
# 作者: weimo
|
|
# 创建日期: 2020-01-04 19:14:35
|
|
# 上次编辑时间 : 2020-02-07 17:57:05
|
|
# 一个人的命运啊,当然要靠自我奋斗,但是...
|
|
'''
|
|
|
|
ALLOW_SITES = ["qq", "iqiyi", "youku", "sohu", "mgtv"]
|
|
|
|
qqlive = {
|
|
"User-Agent":"qqlive"
|
|
}
|
|
iqiyiplayer = {
|
|
"User-Agent":"Qiyi List Client PC 7.2.102.1343"
|
|
}
|
|
chrome = {
|
|
"User-Agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36"
|
|
}
|
|
fonts = {
|
|
"微软雅黑":"msyh.ttc",
|
|
"微软雅黑粗体":"msyhbd.ttc",
|
|
"微软雅黑细体":"msyhl.ttc",
|
|
} |