Code Monkey home page Code Monkey logo

flexget-nexusphp's Introduction

flexget-nexusphp

Flexget插件,增强对NexusPHP的过滤
过滤条件包括种子优惠信息(free等)、做种者情况、下载者情况


更多插件:IO过高时停止任务插件

免责声明

本插件会爬取details.php页面,请将参数限制到合理的范围,减轻对服务器负担
本插件已尽量减轻服务器负担,因本插件造成账号封禁等损失,请自行承担后果
建议 将RSS条目限制在20条以内,将Flexget运行频率设置在10分钟以上。 如果不想对人数进行过滤,不建议设置seeders和leechers参数。

运行环境

安装插件

  1. 下载插件 nexusphp.py
  2. 在Flexget配置文件夹下新建plugins文件夹,例如:
~/.flexget/plugins/  # Linux
C:\Users\<YOURUSER>\flexget\plugins\  # Windows

再次注意plugins文件夹和config.yml处在同一级目录下,例如:

/.flxget
  ┕━config.yml
  ┕━plugins
    ┕━nexusphp.py
  1. 将插件拷贝至plugins
  2. 若启用了Web-UI或守护进程,则重启flexget重新加载配置

使用

  1. 编辑flexget配置文件,添加nexusphp选项,按照需要进行配置

简单配置

nexusphp:
  cookie: 'a=xxx; b=xxx'  # 必填
  discount:  # 优惠信息 选填
    - free

完整配置

nexusphp:
  cookie: 'a=xxx; b=xxx'  # 必填
  discount:  # 优惠信息 选填
    - free
    - 2x
    - 2x50%
    - 2xfree
    - 50%
    - 30%
  seeders:  # 做种情况 选填(兼容性较差不建议使用)
    min: 1
    max: 2
  leechers:  # 下载情况 选填(兼容性较差不建议使用)
    min: 10
    max: 100
    max_complete: 0.8
  left-time: 1 hours  # 优惠剩余时间 选填
  hr: no  # 是否下载HR 选填
  adapter:  # 站点适配器,自行适配站点,参考最下方常见问题 选填
    free: free
    2x: twoup
    2xfree: twoupfree
    30%: thirtypercent
    50%: halfdown
    2x50%: twouphalfdown
  comment: no  # 在torrent注释中添加详情链接 选填
  user-agent: xxxxxx  # 浏览器标识 选填
  remember: yes  # 记住优惠信息 选填 请勿随意设置
  1. 为rss的other_fields字段添加link属性
rss:
  url: https://www.example.com/rss
  other_fields: [link]
  1. 启动flexget
flexget execute
# 如果仅仅想要测试而不下载,可以添加 --test 参数
flexget --test execute

详细配置

  • cookie 网站cookie 必须填写
  • discount 优惠类型 默认不限制优惠类型。
    列表类型,Flexget会只下载含有列表内优惠类型的种子。
    有效值:free 2x 2x50% 2xfree 50% 30%
    注意:x为英文字母
  • seeders 做种情况 做种人数超出范围的,Flexget将不会下载
    • 注意:此选项兼容性较差
    • min 最小做种人数。整数,默认不限制
    • max 最大做种人数。整数,默认不限制
  • leechers 下载情况 下载人数超出范围的,Flexget将不会下载
    • 注意:此选项兼容性较差
    • min 最小下载人数。整数,默认不限制
    • max 最大下载人数。整数,默认不限制
  • max_complete 下载者中最大完成度 超过这个值将不下载。 小数,范围0-1.0,默认为1
  • left-time 最小剩余时间 当实际剩余时间小于设置的值,则不下载。 时间字符串,例如 3 hours10 minutes1 days。 例如设置1 hours,优惠剩余59分钟,那么就不下载。默认不限制
  • hr 是否下载HR种 默认 yes
    1. yes 会下载HR,即不过滤HR
    2. no 不下载HR
  • adapter 站点适配器 站点不兼容时可自定义,具体参考 判断站点以及适配站点
  • comment 在torrent注释中添加详情链接
    1. yes 在torrent注释中添加详情链接,方便在BT客户端查看
    2. no 默认值
  • user-agent 浏览器标识 默认为Google浏览器
  • remember 记住优惠信息 不建议设置为 no,因为会增大站点压力。默认 yes

完整配置示例

免费热种

tasks:
  my-free-task:
    rss:
      url: https://www.example.com/rss.xml
      other_fields:
        - link
    nexusphp:
      cookie: 'a=xxx; b=xxx'
      discount:
        - free
        - 2xfree
    download: ~/flexget/torrents/

