Asynchronous networking library
Project description
aionetiface
Python: >= 3.5 asyncio OSes: Windows, Linux, Mac, BSD, Android Event loops: Selector, Proactor (Windows), "CustomEventLoop" (aionetifaces slightly better version of selector), maybe uvloop in the future.
Aionetiface is a networking library for >= Python 3.5 that supports multi-interface networking on most modern OSes. It includes back-ported patches from recent Python versions to make asyncio work better on older versions of Python as well as new features that aren't possible with asyncio today.
from aionetiface import *
nic = await Interface() # Or add a name there "eth0"
# nic_list = await list_interfaces()
You can use aionetiface to write software that works across multiple networks (like VPNs, proxies, file software, servers, etc.) The software has many interesting features that set it apart from other libraries like being able to correctly identify external addressing information and making that easy to use.
# Bind to the first external IPv6 available
route = nic.rp[IP6][0]
pipe = await Pipe(TCP, ("example.com", 80), route).connect()
Above, shows an example of a unified interface for both client and server code based around the idea of "pipes." Programming can be done in a similar way to Python's regular protocol classes (callback style) or awaiting the pipe directly.
That's the tip of the ice berg though -- and the deeper you go -- the more interesting (and maybe bizarre) things you will discover.
python3 -m pip install aionetiface
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file aionetiface-0.0.10.tar.gz.
File metadata
- Download URL: aionetiface-0.0.10.tar.gz
- Upload date:
- Size: 3.5 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
833105cb105705166c684f77e8767e2f244053257c950799961ec9f62260502a
|
|
| MD5 |
f8c6beb6c018487ebd1c801f97cc26e4
|
|
| BLAKE2b-256 |
abfaeae3dafc22f30d8511aa5cefeea6acdc4d2f0a307468e956d575bebf3bc2
|
File details
Details for the file aionetiface-0.0.10-py3-none-any.whl.
File metadata
- Download URL: aionetiface-0.0.10-py3-none-any.whl
- Upload date:
- Size: 191.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a9c4f5ca2994de797a69165f5f18dc5954217a42e08a3f861af4637539ec3fa4
|
|
| MD5 |
8ec67cd24ab3819a361d484eff2b7d79
|
|
| BLAKE2b-256 |
e69b49e4e9765c353b0db3fafa3a81175fdab9d4ceb8315a4041d08945f015bb
|