pyGrowler / Growler

A micro web-framework using asyncio coroutines and chained middleware.
http://www.growler.rocks
Apache License 2.0
686 stars 29 forks source link

Handle binary data uploads #19

Closed kyeatman74 closed 4 years ago

kyeatman74 commented 6 years ago

I'm running into a problem with uploading binary data (longer than 32K) to a pygrowler-based service. It looks like the responder is not handling the 'EXPECT': '100-continue' header. Can this be added in? It can probably be handled similar to the aiohttp module.

akubera commented 6 years ago

Yeah I never got around to implementing Continue or MultiPart parts of the standard like I'd hoped. I'll look into this soon

akubera commented 4 years ago

Good news: I finally wrote the fix for this in https://github.com/pyGrowler/Growler/commit/737169457673bdab6be1983e0f3689e160a8ec3a.