-
-
Notifications
You must be signed in to change notification settings - Fork 2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Implement StreamReader.readuntil() method #4054
Comments
You can master something with |
5 tasks
WisdomPill
added a commit
to WisdomPill/aiohttp
that referenced
this issue
May 11, 2020
something i am currently dealing with, @asvetlov can you review the PR #4734 @WisdomPill, i can pitch in for the remaining task. |
What is the remaining task? |
WisdomPill
added a commit
to WisdomPill/aiohttp
that referenced
this issue
Nov 1, 2020
Fixed by #4734 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Long story short:
Should be mimic to asyncio.StreamReader counterpart: https://docs.python.org/3/library/asyncio-stream.html#asyncio.StreamReader.readuntil
(Re-opening #1151)
This solution is great to have in the toolbox dealing with pulling high-load data from servers that don't declare their response content-length. Currently I run into partial content.read() intermittently under high-load situations e.g. (#3881).
The text was updated successfully, but these errors were encountered: