2 Star 0 Fork 0

mengskysama/NexusGet

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
torrent.py 532 Bytes
一键复制 编辑 原始数据 按行查看 历史
fffonion 提交于 2013-10-09 15:24 . minor fix
#coding:utf-8
import config
import os
def announce_change(id) :
with open(config.TORRENT_DIR + id + '.torrent','rb') as f:
torrent_ct = f.read()
tracker = config.MY_TRACKER
pos = torrent_ct.find('announce')
leng = int(torrent_ct[pos + 8:torrent_ct.find(':', pos)])
mod = '%s%d:%s%s' % (torrent_ct[:pos+8], len(tracker), tracker, torrent_ct[pos+11+leng:])
os.remove(config.TORRENT_DIR + id + '.torrent')
with open(config.TORRENT_DIR + id + '.torrent','wb') as f:
f.write(mod)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/mengskysama/NexusGet.git
git@gitee.com:mengskysama/NexusGet.git
mengskysama
NexusGet
NexusGet
master

搜索帮助