VPS参考测评推荐
专注分享VPS主机优惠信息
衡天云优惠活动
华纳云优惠活动
荫云优惠活动

用 Python 写了一个搭配 AutoRclone 和 gclone 的小脚本

主机参考:VPS测评参考推荐/专注分享VPS服务器优惠信息!若您是商家可以在本站进行投稿,查看详情!此外我们还提供软文收录、PayPal代付、广告赞助等服务,查看详情!
我们发布的部分优惠活动文章可能存在时效性,购买时建议在本站搜索商家名称可查看相关文章充分了解该商家!若非中文页面可使用Edge浏览器同步翻译!PayPal代付/收录合作

自学了 Python 几天,一直想亲自动手实践一番,于是写了一个与字符串提取有关的小脚本,与 AutoRclonegclone 搭配食用,提取 accounts 目录on 文件的文件名和邮箱,便于查询和添加到 Google groups
使用前请先安装 Python3

  1. import re
  2. import sys
  3. import os,glob
  4. # 定义目录:目录下有多个文件需要处理,为 accounts 目录的路径,例如: path = ‘D://AutoRclone//accounts’
  5. path = ‘path//to//your//accounts’
  6. # 定义输出文件,路径可自定义,例如 fout = open(“D://AutoRclone//accounts//res.txt”, ‘w’)
  7. fout = open(“res.txt”, ‘w’)
  8. os.chdir(path)
  9. fout.write(“用户名和邮箱(便于查询)n”)
  10. for filename in os.listdir() :
  11.     fs = open(filename, ‘r+’)
  12.     fout.write(“文件名:” + filename + ‘n’)
  13.     for line in fs.readlines():
  14.         mylist_1 = line.split(“:”)
  15.         if mylist_1[0] == ”  “client_email”” :
  16.             mylist_2 = mylist_1[1].split(“””)
  17.             fout.write(mylist_2[1] + ‘n’)
  18. fout.write(“nn”)
  19. fout.write(“邮箱(便于添加到 Google group)n”)
  20. for filename in os.listdir() :
  21.     fs = open(filename, ‘r+’)
  22.     for line in fs.readlines():
  23.         mylist_1 = line.split(“:”)
  24.         if mylist_1[0] == ”  “client_email”” :
  25.             mylist_2 = mylist_1[1].split(“””)
  26.             fout.write(mylist_2[1] + ‘n’)
  27. fout.write(‘n’)
  28. fout.close()

复制代码

项目地址https://github.com/Sheldonsix/A-python-scrgclone
参考教程https://blog.csdn.net/lavorange/article/details/41647091

各路大神回复

注册: 此贴必火

Sheldonliu: 感谢分享

这几篇文章你可能也喜欢:

本文由主机参考刊发,转载请注明:用 Python 写了一个搭配 AutoRclone 和 gclone 的小脚本 https://zhujicankao.com/16813.html

【腾讯云】领8888元采购礼包,抢爆款云服务器 每月 9元起,个人开发者加享折上折!
打赏
转载请注明原文链接:主机参考 » 用 Python 写了一个搭配 AutoRclone 和 gclone 的小脚本
主机参考仅做资料收集,不对商家任何信息及交易做信用担保,购买前请注意风险,有交易纠纷请自行解决!请查阅:特别声明

评论 抢沙发

评论前必须登录!