» 您尚未登录:请 登录 | 注册 | 标签 | 帮助 | 小黑屋 |


发新话题
打印

[其他] rarbg超过26万磁力打包

posted by wap, platform: MAC OS X
感谢分享,非常好的资源

让chatgpt写了一个脚本,可以按需对这个txt文档搜索,欢迎使用

# See PyCharm help at https://www.jetbrains.com/help/pycharm/
# 就是楼主下载解压后的文件
input_file = "/Users/xxxx/Downloads/everything.txt"
# 定义要输出的文本文件名
output_file = "output.txt"
# 定义要搜索的关键字列表
keywords = ["godfather","2160"]

# 创建一个空集合,用于存储同时包含所有关键字的行
results = set()

# 打开要搜索的文本文件
with open(input_file, "r" as input_file:
    # 遍历每一行
    for line in input_file:
        # 将行转换为小写
        line_lower = line.lower()

        # 创建一个布尔变量,用于标记是否所有关键字都在行中出现
        found_all = True
        # 遍历每一个关键字
        for keyword in keywords:
            # 如果关键字不在行中出现
            if keyword not in line_lower:
                # 将布尔变量设为False,并跳出内层循环
                found_all = False
                break
        # 如果布尔变量为True,说明所有关键字都在行中出现
        if found_all:
            # 将行添加到结果集合中
            results.add(line)
            print(line)

# 打开要输出的文本文件
with open(output_file, "w" as output_file:
    # 遍历结果集合中的每一行
    for line in results:
        # 将行写入输出文件,并添加换行符
        output_file.write(line + "\n"


TOP

发新话题
     
官方公众号及微博