Jordan Cook
Jordan Cook
Thanks for the heads up. I may need to update the Docker image used for that. I should have time to look into that sometime this week.
I rebuilt the image and fixed some dependency issues. It seems like the format for direct notebook links may have changed, but you should still be able to navigate there...
I skimmed over the pytest-httpbin code and couldn't see anything obvious that would be responsible for the `/json` endpoint being any different than the others, so for all I know...
You can blame me for that one, sorry! The intent for this was to raise a DeprecationWarning instead of causing an error. This would have worked if imported as `from...
It looks like [tvdb_api](https://github.com/dbr/tvdb_api) was importing some internal functions from [requests-cache](https://github.com/reclosedev/requests-cache). So not a problem with tvnamer. That appears to have been fixed [here](https://github.com/dbr/tvdb_api/pull/97), so try updating to the latest...
That might be a problem with requests-cache, or at least an older version of it. Can you tell me what version you have? ```bash python -c "import requests_cache; print(requests_cache.__version__)" ```...
tvnamer's [classifiers](https://github.com/dbr/tvnamer/blob/2e1e969542d65c5cac2dad9b3cd20dce4f53b6a8/setup.py#L51-L55) (used for metadata on PyPI) only list python versions up to 3.8, but that doesn't necessarily mean it doesn't work with python 3.9+. Often that just means it...
Meanwhile, I can't actually figure out where that `timeout` argument is coming from. I don't see it used anywhere in either tvnamer or tvdb_api, so it's possible that updating to...
I will probably need some more info about how this process is running. Is it running from a CI system or cloud storage provider with ephemeral storage? Does it use...
I like this idea, since any project dealing with URLs almost certainly already has `idna` as a transitive dependency (via an HTTP client or server library like `requests` or `aiohttp`).