2 Star 16 Fork 6

huihui486/B站直播弹幕姬

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
AboutInfo.py 1.62 KB
一键复制 编辑 原始数据 按行查看 历史
huihui486 提交于 2022-02-19 21:58 . try to all platform
from preparation import *
import subprocess
class AboutInfo():
def __init__(self):
self.path = os.path.join("config", "关于.txt")
self.info = '# 声明:\n'\
'此软件只做学习交流,禁止商用\n\n'\
'# 项目/资料地址:\n'\
'B站(https://www.bilibili.com/video/BV1LP4y177sa)\n'\
'gitee(https://gitee.com/huihui486/bilibili-danmuji)\n'\
'github(https://github.com/huihui486/bilibili-danmuji)\n'\
'CSDN(https://blog.csdn.net/Sharp486/article/details/122516917)\n\n'\
'# 开发人员信息:\n'\
'B站:@了不起的灰灰(https://space.bilibili.com/12910396)\n'\
'gitee:@huihui486(https://gitee.com/huihui486)\n'\
'github:@huihui486(https://github.com/huihui486)\n'\
'CSDN:@Sharp486(https://blog.csdn.net/Sharp486)'
self.__addInfo()
def __addInfo(self):
if not os.path.exists(self.path):
with open(self.path,'w') as f:
f.write(self.info)
def show(self):
self.__addInfo()
# 获取系统类型,根据类型用对于语句打开应用
# 注:作者在64位win10系统下测试为"win32",其他情况未测试,请自行测试
sysType = sys.platform
if sysType == 'win32':
subprocess.call(['start', self.path],shell=True)
else:
opener = "open" if sysType == "darwin" else "xdg-open"
subprocess.call([opener, self.path])
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/huihui486/bilibili-danmuji.git
[email protected]:huihui486/bilibili-danmuji.git
huihui486
bilibili-danmuji
B站直播弹幕姬
master

搜索帮助