Wiki: https://flexget.com/ Forum: https://discuss.flexget.com/ Bugs: https://github.com/Flexget/Flexget/issues | Got a problem? Upload logs and config to a paste service
dependabot[bot] on pip
ksurl (discord)
It should. If all else fails you could run the task with โdisable seen
Ram-Z (irc)
This is an attempt to automate this.
Ram-Z (irc)
I can run a script on download failure. In that script I'd like to notify flexget that this episode has not been downloaded, please try again.
Ram-Z (irc)
I'll have a play with the seen
cli. Thank you.
ksurl (discord)
Oh it could be under -cli-config and then injecting disable: seen instead of that disable flag
Ram-Z (irc)
Probably flexget series remove <show> <ep-id>
is a better approach.
Ram-Z (irc)
Docs suggest it removes that SxxExx, but doesn't affect the seen db.
Ram-Z (irc)
Oh, there might be an API then? Good shout, I'll have a look at that.
Ram-Z (irc)
I suppose I could write a task that does that for me and trigger it via API.
Ram-Z (irc)
Ouf this is getting quite awkward. The api endpoint is there, but both the {id} and {ep-id} are internal ids which need to be requested from the api first, via /series/search to get {series-id}, then requests all episodes via /series/{id}/episodes, loop through them to match them the episode identifier SxxExx to extract the {ep-id}, then finally PUT /series/{id}/episodes/{ep-id}/releases to reset
Ram-Z (irc)
them all.
Fonville (slack)
HI devs,
I have a question of how to approach this issue for improving the npo_watchlist plugin.
NPO recently started sending an e-mail for every login that happens on the NPO account, which makes every time Flexget runs the tasks it is sending this e-mail.
So if possible, I would like the plugin to retain its cookies, so that it can re-use the login it already had from the last task run. What would be the approach to store such data for the plugin within Flexget?
Thanks!
BrutuZ (discord)
Login on browser, then have Flexget pass them with https://flexget.com/Plugins/cookies ?
rminus (discord)
I think it has to be done at the org settings level
chewy75 (discord)
Any way to shut off crash reports until it's fixed?BrutuZ (discord)
Depending on the identifier https://flexget.com/Plugins/series/regexps#Episodenumberingmatching could be your way
BrutuZ (discord)
Quick question about the seen
plugin: Does it count entries as seen if any or all fields have been seen?
- {title: 'MyEntry', url: 'https://sameurl.com'}
- {title: 'MyEntry', url: 'https://otherurl.com'}
- {title: 'ThatEntry', url: 'https://sameurl.com'}
Would only the last 2 be rejected by seen
due to one field being repeated or would they all be left alone because both fields aren't repeated?
Also, website cert expired https://flexget.com/Plugins/seen
aidan (discord)
@BrutuZ Looking at the code, if the first one is accepted, the 2nd two should then be rejected. title, url and original_url are the default fields used to determine if something has been seen - any one of those values from an accepted entry will cause future entries to be rejected
BrutuZ (discord)
rpyc.core.vinegar/rpyc.core.vinegar/rich.errors.MarkupError: closing tag '[/yuri/ scanlations]' at position 92 doesn't match any open tag
gazpachoking (discord)
Hmm.
gazpachoking (discord)
Yeah, I think somehow we should be excluding text from entries in the markup
gazpachoking (discord)
No idea what exact part the problem is happening in though atm
gazpachoking (discord)
If you can run that again directly instead of through the daemon it might give a nicer error/traceback to put in a ticket
gazpachoking (discord)
Not sure I haven't messed up some purposeful coloring though
diddiman (discord)
If i am using https://flexget.com/Plugins/upgrade
and i set the tracking in my discover/download like this
download-movies-discover:
....
upgrade:
tracking: yes
discover:
what:
- movie_list: trakt-movies
from:
- rarbg:
category: [50, 51, 52, 54]
How do i then incorporate the upgrade-job?
My head wants to do something like this
download-movies-upgrade:
priority: 15
template:
- movies-upgrade-config
- torrents
- transmission-movies
magnets: yes
upgrade:
target: <=2160p <=bluray <=hdrplus <=h265
on_lower: reject
timeframe: 52 weeks
discover:
release_estimations: ignore
interval: 15 minutes
from:
- rarbg:
category: [50, 51, 52, 54]
But that is not even valid, due to missing what
in the discover. Any idea?
for_accepted
exec actually run concurrently with other downloads? The problem is that my queue actually isn't getting finished by the time the next flexget process is killed and restarted.
tasks
at the same time?
aidan (discord)
A couple quick and easy PR's if someone has a sec to review: