Skip to content

xiuluo/flexget-nexusphp

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

flexget-nexusphp

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

运行环境

安装插件

  1. 下载插件 nexusphp.py
  2. 在Flexget配置文件夹下新建plugins文件夹,例如:
~/.flexget/plugins/  # Linux
C:\Users\<YOURUSER>\flexget\plugins\  # Windows
  1. 将插件拷贝至plugins
  2. 若启用了Web-UI或守护进程,则重启flexget重新加载配置

使用

  1. 编辑flexget配置文件,添加nexusphp选项,按照需要进行配置
nexusphp:
  cookie: 'you_cookie'  # 必填
  discount:  # 优惠信息 选填
    - free
    - 2x
    - 2x50%
    - 2xfree
    - 50%
    - 30%
  seeders:  # 做种情况 选填
    min: 1
    max: 2
  leechers:  # 下载情况 选填
    min: 10
    max: 100
    max_complete: 0.8
  hr: no  # 是否下载HR 选填
  adapter:  # 站点适配器,自行适配站点,参考最下方常见问题 选填
    free: free
    2x: twoup
    2xfree: twoupfree
    30%: thirtypercent
    50%: halfdown
    2x50%: twouphalfdown
  comment: no  # 在torrent注释中添加详情链接 选填
  user-agent: xxxxxx  # 浏览器标识 选填
  1. 为rss的other_fields字段添加link属性
rss: 
  url: https://www.example.com/rss.xml
  other_fields:
    - link
  1. 启动flexget
flexget execute

详细配置

cookie

网站cookie,必须填写

discount

优惠类型,默认不限制优惠类型。 列表类型,Flexget会只下载含有列表内优惠类型的种子。 有效值:free 2x 2x50% 2xfree 50% 30% 注意:x为英文字母

seeders

做种情况,包含字段min max。做种人数超出范围的,Flexget将不会下载

min

数字,最小做种人数,默认不限制

max

数字,最大做种人数,默认不限制

leechers

下载情况,包含字段min max max_complete。下载人数超出范围的,Flexget将不会下载

min

数字,最小下载人数,默认不限制

max

数字,最大下载人数,默认不限制

max_complete

小数,范围0-1.0 下载者中最大完成度,超过这个值将不下载,默认为1

hr

yes 会下载HR,即不过滤HR
no 不下载HR
默认 yes

adapter

站点适配器,站点不兼容时可自定义,具体参考 判断站点以及适配站点

comment

yes 在torrent注释中添加详情链接,方便查看
no 默认不添加

完整配置示例

免费热种

tasks:
  my-free-task:
    rss: 
      url: https://www.example.com/rss.xml
      other_fields:
        - link
    nexusphp:
      cookie: 'you_cookie'
      discount:
        - free
        - 2xfree
      seeders:
        min: 1
        max: 3
      leechers:
        min: 5
        max_complete: 0.5
    download: ~/flexget/torrents/

热种

tasks:
  my-hot-task:
    rss: 
      url: https://www.example.com/rss.xml
      other_fields:
        - link
    nexusphp:
      cookie: 'you_cookie'
      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: 'you_cookie'
      hr: no
    download: ~/flexget/torrents/

常见问题

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

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

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

目前支持哪些站点

以下站点名使用别称或简称,欢迎反馈更多可用或不可用的站点

  • 任何未修改关键结构的nexusphp站点
  • 铂金家
  • 馒头(站点安全性较高,ip或浏览器变动可能无法访问)
  • nice
  • 菠萝
  • OB
  • 天空
  • 学校
  • 影客
  • U2
  • CHD
  • 北洋园
  • 春天
  • OpenCD
  • TTG
  • FRDS
  • 铂金梦

如何判断站点是否支持

判断站点以及适配站点

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

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

About

A flexget plugin for filter nexusphp torrents

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 100.0%