python-aiohappyeyeballs
Port variant v11
Summary Happy Eyeballs for asyncio (3.11)
BROKEN
Package version 2.4.0
Homepage https://github.com/aio-libs/aiohappyeyeballs
Keywords python
Maintainer Python Automaton
License Not yet specified
Other variants v12
Ravenports Buildsheet | History
Ravensource Port Directory | History
Last modified 07 SEP 2024, 17:00:23 UTC
Port created 31 JUL 2024, 19:03:24 UTC
Subpackage Descriptions
single # aiohappyeyeballs

[image] [image] [image]

[image] [image] [image]

[image] [image] [image]

--- **Documentation**: https://aiohappyeyeballs.readthedocs.io **Source Code**: https://github.com/aio-libs/aiohappyeyeballs --- [Happy Eyeballs] ([RFC 8305]) ## Use case This library exists to allow connecting with [Happy Eyeballs] ([RFC 8305]) when you already have a list of addrinfo and not a DNS name. The stdlib version of `loop.create_connection()` will only work when you pass in an unresolved name which is not a good fit when using DNS caching or resolving names via another method such as `zeroconf`. ## Installation Install this via pip (or your favourite package manager): `pip install aiohappyeyeballs` ## Example usage ```python addr_infos = await loop.getaddrinfo("example.org", 80) socket = await start_connection(addr_infos) socket = await start_connection(addr_infos, local_addr_infos=local_addr_infos, happy_eyeballs_delay=0.2) transport, protocol = await loop.create_connection( MyProtocol, sock=socket, ...) # Remove the first address for each family from addr_info pop_addr_infos_interleave(addr_info, 1) # Remove all matching address from addr_info remove_addr_infos(addr_info, "dead::beef::") # Convert a local_addr to local_addr_infos local_addr_infos = addr_to_addr_infos(("127.0.0.1",0)) ``` ## Credits This package contains code from cpython and is licensed under the same terms as cpython itself. This package was created with [Copier] and the [browniebroke/pypackage-template] project template.
Configuration Switches (platform-specific settings discarded)
PY311 ON Build using Python 3.11 PY312 OFF Build using Python 3.12
Package Dependencies by Type
Build (only) python-pip:single:v11
autoselect-python:single:std
Build and Runtime python311:single:std
Download groups
main mirror://PYPIWHL/18/b6/58ea188899950d759a837f9a58b2aee1d1a380ea4d6211ce9b1823748851
Distribution File Information
7ce92076e249169a13c2f49320d1967425eaf1f407522d707d59cac7628d62bd 12155 aiohappyeyeballs-2.4.0-py3-none-any.whl
Ports that require python-aiohappyeyeballs:v11
python-aiohttp:v11 Async http client/server framework (3.11)