Robert Lechte

Results 83 comments of Robert Lechte

Can confirm the same is occurring. Works as with `chunk_size=1`, hangs with `None`. Can try to put together a reproducible example if that's helpful?

As promised, here's a reproducible example against httpbin.org: ``` import requests chunk_size = None URL = 'https://httpbin.org/drip?duration=2' r = requests.get(URL, stream=True) for x in r.iter_content(chunk_size=chunk_size): print(f'response: {x}') ``` Run this...

Hey, thanks for commenting! There's currently no option for manually greating a specified venv. I built this project initially just for myself, because I couldn't find anything that automated things...

Awesome, looking forward to it! And yes, big fan of `black`. Checked out your projects, `pipx` in particular looks useful for a bunch of things. It looks like pipx on...

Ah, cool. For what it's worth I just used it to globally install `poetry` instead of using the standard install script, works great!

Hi, thanks for adding this issue! And sorry for my slow reply on this. You're correct that this is an undocumented feature, and it would be nice to have it...

By default it seems best to simply mimic print, so that it can be a substitute for print statements.. It would be great to add JSON logging as something that...

Thanks for filing this issue and your interest in this! As you note, migra mostly relies on a carefully chosen, mostly static ordering which usually, but not always, spits things...

Hello, thanks for filing this and apols for the slow reply. The tests could definitely be a lot more configurable/easier - with my own configuration, I just have postgres running...

Hello, thanks for filing this issue, and sorry it's taken a while to respond. Can you provide an example before/after function signature that produces this error?