Charles Machalow
Charles Machalow
I think best bet would be for me to take the logic i wrote in yt-dlp and move it out to a simple/small lib. Probably only one function: `copy_from_shadow` or...
Sweet. I've made it really easy. https://pypi.org/project/shadowcopy/ ``` pip install shadowcopy ``` Then to use it: ``` from shadowcopy import shadow_copy # Internally this creates a shadow copy instance via...
Woot: https://github.com/borisbabic/browser_cookie3/pull/185
See https://github.com/yt-dlp/yt-dlp/issues/7271#issuecomment-1791933997 for a possible non-admin solution here!
The current behavior breaks usage of [pre-commit](https://pre-commit.com/). For instance i have a repo with a go.work in the root and a few subprojects. How can i use this with pre-commit...
I've been seeing this for a while. All on tvdb. Just saw it recently with "The Walking Dead". Does migration to tvmaze fix it?
More examples of user agent testing: ``` In [13]: requests.get('https://thepiratebay.org/search/AEW%20All%20Access%20S01E02/0/3/200', headers={'User-Agent': 'Medusa/1.0.12'}) Out[13]: In [14]: requests.get('https://thepiratebay.org/search/AEW%20All%20Access%20S01E02/0/3/200', headers={'User-Agent': 'Medusa2/1.0.12'}) Out[14]: In [15]: requests.get('https://thepiratebay.org/search/AEW%20All%20Access%20S01E02/0/3/200', headers={'User-Agent': 'Medusa/1.0.12'}) Out[15]: ```
Gee whiz so even after that, it sort of looks like the parsing for thepiratebay is off. It looks like the page loads using javascript, while the parser seems to...
Using: ```https://thepiratebay7.com``` as an alternative url seems to be working.
It looks like under the hood there is an api that can be called instead of parsing the html: https://apibay.org/q.php?q= Like: https://apibay.org/q.php?q=The+price+is+right Jackett seems to be using it already: https://github.com/Jackett/Jackett/pull/9593/files