Page 78 of 78

Re: [Plugin] YaRSS2 - RSS plugin with GTKUI support

Posted: Mon Feb 17, 2025 12:45 pm
by mhertz
I haven't seen any crashes myself neither, while testing it plenty of times through the years, e.g sometimes left running for 12 hours etc, and neither did the author of plugin, hence hard debug/fix, but as ambipro stated then there's so many crash reports from other people so that it surely is a big issue unfortunately.

It's not very active in development as you found I'm afraid, but is updated here and there, as you stated last in 2021, and later just rebuilt for newer python versions, last in 2024. The author recommends flexget when needing something better or more advanced than his plugin, but not as easy though, but neither rocket science and much more flexible.

There's also other, non RSS based ways to handle downloading, which many transferred over to instead, as seemingly better, though I'm not in the know about all these things, so need look into yourself, but if posting again here about that later, then atleast the good ambipro is very knowledgeable upon these areas.

Re: [Plugin] YaRSS2 - RSS plugin with GTKUI support

Posted: Sat Jul 12, 2025 12:26 pm
by pwhodges
I am running Deluge 2.1.1 on Windows 10 Pro, with YaRSS2-2.1.5-py3.9, and it has been working perfectly for me for a couple of years now.

I have now tried updating Deluge to 2.2, by running the installer over the top of the existing configuration (which I saved, of course). After that, Deluge itself continued to work perfectly, but YaRSS2 stopped working. It shows up in the thin client as it should, all the subscriptions are present and can be edited, but it's failing to read (or parse?) the Feed it's linked to - nothing appears in the part of the subscription edit window showing matches.

Where should I start looking - any suggestions?

Paul

Re: [Plugin] YaRSS2 - RSS plugin with GTKUI support

Posted: Mon Aug 11, 2025 10:18 pm
by spectre4188
It looks like the "six" python module is not being loaded with 2.2..

Code: Select all

15:12:40 [WARNING ][yarss2.core                      :68  ] YaRSS2.rssfeed_scheduler:94: An exception was thrown by the RSS update handler. Please report this bug!
Traceback (most recent call last):
  File "c:\program files\deluge\config\plugins\yarss2-2.1.5-py3.9.egg\yarss2\rssfeed_handling.py", line 185, in get_rssfeed_parsed
    parsed_feed = fetch_and_parse_rssfeed(rssfeed_data["url"], user_agent=user_agent,
  File "c:\program files\deluge\config\plugins\yarss2-2.1.5-py3.9.egg\yarss2\rssfeed_handling.py", line 106, in fetch_and_parse_rssfeed_atom
    import atoma
  File "<frozen zipimport>", line 259, in load_module
  File "c:\program files\deluge\config\plugins\yarss2-2.1.5-py3.9.egg\yarss2\include\atoma\atoma\__init__.py", line 1, in <module>
    from .atom import parse_atom_file, parse_atom_bytes
  File "<frozen zipimport>", line 259, in load_module
  File "c:\program files\deluge\config\plugins\yarss2-2.1.5-py3.9.egg\yarss2\include\atoma\atoma\atom.py", line 9, in <module>
    from .utils import (
  File "<frozen zipimport>", line 259, in load_module
  File "c:\program files\deluge\config\plugins\yarss2-2.1.5-py3.9.egg\yarss2\include\atoma\atoma\utils.py", line 2, in <module>
    from dateutil.tz import gettz
  File "<frozen zipimport>", line 259, in load_module
  File "c:\program files\deluge\config\plugins\yarss2-2.1.5-py3.9.egg\yarss2\include\dateutil\dateutil\tz\__init__.py", line 2, in <module>
    from .tz import *
  File "<frozen zipimport>", line 259, in load_module
  File "c:\program files\deluge\config\plugins\yarss2-2.1.5-py3.9.egg\yarss2\include\dateutil\dateutil\tz\tz.py", line 19, in <module>
    import six
ModuleNotFoundError: No module named 'six'

Re: [Plugin] YaRSS2 - RSS plugin with GTKUI support

Posted: Tue Aug 12, 2025 10:48 am
by ambipro
YaRSS is broken on the latest deluge, if it does work for a period of time then it will crash Deluge shortly after (ranging from minutes to hours at best) - there currently isn't a replacement or any work going into an RSS solution for Deluge.

I would recommend something like Sonarr or Radarr, and perhaps AutoBrr

Re: [Plugin] YaRSS2 - RSS plugin with GTKUI support

Posted: Sun Jan 04, 2026 10:27 pm
by BinaryData
I'm rather curious, why the change in how this whole system works? I can't even find the PyEggs for v1.x anymore. The way the eggs worked, was super simple and easy to work with. This whole new process is beyond jank, and prone to issues compared to the previous system.

I for one, hate this new change/move. I'm going to be looking into AutoBrr or FlexGet as an alternative. I'm severely disappointed in how this has played out. I've relied heavily upon Deluge, and YaRSS2 for several years now. Unfortunately, due to a catastrophic system failure of my seedbox, and my storage arrays at home dying while I was on vacation, I'm current rebuilding everything. Data is safe, but anything stored on the OS drives is cooked.

Re: [Plugin] YaRSS2 - RSS plugin with GTKUI support

Posted: Fri Jan 09, 2026 12:50 am
by Pevce
I got this plugin working on deluge 2.2.1 when building from source on Ubuntu Linux.

I had to:

Code: Select all

pip install six urllib3 legacy-cgi
Then run:

Code: Select all

make buildegg
Then install the generated plugin

There are a bunch of pull requests in the bitbucket repo that would fix a bunch of warnings that come up when building, but the current codebase doesn't seem to cause a crash.

I strongly suggest that the deluge team make this plugin an officially maintained plugin, to avoid issues where the sole developer abandons the project.