1 Star 0 Fork 2

华为浏览器/GiaoToneServer 充电提示音

forked from Bave/GiaoToneServer 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
push_repo.py 1.05 KB
一键复制 编辑 原始数据 按行查看 历史
bavelee 提交于 2020-10-05 01:31 . Update:20201005
# -*- coding: UTF-8 -*-
import os, json, codecs, time
data = []
os.chdir('sound')
categories = os.listdir('.')
categories.sort()
for category in categories:
category_name = os.path.splitext(category)[0].split('_')[-1]
sounds = os.listdir('./' + category)
sounds.sort()
for sound_file in sounds:
name = os.path.splitext(sound_file)[0].split('_')[-1]
url = "https://imbavelee.coding.net/p/GiaoTone/d/giao-tone-server/git/raw/master/sound/" + category + '/' + sound_file
# item = {'name' : category_name + '|' + name, 'url' : url, 'category' : category_name}
item = {'name' : name, 'url' : url, 'category' : category_name}
data.append(item)
list = {"list" : data}
file_name = '../data.json'
with codecs.open(file_name, 'w', encoding='utf-8') as file_obj:
file_obj.write(json.dumps(list).encode('utf-8').decode("unicode_escape"))
os.chdir('..')
t = time.strftime("%Y%m%d", time.localtime())
os.system("git add .")
os.system('git commit -m Update:' + t)
os.system("git push gitee master")
os.system("git push coding master")
os.system("git push github master")
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/nmrs/giao-tone-server.git
git@gitee.com:nmrs/giao-tone-server.git
nmrs
giao-tone-server
GiaoToneServer 充电提示音
master

搜索帮助