热种

tasks:
  my-hot-task:
    rss:
      url: https://www.example.com/rss.xml
      other_fields:
        - link
    nexusphp:
      cookie: 'a=xxx; b=xxx'
      seeders:
        min: 1
      leechers:
        min: 20
    download: ~/flexget/torrents/

避免HR

tasks:
  no-hr-task:
    rss:
      url: https://www.example.com/rss.xml
      other_fields:
        - link
    nexusphp:
      cookie: 'a=xxx; b=xxx'
      hr: no
    download: ~/flexget/torrents/

常见问题

我的python版本是2.X如何使用?

本插件只支持Python 3.X或Python 2.7版本,其他版本不可用,请卸载Flexget后使用Python3重装

pip uninstall flexget  # 卸载
pip3 install flexget  # 使用pip3安装

目前支持哪些站点

如果站点禁止使用脚本爬虫,应立即停止使用本插件

  • 任何未修改关键结构的nexusphp站点
  • PTH
  • MT(站点安全性较高,ip或浏览器变动可能无法访问)
  • OB
  • Sky
  • School
  • U2
  • CHD
  • TJU(禁止脚本,请勿使用)
  • SSD
  • OpenCD
  • TTG(不支持人数筛选)
  • FRDS
  • Dream
  • HDC
  • LemonHD

如何判断站点是否支持

判断站点以及适配站点

确认cookie正确,还是提示 Can't access the site. Your cookie may be wrong!

某些站点安全性要求较高,ip或浏览器变动时无法使用cookie访问,需要重新登录。
解决办法:设置 user-agent 参数与浏览器相同,查看浏览器user-agent的方法自行搜索,并保证登录ip与使用Flexget相同。

站点启用了Cloudflare五秒盾无法获取信息

当触发Cloudflare五秒盾通常有以下提示:

NexusPHP._get_info: 503 Server Error: Service Temporarily Unavailable for url

解决方案也很简单,可以考虑使用Flexget官方内置的插件cfscraper

  1. 首先需要安装依赖
pip install cloudscraper
  1. 然后启用
cfscraper: yes

注意!绕过站点安全机制可能有风险,自行决定是否使用

支持作者

插件经常需要时间维护,如果本插件对你有用,可以请作者吃顿饭😉,给作者提供更多动力
wechatpay

flexget-nexusphp's People

Contributors

huxuan avatar juszoe avatar luyiming avatar xfl03 avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

flexget-nexusphp's Issues

能不能增加一个针对tracker限速的参数?

flexget本身有限速参数,但好像只能针对客户端限速,不能针对tracker限速,

nexusphp本身能针对tracker设置下载条件,能不能加个限速参数?有些PT是不允许超速上传 的

能否加入文件大小过滤的选项

因为用1T的OL刷,所以不太敢下免费大种,Flexget有个Content-Size的选项,可以过滤体积大于或者小于设置的种子,但是配置了插件后,content-size不起作用了
例如我设置了只下载1M-100G的种子
content_size:
min: 1
max: 100000
strict: no

但是execute的时候,这段规则被无视了,超过100G的仍然可以被下载回来添加到deluge

OpenCD站又出现cookie错误

检查了网站cookie是正确的,运行日志都报错了

2019-10-08 14:13 VERBOSE details OpenCD Produced 10 entries.
2019-10-08 14:13 INFO nexusphp OpenCD Can't access the site. Your cookie may be wrong!
2019-10-08 14:13 INFO nexusphp OpenCD Can't access the site. Your cookie may be wrong!
2019-10-08 14:13 INFO nexusphp OpenCD Can't access the site. Your cookie may be wrong!
2019-10-08 14:13 INFO nexusphp OpenCD Can't access the site. Your cookie may be wrong!
2019-10-08 14:13 INFO nexusphp OpenCD Can't access the site. Your cookie may be wrong!
2019-10-08 14:13 INFO nexusphp OpenCD Can't access the site. Your cookie may be wrong!
2019-10-08 14:13 INFO nexusphp OpenCD Can't access the site. Your cookie may be wrong!
2019-10-08 14:13 INFO nexusphp OpenCD Can't access the site. Your cookie may be wrong!
2019-10-08 14:13 INFO nexusphp OpenCD Can't access the site. Your cookie may be wrong!
2019-10-08 14:13 INFO nexusphp OpenCD Can't access the site. Your cookie may be wrong!
2019-10-08 14:13 VERBOSE details OpenCD Summary - Accepted: 0 (Rejected: 0 Undecided: 10 Failed: 0)

