aiohttp
aiohttp copied to clipboard
Asynchronous HTTP client/server framework for asyncio and Python
Bumps [click](https://github.com/pallets/click) from 8.1.8 to 8.2.1. Release notes Sourced from click's releases. 8.2.1 This is the Click 8.2.1 fix release, which fixes bugs but does not otherwise change behavior and...
Bumps [pytest](https://github.com/pytest-dev/pytest) from 8.1.1 to 8.4.0. Release notes Sourced from pytest's releases. 8.4.0 pytest 8.4.0 (2025-06-02) Removals and backward incompatible breaking changes #11372: Async tests will now fail, instead of...
Bumps the pip group with 1 update in the /requirements directory: [idna](https://github.com/kjd/idna). Updates `idna` from 3.6 to 3.7 Release notes Sourced from idna's releases. v3.7 What's Changed Fix issue where...
Bumps [idna](https://github.com/kjd/idna) from 3.3 to 3.10. Release notes Sourced from idna's releases. v3.10 No release notes provided. v3.9 No release notes provided. v3.8 What's Changed Fix regression where IDNAError exception...
Bumps [typing-extensions](https://github.com/python/typing_extensions) from 4.13.2 to 4.14.0. Release notes Sourced from typing-extensions's releases. 4.14.0 This release adds several new features, including experimental support for inline typed dictionaries (PEP 764) and sentinels...
Bugs
### Describe the bug This code snippet has a bug: it converts %2F to /, which causes the signature to fail. `aiohttp/client.py 547 line` ``` try: url = self._build_url(str_or_url) except...
Bumps [pypa/cibuildwheel](https://github.com/pypa/cibuildwheel) from 2.23.3 to 3.0.0. Release notes Sourced from pypa/cibuildwheel's releases. v3.0.0 See @henryiii's release post for more info on new features! 🌟 Adds the ability to build wheels...
## What do these changes do? Adds type hinting to `TraceConfig` using the updated branch of aiosignal. I actually filmed part of this on youtube funny enough and I made...
## Long story short I use `127.0.0.1` instead of `localhost` for development and wasted few hours before understand why my tests breaks :) ``` import asyncio import aiohttp async def...
## Long story short Redirect not been followed. I always get a `302` back. ## Expected behaviour Get a `200` back with text filled. ## Steps to reproduce ```python import...