主机参考:VPS测评参考推荐/专注分享VPS服务器优惠信息!若您是商家可以在本站进行投稿,查看详情!此外我们还提供软文收录、PayPal代付、广告赞助等服务,查看详情! |
我们发布的部分优惠活动文章可能存在时效性,购买时建议在本站搜索商家名称可查看相关文章充分了解该商家!若非中文页面可使用Edge浏览器同步翻译!PayPal代付/收录合作 |
使用前请先安装 Python3
- import re
- import sys
- import os,glob
- # 定义目录:目录下有多个文件需要处理,为 accounts 目录的路径,例如: path = ‘D://AutoRclone//accounts’
- path = ‘path//to//your//accounts’
- # 定义输出文件,路径可自定义,例如 fout = open(“D://AutoRclone//accounts//res.txt”, ‘w’)
- fout = open(“res.txt”, ‘w’)
- os.chdir(path)
- fout.write(“用户名和邮箱(便于查询)n”)
- for filename in os.listdir() :
- fs = open(filename, ‘r+’)
- fout.write(“文件名:” + filename + ‘n’)
- for line in fs.readlines():
- mylist_1 = line.split(“:”)
- if mylist_1[0] == ” “client_email”” :
- mylist_2 = mylist_1[1].split(“””)
- fout.write(mylist_2[1] + ‘n’)
- fout.write(“nn”)
- fout.write(“邮箱(便于添加到 Google group)n”)
- for filename in os.listdir() :
- fs = open(filename, ‘r+’)
- for line in fs.readlines():
- mylist_1 = line.split(“:”)
- if mylist_1[0] == ” “client_email”” :
- mylist_2 = mylist_1[1].split(“””)
- fout.write(mylist_2[1] + ‘n’)
- fout.write(‘n’)
- fout.close()
项目地址:https://github.com/Sheldonsix/A-python-scrgclone
参考教程:https://blog.csdn.net/lavorange/article/details/41647091
这几篇文章你可能也喜欢:
- UCloud快杰云服务器全球购:国内BGP、中国香港CN2 GIA和美日韩国际线路VPS首年低至37.5元,可选AMD或Intel处理器,期间推荐新用户送1年免费云服务器(2核4G3M)
- 历史上构建zookeeper服务器最方便的方法(推荐)
- ZABBIX 4.04安装文档教程详细信息(基于CentOS 7.6)
- Devops和Devops之间有什么区别?
- Centos7 zabbix3.4邮件报警配置(解决邮件内容为XX的问题。垃圾箱(附件)
本文由主机参考刊发,转载请注明:用 Python 写了一个搭配 AutoRclone 和 gclone 的小脚本 https://zhujicankao.com/16813.html
评论前必须登录!
注册