主机参考: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
这几篇文章你可能也喜欢:
- Profitserver,黑色星期五特别优惠,国外便宜免备案VPS云服务器5折,荷兰/新加坡/德国/西班牙机房,KVM虚拟架构,1核1G内存100Mbps带宽不限流量,2.88美元/月
- 87Cloud,阿里云国际版与国内版的区别和性价比分析,国际版注册流程详解,最新阿里云国际版支付方式以及注册教程和方法
- Profitserver,新加坡VPS云服务器5折优惠,KVM虚拟架构,1核心1G内存100Mbps带宽不限流量,34美元/年,支持自定义ISO上传
- 如何更改邮箱域名?如何更改网易邮箱、谷歌邮箱的域名?
- DNS服务器做什么?没有它,网站无法打开
本文由主机参考刊发,转载请注明:用 Python 写了一个搭配 AutoRclone 和 gclone 的小脚本 https://zhujicankao.com/16813.html
评论前必须登录!
注册