Mike Hynes

Results 6 comments of Mike Hynes

Possible workaround using the `Response.raw.stream()`, seems to work on my end: ```python resp = requests.get("something", stream=True) for chunk in resp.raw.stream(): print(f"chunk size: {len(chunk)}") ```

Thanks for reporting this 🙏 > When running the cache build everything failed because the docs folder wasn't found. Could you please let me know the output of: ```which gcloud```...

Hi @jogardi thanks very much for reporting this! I'm very sorry to get back to you on it so late, I'm afraid I missed this issue. If you are still...

Hi Hank, glad you think it might be useful! For sure if you'd like to add a notice, I'll be maintaining `skelo` for the foreseeable future so any users that...

Thanks very much for reporting this! I'll have to set up a safer way to find the docs root

Just passing by but I think this is relatively straightforward to resolve, probably with just a little hack in your own project's `conf.py`: ## Problem - The root cause here...