U2疑似识别错误接受其它优惠条件的种子

检查优惠历史发现accept时间内没有优惠条件也不可能满足seeder范围

https://u2.dmhy.org/details.php?id=39679&hit=1
https://u2.dmhy.org/details.php?id=39693&hit=1

Task dmhy
Title [冷然之天秤][Nil Admirari no Tenbin][ニル・アドミラリの天秤][BDMV][1080p][Vol.1-Vol.4 Fin][AVCHD][自抓]
URL https://u2.dmhy.org/download.php?id=39693&passkey=
Time Thu Jul 23 12:47:30 2020
Details Accepted by accept_all

Task dmhy
Title [心理测量者第3季][Psycho-Pass 3][サイコパス3][BDMV][Vol.03-04 Fin][brutelor@緋月] URLhttps://u2.dmhy.org/download.php?id=39679&passkey=
Time Wed Jul 22 05:07:25 2020
Details Accepted by accept_all

其中发现所有异常accept的种子都在Details显示Accepted by accept_all,正常的显示Accepted by nexusphp

config.yml.zip

SSD站点问题

SSD种子详情界面有相关资源一栏,若相关资源出现free则该种子也会判定为free

合理限制对details_page页面请求

我们观察到来自该flexget插件用户对details.php以及viewpeerlist.php页面瞬时大量请求,请考虑增加sleep、local cache或者直接从种子列表页获取并分析优惠信息、做种情况等信息。
否则我们将认为其用户行为违反了网站相关规则 对网站使用自动脚本或工具危害到网站正常运转,对相关用户进行警告或者ban号。

OurBits & YingK, Rhilip

TTG 出现maybe a login page

使用其它站都是正常的,今天想试试TTG就一直失败,研究了很久还是不行,加了代码verify_ssl_certificates: no也问题依旧,请问下怎么解决?
QQ截图20200801222457

如何才能找到正确的cookie

通过chrome浏览器地址栏的小锁里读出来的cookie填入脚本里,测试了学校、nice这两个已经适配了的,还是提示Can't access the site. Your cookie may be wrong!

OpenCD站执行出错

crash report内容如下:
2019-09-16 12:41 VERBOSE input_cache OpenCD Restored entries from cache
2019-09-16 12:41 WARNING details OpenCD Task didn't produce any entries. This is likely due to a mis-configured or non-functional input.
2019-09-16 12:41 CRITICAL task OpenCD BUG: Unhandled error in plugin nexusphp: 0 is out of bounds
Traceback (most recent call last):
File "c:\users\administrator\appdata\local\programs\python\python37\lib\site-packages\flexget\task.py", line 522, in __run_plugin
return method(*args, **kwargs)
File "c:\users\administrator\appdata\local\programs\python\python37\lib\site-packages\flexget\event.py", line 23, in call
return self.func(*args, **kwargs)
File "C:\Users\Administrator\flexget\plugins\nexusphp.py", line 113, in on_task_filter
task.requests.get(task.entries[0].get('link'), headers=headers)
File "c:\users\administrator\appdata\local\programs\python\python37\lib\site-packages\flexget\task.py", line 118, in getitem
raise IndexError('%d is out of bounds' % item)
IndexError: 0 is out of bounds

建议只访问主页面来减少页面访问次数

ourbits好像禁止频繁浏览网页了 频繁浏览会掉登录
建议让这个插件每次运行只访问一次主页 只查看每个种子是否free 其他的不查看
这样flexget每次只需要访问一次主页 可以极大的减少网页访问次数

还有给个建议 我看好像有个python脚本可以过cloudflare5秒验证 作者要不考虑一下......

我就是建议可以让这个插件只访问一次主页 然后记住每个种子的优惠策略 其他的不管 然后flexget每次获取种子信息可以按照预先保存的优惠信息来判断 这样每10分钟只需要访问一次网站...........

flexget日志中频繁报错

