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
gazpachoking on clean
Automated ChangeLog update (compare)
FlexGet-Bot on master
Automated ChangeLog update (compare)
FlexGet-Bot on develop
v3.3.18 Prepare v3.3.19.dev (compare)
FlexGet-Bot on v3.3.18
FlexGet-Bot on master
Make colorizing markup when wri… Prepare v3.3.18.dev Merge pull request #3470 from F… and 1 more (compare)
gazpachoking on plex_watchlist
[add] plex_watchlist: Add a new… (compare)
gazpachoking on develop
Make colorizing markup when wri… Merge pull request #3470 from F… (compare)
gazpachoking (discord)
It's different than playlists
gazpachoking (discord)
There are a bunch of trailers that you can browse on plex now, and I want to be able to add them to my watchlist from the plex interface, then have flexget add them to my movie queue
gazpachoking (discord)
Plus you can browse shows/movies from other streaming services and add them to your watchlist. (or link directly to that streaming service to watch it, if you have it)
BrutuZ (discord)
I see, wasn't aware of these. Very rarely do I use a Plex app, usually limited by the godawful web-interface just to manage metadata and Kodi
gazpachoking (discord)
Oh, they do have it in the web app, but not the version bundled with pms
gazpachoking (discord)
You have to go to plex.tv
gazpachoking (discord)
Especially if it means I can control my auto-downloads more easily from the plex interface
BrutuZ (discord)
Having a really hard time escaping a re_replace capture group with \
within Jinja for about an hour, any advice?
"{{title|re_replace('([\\][_*()~`>#+=|{}.!-])', '\\\\1')}}"
That works for replacing the captured character with itself, but no matter how many slashes I add, I can't get it to replace ]
with \]
on the title
slim (discord)
Hey guys, I'm getting this error when I start the daemon "The zone attribute is specific to pytz's interface; please migrate to a new time zone provider. For more details on how to do so, see https://pytz-deprecation-shim.readthedocs.io/en/latest/migration.html"
slim (discord)
(flexget) pi@raspberrypi:~ $ flexget daemon start -d
2022-05-20 16:30:35 INFO manager Daemonizing...
2022-05-20 16:30:35 INFO manager Daemonize complete. New PID: 2779
(flexget) pi@raspberrypi:~ $ flexget daemon status
There does not appear to be a daemon running.
Currently stuck here, what's the best way to debug? I've tried all the different levels of loglevel but I can't seem to see what's causing it to crash
slim (discord)
2022-05-20 16:44:15 INFO manager Daemonizing...slim (discord)
nothing after that
antivirtel (discord)
Hi, I've just seen this: https://flexget.com/Plugins/series/season_packs - is there a way to enable this globally for all series? Adding it to the global template like this doesn't seem to work:
templates:
global:
series:
season_packs: always
Thanks!
BrutuZ (discord)
Just make up your own
BrutuZ (discord)
Call it whatever you like: all, default, potato...
antivirtel (discord)
Hm, I just realised they're already in a group :)
BrutuZ (discord)
Neat, makes it a single line implementation 🙂
Ram-Z (irc)
i.e. the selected entry failed to download, I'd like to try again the same episode with a different entry.
ksurl (discord)
flexget seen forget “title”
ksurl (discord)
I submitted a PR to add apt caching for the main build and test workflow
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.