-
-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
998e48a
commit 6c8be71
Showing
6 changed files
with
75 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
import requests as r | ||
import os | ||
BQBlist=[] | ||
url= "" | ||
series_name= '' | ||
def imgdl(url, BQBlist): | ||
for i in range(len(BQBlist)): | ||
image = r.get(url+BQBlist[i]).content | ||
try: | ||
with open('BQB/{}/'.format(series_name) + BQBlist[i], 'wb') as f: | ||
f.write(image) | ||
except FileNotFoundError: | ||
os.makedirs('BQB/'+series_name) | ||
with open('BQB/{}/'.format(series_name) + BQBlist[i], 'wb') as f: | ||
f.write(image) | ||
imgdl(url, BQBlist) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,8 +20,22 @@ PR要求:文件夹和文件名字为英文,文件夹内除了图片无任何 | |
|
||
## 更新日志 | ||
|
||
### 2020/4/21 V1.0.1 | ||
|
||
**Valine 1.4.4** | ||
|
||
版本js地址:https://cdn.jsdelivr.net/gh/GamerNoTitle/Valine-Magic@master/js/1.0.1/valine.min.js | ||
|
||
更新了alu系列表情包([#1](https://github.com/GamerNoTitle/Valine-Magic/issues/1)),删除了使用频率较低的系列表情,被删除的表情显示不受影响,仍可继续使用 | ||
|
||
表情包会丢在coding的[仓库](https://gamernotitle.coding.net/p/Valine-BQB1/)里面,本仓库只用于发布新版本 | ||
|
||
修改了python脚本,使得更易使用,加入下载用的python脚本 | ||
|
||
### 2020/4/19 V1.0 | ||
|
||
**基于Valine 1.4.4** | ||
|
||
版本js地址:https://cdn.jsdelivr.net/gh/GamerNoTitle/[email protected]/js/valine.min.js | ||
|
||
启动Valine-Magic项目,将原本Valine的表情替换为B站现有的表情包,加入判断为QQ邮箱则显示QQ头像的功能(参考[https://blog.csdn.net/cungudafa/article/details/104638730](https://blog.csdn.net/cungudafa/article/details/104638730)) | ||
|
Large diffs are not rendered by default.
Oops, something went wrong.