Board logo

标题: [其他] rarbg超过26万磁力打包 [打印本页]

作者: asd316    时间: 2023-6-2 18:04     标题: rarbg超过26万磁力打包

rarbg
Backup of magnets from RARBG

Currently:
clean.py is my Python script for cleaning up magnets post-extraction. I think it might have some finnicky thing going on with the way it fixes two magnets in one line, but it works.
moviesrarbg.txt holds my original post, cleaned up a lot. (117,392)
showsother.txt holds my original post, cleaned up a little. (137,671)
showsrarbg.txt holds my original post, cleaned up a lot. (11,699)
everything.7z holds what i've compiled so far from some of the sources given me (3,459,526)

I'm confident that some of the stuff in everything.7z did not come from RARBG, and that will be my first step to remedy once I get everything in there.
I'm about a fourth of the way done adding to everything.7z. Then I'll filter it and sort it and split it into its relevant categories. Alongside the movies and shows, it also holds porn, music, and games, which will each get new .txt files.
Thanks guys.
以下网址分享:

https://github.com/2004content/rarbg

https://github.com/2004content/rarbg/tree/main/archive

===============================================================================
https://github.com/2004content/r ... e/everything.7z.001
https://github.com/2004content/r ... e/everything.7z.002
……
……
https://github.com/2004content/r ... e/everything.7z.010
作者: FPS狂    时间: 2023-6-2 18:04

这个可以
作者: ataberman    时间: 2023-6-2 18:18

posted by wap, platform: 小米
这个牛哇,下载备用了
作者: DarthVadar    时间: 2023-6-2 20:19

posted by wap, platform: MAC OS X
马克吐温
作者: 龙云天翔    时间: 2023-6-2 20:30

posted by wap, platform: Samsung
牛逼克拉斯
作者: Melas    时间: 2023-6-2 23:44

400M的单个TXT文件,345万个磁链,基本都有标题。

[ 本帖最后由 Melas 于 2023-6-2 23:49 编辑 ]
作者: Alloyo    时间: 2023-6-3 08:09

posted by wap, platform: Chrome
好像当年我还下过17g的射手打包....一晃有十年了吧...
作者: Alloyo    时间: 2023-6-3 08:11

posted by wap, platform: Chrome
好像当年我还下过17g的射手打包....一晃有十年了吧...

300w条
作者: jidatui    时间: 2023-6-3 08:58

400M的TXT文档,厉害
作者: adm_zhan    时间: 2023-6-3 08:59

变成数字档案了
作者: 游戏时间    时间: 2023-6-3 09:16

posted by wap, platform: iPhone
这个txt定期更新也行啊,收费也可以
作者: onerl    时间: 2023-6-3 10:18

posted by wap, platform: Android
马克备用,上次去网站搜种子好像几年前了
作者: 百万杠杆    时间: 2023-6-3 10:59

为什么下完显示压缩包已损坏?
作者: 神器    时间: 2023-6-3 12:46

引用:
原帖由 百万杠杆 于 2023-6-3 10:59 发表
为什么下完显示压缩包已损坏?
从001分卷打开就行了。
作者: NewRoaD    时间: 2023-6-3 13:02

因为有10个包
作者: shen2980    时间: 2023-6-3 13:20

verycd的包以前也下过 这做个索引软件用imdb搜索就好了
作者: achen126    时间: 2023-6-3 14:25

posted by wap, platform: Android
马可,晚上去收藏
作者: shcxujun    时间: 2023-6-3 14:32

posted by wap, platform: Android
马克学习
作者: 鬼冢英吉    时间: 2023-6-3 14:39

posted by wap, platform: iPhone
关键是以后的新片去哪里下
作者: ins    时间: 2023-6-3 15:32

搬运
链接:https://pan.baidu.com/s/1MKIXLWptyXoAkrjJiLaFNA?pwd=i1lo

感谢 对喜欢挑最佳版本的用处就不大
作者: iceliker    时间: 2023-6-3 15:56

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"
作者: ins    时间: 2023-6-3 18:29

引用:
原帖由 iceliker 于 2023-6-3 15:56 发表
posted by wap, platform: MAC OS X
感谢分享,非常好的资源

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

# See PyCharm help at https://www.jetbrains.com/help/pycharm/
# 就是楼主下载解 ...
求教脚本怎么运行
作者: 脆骨    时间: 2023-6-3 19:11

posted by wap, platform: Chrome
mark
作者: MKIII    时间: 2023-6-3 19:15

posted by wap, platform: iPhone
引用:
原帖由 @ins  于 2023-6-3 18:29 发表
求教脚本怎么运行
装个python
作者: 盖茨比兄贵    时间: 2023-6-3 22:56

posted by wap, platform: iPhone
Mark
作者: DarkCrow    时间: 2023-6-3 23:25

记事本打开直接卡死了,感谢LZ,这个很有意义,torrent就是这个站存在的证明
作者: evil84    时间: 2023-6-4 16:23

posted by wap, platform: Android
备份。。。心疼rarbg。
作者: linkwho    时间: 2023-6-5 17:29

posted by wap, platform: Firefox
马克备用
作者: fvdllf    时间: 2023-6-5 18:05

Mark
作者: shen2980    时间: 2023-6-5 18:23

把电影单独分离出来了
大约40000部
作者: 任孝子    时间: 2023-6-5 20:35

马克一下
作者: 长江一号    时间: 2023-6-6 00:25

posted by wap, platform: iPhone
mark
作者: kmp1987    时间: 2023-6-6 08:27

posted by wap, platform: iPhone
400m的txt我那老机子怕不是要冒烟
作者: wizardlg    时间: 2023-6-6 09:53

posted by wap, platform: Chrome
不明觉厉
作者: newaxis    时间: 2023-6-6 11:03

mark等发




欢迎光临 TGFC Lifestyle (http://bbs.tgfcer.com/) Powered by Discuz! 6.0.0