aiohttp icon indicating copy to clipboard operation
aiohttp copied to clipboard

Asynchronous HTTP client/server framework for asyncio and Python

Results 568 aiohttp issues
Sort by recently updated
recently updated
newest added

### Describe the bug Requests involving a proxy server sometimes fail with an `AttributeError` which were working on versions prior to `3.8.0` ### To Reproduce Full test case: ```python #...

bug
need pull request
client
regression
reproducer: present

## What do these changes do? ## Are there changes in behavior for the user? ## Related issue number ## Checklist - [x] I think the code is well written...

### Is your feature request related to a problem? Many sites have an API path in the URL. For example, Jira uses {jira_url}/rest/api/2/ as the base for its API requests....

enhancement

## What do these changes do? Fixed an error when calling the \_\_repr\_\_ method on an **EmptyStreamReader** **Briefly about the solution:** Removes the problem associated with calling the \_\_repr\_\_ method...

bot:chronographer:provided

### Describe the bug Traceback (most recent call last): File "/usr/local/lib/python3.9/site-packages/aiohttp/connector.py", line 985, in _wrap_create_connection return await self._loop.create_connection(*args, **kwargs) # type: ignore[return-value] # noqa RuntimeError: coroutine ignored GeneratorExit ### To...

bug

## What do these changes do? Added new exception type to separate cases with invalid redirect url during request. Previously ValueError or InvalidURL was raised and screening out was hard...

bot:chronographer:provided
backport-3.9

## What do these changes do? Add new arguments `max_line_size` and `max_field_size` to ClientSession. ## Are there changes in behavior for the user? No, both arguments are optional and will...

bot:chronographer:provided

**This is a backport of PR #6756 as merged into master (72d3d4b1f68cca5ad15ef50bffb0419b798c7f23).** ## What do these changes do? Fix for constantly failing CI on windows agents. ## Description We have...

### Describe the bug aiohttp keeps sending the body every time it's redirected. ### To Reproduce 1. Send body data via a GET request 2. Site acknowledges data and redirects...

bug

### Describe the bug If `uvloop` is enabled, as long as EOF is not reached, even if the response, connection, and session are all closed, the server from which aiohttp...

bug