Thomas Perl

Results 256 comments of Thomas Perl

Depending on how the login is managed, sometimes you can log into the page using your browser, and then get the cookies from the browser (e.g. by exporting a `cookies.txt`...

> When cookies contain characters like %, it becomes impossible to save them using `urlwatch --edit` unless you wrap them in something like a single or double quotation mark, which...

@cfbao True, thanks for noticing. So this could be solved by having a command-line switch that will change the URL of a Job and also "move" the corresponding cache entry...

Another approach could be: - Add feature to list current GUIDs - Make it possible to override (explicitly specify) the GUID in `urls.yaml` This way, if somebody wants to change...

@mborsetti Please don't advertise your fork until you fix the licensing issue at https://github.com/mborsetti/webchanges/issues/30

There is no way to do this currently, you have to edit the `urls.yaml` (either manually or via an external script you write yourself).

Have a look at the custom reporters implemented here: https://github.com/thp/urlwatch/blob/master/lib/urlwatch/reporters.py

Until this is supported, you can do something like this as a workaround (note that jobs will still run in parallel, and potentially execute at the same time, it's just...

Another hack solution is to patch `worker.py` and `handler.py` like this: ```patch diff --git a/lib/urlwatch/handler.py b/lib/urlwatch/handler.py index 585d4b5..aa4258a 100644 --- a/lib/urlwatch/handler.py +++ b/lib/urlwatch/handler.py @@ -38,6 +38,7 @@ import os import...