Unable to download the RSS for task cmctAuto (https://springsunday.net/torrentrss.php?rows=50&linktype=dl&passkey=我的passkey): HTTPSConnectionPool(host='springsunday.net', port=443): Max retries exceeded with url: /torrentrss.php?rows=50&linktype=dl&passkey=我的passkey(Caused by ConnectTimeoutError(<urllib3.connection.VerifiedHTTPSConnection object at 0x7f630bec84a8>, 'Connection to springsunday.net timed out. (connect timeout=60)'))

我添加了三个站(chd,ssd,hdsky),均会报这个错误,同时报错之后下载种子就会失败

tccf貌似总说cookie出错

同样方法配置北洋园已经正常工作,tccf提示cookie出错
已经尝试了加user_agent没有解决问题,同样IP访问tccf站点没有问题,网站架构也是nexusphp感觉应该能够适配。

docker flexget中报错BUG: Unhandled error in plugin nexusphp: 0 is out of bounds

2019-12-04 21:23 CRITICAL task SSD-Free BUG: Unhandled error in plugin nexusphp: 0 is out of bounds
2019-12-04 21:23 CRITICAL manager SSD-Free An unexpected crash has occurred. Writing crash report to /config/crash_report.2019.12.04.212310392948.log. Please verify you are running the latest version of flexget by using "flexget -V" from CLI or by using version_checker plugin at http://flexget.com/wiki/Plugins/version_checker. You are currently using version 3.0.11
2019-12-04 21:23 WARNING task SSD-Free Aborting task (plugin: nexusphp)

SSD抓取种子报错,其他站OB、北洋都正常,可以抓取并下载种子

无法跟content_size一起使用

如果
Rss:
nexusphp:
download:
template: tr
template: size
这种方法编写的脚本,确实会过滤体积,但是体积合适的种子也不会发送到tr中。

TTG最近总是下载很多非免费种。。快爆仓了。

task_ttg:
rss:
url: https://totheglory***
other_fields: [link]
accept_all: no
nexusphp:
cookie: '***' # 必填
discount: # 优惠信息 选填
- free
- 2xfree
#seeders: # 做种情况 选填
#min: 1
#max: 10
#leechers: # 下载情况 选填
#min: 5
#max: 100
#max_complete: 0.9
left-time: 12 hours # 优惠剩余时间 选填
hr: no # 是否下载HR 选填
adapter: # 站点适配器,自行适配站点,参考最下方常见问题 选填
free: free
2x: twoup
2xfree: twoupfree
30%: thirtypercent
50%: halfdown
2x50%: twouphalfdown
comment: yes # 在torrent注释中添加详情链接 选填
user-agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.111 Safari/537.36 Edg/86.0.622.51 # 浏览器标识 选填
remember: yes # 记住优惠信息 选填 请勿随意设置
#download: /data/ttg/
template:
- freespace
- size
qbittorrent:
path: /downloads/movies/
host: 192.168.9.9
port: 9999
username: ppp
password: 'sss'
label: totheglory

之前用着都好。。最近不行了。
不知道咋回事。。。

flexget日志中频繁报错2

Execution of job "* (trigger: interval[0:05:00], next run at: 2019-08-22 14:51:49 UTC)" skipped: maximum number of running instances reached (1)

我添加了3个任务,间隔是10分钟执行一次,是不是频率太高了?

群晖套件报错

nexusphp报错。flexget默认安装py2.7.报错内容为nexusphp关键字报错。如果docker安装flexget,套件单独安装py3怎样? docker的话,脚本放在哪个位置

SSD无法使用

运行了一遍
There is a FlexGet process already running for this config, sending execution there.
2020-07-30 19:41:25 INFO manager Config change detected. Reloading.
2020-07-30 19:41:25 INFO scheduler No schedules defined in config. Defaulting to run all tasks on a 1 hour interval.
2020-07-30 19:41:26 INFO manager Config successfully reloaded!
2020-07-30 19:41:27 VERBOSE details SSD Produced 10 entries.
2020-07-30 19:41:37 VERBOSE details SSD Summary - Accepted: 0 (Rejected: 7 Undecided: 3 Failed: 0)

然后IP被cloudflare ban了
微信截图_20200730194841

OpenCD站 Cookie错误

2020-07-26 01:27:47 VERBOSE details OpenCD Produced 10 entries.
2020-07-26 01:27:54 ERROR nexusphp OpenCD Can't access the site. Your cookie may be wrong!
2020-07-26 01:27:54 ERROR nexusphp OpenCD Can't access the site. Your cookie may be wrong!
2020-07-26 01:27:54 ERROR nexusphp OpenCD Can't access the site. Your cookie may be wrong!
2020-07-26 01:27:54 ERROR nexusphp OpenCD Can't access the site. Your cookie may be wrong!
2020-07-26 01:27:54 ERROR nexusphp OpenCD Can't access the site. Your cookie may be wrong!
2020-07-26 01:27:54 ERROR nexusphp OpenCD Can't access the site. Your cookie may be wrong!
2020-07-26 01:27:54 ERROR nexusphp OpenCD Can't access the site. Your cookie may be wrong!
2020-07-26 01:27:54 ERROR nexusphp OpenCD Can't access the site. Your cookie may be wrong!
2020-07-26 01:27:54 ERROR nexusphp OpenCD Can't access the site. Your cookie may be wrong!
2020-07-26 01:27:54 ERROR nexusphp OpenCD Can't access the site. Your cookie may be wrong!
2020-07-26 01:27:54 VERBOSE details OpenCD Summary - Accepted: 0 (Rejected: 0 Undecided: 10 Failed: 0)

PTer不支持么?

执行的时候提示:NexusPHP._get_info: 503 Server Error: Service Temporarily Unavailable for url: 种子页面,请问这个是什么问题

不支持影客

2019-08-14 22:05 VERBOSE details yingk Produced 10 entries.
2019-08-14 22:05 VERBOSE details yingk Summary - Accepted: 0 (Rejected: 0 Undecided: 10 Failed: 0)
2019-08-14 22:10 WARNING manager Your locale declares ascii as the filesystem encoding. Any plugins reading filenames from disk will not work properly for filenames containing non-ascii characters. Make sure your locale env variables are set up correctly for the environment which is launching FlexGet.

不确定seeders是否存在误判

今天更新完脚本后,seeders min设置为1,max设置为3。执行了一次脚本,一个新发布种子实际做种人数为1,脚本日志却提示做种人数121超出预设值。查看种子发现做种人用户名后两位为21。不确定是误判了还是巧合

关于U2的Other优惠

U2中的Other优惠一般为上传2.33,下载0。个人认为比较接近2Xfree类别。希望可以更改到2Xfree类别中,以方便订阅者下载全部免费种子。

U2这配置哪里出错了

最新版本的插件
配置部分:

  u2free:
    rss:
      url: xxx
      other_fields: [link]
    nexusphp:
      cookie: 'aaa'
      discount:
        - free
        - 2xfree
      seeders:
        min: 0
        max: 2
      hr: no

log显示不管是不是free或者2xfree或者2.33一律被reject了,一律提示不满足优惠规则
相关log如下:

2020-08-07 13:45:49 VERBOSE  details       u2free          Produced 10 entries.
2020-08-07 13:45:49 VERBOSE  task          u2free          REJECTED: `[虹猫蓝兔七侠传][The story of hongmao and lantu][HDTV][1080p][TV 001-108 Fin][mpg][LAniHD][简中内嵌]` by remember_rejected plugin because rejected on behalf of nexusphp plugin: None does not match discount
2020-08-07 13:45:49 VERBOSE  task          u2free          REJECTED: `[『響け!ユーフォニアム』シリーズ イラストレーションワークス -BIRTHDAY&MOVIES-][完结][京アニショップ]` by remember_rejected plugin because rejected on behalf of nexusphp plugin: 2x does not match discount
2020-08-07 13:45:49 VERBOSE  task          u2free          REJECTED: `[寄生兽 生命的准则][Parasyte: The Maxim/Kiseijuu: Sei no Kakuritsu][寄生獣 セイの格率][BDMV][1080p][BDBOX DISCx4 Fin][ITA]` by remember_rejected plugin because rejected on behalf of nexusphp plugin: None does not match discount
2020-08-07 13:45:49 VERBOSE  task          u2free          REJECTED: `[极上生徒会][Gokujou Seitokai][極上生徒会][DVDISO][720x480][Vol.1-Vol.7 Fin][R2J]` by remember_rejected plugin because rejected on behalf of nexusphp plugin: None does not match discount
2020-08-07 13:45:49 VERBOSE  task          u2free          REJECTED: `[Web][200806][OST][Kevin Penkin][Necrobarista][16bit/44.1kHz][FLAC]` by remember_rejected plugin because rejected on behalf of nexusphp plugin: 2x does not match discount
2020-08-07 13:45:49 VERBOSE  task          u2free          REJECTED: `[异界群敌 代码重组][Z/X Code Reunion][ゼクス コードリユニオン][BDRip][1920x1080][TV 01-12 Fin+SP][H264 FLAC MKV][自壓]` by remember_rejected plugin because rejected on behalf of nexusphp plugin: None does not match discount
2020-08-07 13:45:49 VERBOSE  task          u2free          REJECTED: `[轻音少女][K-ON!][けいおん!][BDMV][1080p][BD-BOX BDx4 CDx1 Fin]` by remember_rejected plugin because rejected on behalf of nexusphp plugin: None does not match discount
2020-08-07 13:45:49 VERBOSE  task          u2free          REJECTED: `[EAC][200805][SINGLE][天海春香][THE IDOLM@STER MASTER ARTIST 4 01 天海春香][COCX-41151][WAV+CUE+LOG+PNG]` by remember_rejected plugin because rejected on behalf of nexusphp plugin: None does not match discount
2020-08-07 13:45:49 VERBOSE  task          u2free          REJECTED: `[我的英雄学院第3季][My Hero Academia Season 3 / Boku no Hero Academia 3][僕のヒーローアカデミア 3][BDMV][1080p][Vol.4][AVC][JP]` by remember_rejected plugin because rejected on behalf of nexusphp plugin: None does not match discount
2020-08-07 13:45:49 VERBOSE  task          u2free          REJECTED: `[机动战士高达0079][Mobile Suit Gundam / Kidou Senshi Gundam][機動戦士ガンダム][BDMV][1080p][BDBOX DISC×5 Fin][ITA]` by remember_rejected plugin because rejected on behalf of nexusphp plugin: None does not match discount
2020-08-07 13:45:49 VERBOSE  details       u2free          Summary - Accepted: 0 (Rejected: 10 Undecided: 0 Failed: 0)

请求适配PTHOME

抓取到了Cookie,并且也通过ssr登录了网站
但是还是提示Can't access the site. Your cookie may be wrong!
不太清楚是我的cookie填写错误还是说不适配
cookie是从chrome地址栏的小锁那里复制出来的
选择了cfduid这个类别里面的cookie

能不能躲开大体积种子并设置种子添加数量并观察free时间?

如果硬盘体积比较小的话能不能只下载指定体积的种子?
能不能只下载指定数量的种子?假如我硬盘本身体积不大下载3个种子就会超出硬盘空间能不能智能只下载2个种子啊?
不支持直接下载连接到pt网站也能用吗........
还有能不能加一个观察free时间的功能?有些种子余剩的free时间短 没下完free时间就结束了然后就算流量了........
针对小硬盘的服务器....

感谢大佬呀!!!!!!!!!!!!!!!!

朋友的錯誤訊息

執行之後回傳 '\t' cannot start any token,但是我那行只有rss網址而已,沒有\t
Alt Text
另外一個訊息是config檔不是一個有效的yaml
我的config

ps.請問這個插件,windows 7可以用嗎?

U2优惠条件 Other判定不准确(?)

再次感谢作者之前的帮助,插件到现在一直运行得都很正常。
但是今早发现漏了下载量,检查发现是有一个Other类型的种子混了进来,估计本来将Other识别为2xfree是为了2.33x up/0.00x down优惠的吧,但这一个Other是2.00x up/0.30x down的。
请问可否添加选项排除2.33x/0.00x外的Other类型优惠?

某些站(如岛)可能误下到非免费种的问题

某些站(如岛)可能误下到非免费种的问题:
'pro_free' class属性除了在头部id='top'节点下出现外,如果该种子含有其他版本种子,且其他版本种子是免费,那么'pro_free'也可能在'其它版本'表中出现。
因此,待下载种子不免费,但只要该种子含有其他版本的免费种子,那么该非免费种有可能会误下载

创建了一个pull requests,请大佬review,感谢:
#7 (comment)

Ourbits无法抓取

There is a FlexGet process already running for this config, sending execution there.
2020-07-30 19:45:30 INFO manager Config change detected. Reloading.
2020-07-30 19:45:30 INFO scheduler No schedules defined in config. Defau
lting to run all tasks on a 1 hour interval.
2020-07-30 19:45:30 INFO manager Config successfully reloaded!
2020-07-30 19:45:33 VERBOSE details ourbits Produced 10 entries.
2020-07-30 19:45:41 VERBOSE details ourbits Summary - Accepted: 0 (Rejected: 0 Undecided: 10 Failed: 0)

一直都是undecided,求问是什么意思

CHD免费种判断的问题

CHD的种子上架流程,对插件免费种判断机制有误导。

CHD有些种子上架,不会标记免费,插件扫描到后,就会remember-rej,
实际这些种子是上架几分钟后,或者一小段时间后,才会被 种子发布者再标记FREE,
这时因为已经remember-rej,插件就会跳过这些免费种,造成错过并误判免费种。

插件作者能不能想想办法解决这个问题?谢谢

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.