Name | libp2p JSON |
Version |
0.2.9
JSON |
| download |
home_page | None |
Summary | libp2p: The Python implementation of the libp2p networking stack |
upload_time | 2025-07-09 21:20:13 |
maintainer | None |
docs_url | None |
author | None |
requires_python | <4.0,>=3.10 |
license | MIT AND Apache-2.0 |
keywords |
libp2p
p2p
|
VCS |
 |
bugtrack_url |
|
requirements |
No requirements were recorded.
|
Travis-CI |
No Travis.
|
coveralls test coverage |
No coveralls.
|
# py-libp2p
<h1 align="center">
<a href="https://libp2p.io/"><img width="250" src="https://github.com/libp2p/py-libp2p/blob/main/assets/py-libp2p-logo.png?raw=true" alt="py-libp2p hex logo" /></a>
</h1>
<h3 align="center">The Python implementation of the libp2p networking stack.</h3>
[](https://discord.gg/hQJnbd85N6)
[](https://badge.fury.io/py/libp2p)
[](https://pypi.python.org/pypi/libp2p)
[](https://github.com/libp2p/py-libp2p/actions/workflows/tox.yml)
[](http://py-libp2p.readthedocs.io/en/latest/?badge=latest)
> β οΈ **Warning:** py-libp2p is an experimental and work-in-progress repo under development. We do not yet recommend using py-libp2p in production environments.
Read more in the [documentation on ReadTheDocs](https://py-libp2p.readthedocs.io/). [View the release notes](https://py-libp2p.readthedocs.io/en/latest/release_notes.html).
## Maintainers
Currently maintained by [@pacrob](https://github.com/pacrob), [@seetadev](https://github.com/seetadev) and [@dhuseby](https://github.com/dhuseby), looking for assistance!
## Feature Breakdown
py-libp2p aims for conformity with [the standard libp2p modules](https://libp2p.io/implementations/). Below is a breakdown of the modules we have developed, are developing, and may develop in the future.
> Legend: β
: Done Β π οΈ: In Progress/UsableΒ π± Prototype/Unstable Β β: Missing
______________________________________________________________________
### Transports
| **Transport** | **Status** | **Source** |
| -------------------------------------- | :--------: | :---------------------------------------------------------------------------------: |
| **`libp2p-tcp`** | β
| [source](https://github.com/libp2p/py-libp2p/blob/main/libp2p/transport/tcp/tcp.py) |
| **`libp2p-quic`** | π± | |
| **`libp2p-websocket`** | β | |
| **`libp2p-webrtc-browser-to-server`** | β | |
| **`libp2p-webrtc-private-to-private`** | β | |
______________________________________________________________________
### NAT Traversal
| **NAT Traversal** | **Status** |
| ----------------------------- | :--------: |
| **`libp2p-circuit-relay-v2`** | β |
| **`libp2p-autonat`** | β |
| **`libp2p-hole-punching`** | β |
______________________________________________________________________
### Secure Communication
| **Secure Communication** | **Status** | **Source** |
| ------------------------ | :--------: | :---------------------------------------------------------------------------: |
| **`libp2p-noise`** | π± | [source](https://github.com/libp2p/py-libp2p/tree/main/libp2p/security/noise) |
| **`libp2p-tls`** | β | |
______________________________________________________________________
### Discovery
| **Discovery** | **Status** |
| -------------------- | :--------: |
| **`bootstrap`** | β |
| **`random-walk`** | β |
| **`mdns-discovery`** | β |
| **`rendezvous`** | β |
______________________________________________________________________
### Peer Routing
| **Peer Routing** | **Status** |
| -------------------- | :--------: |
| **`libp2p-kad-dht`** | β |
______________________________________________________________________
### Publish/Subscribe
| **Publish/Subscribe** | **Status** | **Source** |
| ---------------------- | :--------: | :--------------------------------------------------------------------------------: |
| **`libp2p-floodsub`** | β
| [source](https://github.com/libp2p/py-libp2p/blob/main/libp2p/pubsub/floodsub.py) |
| **`libp2p-gossipsub`** | β
| [source](https://github.com/libp2p/py-libp2p/blob/main/libp2p/pubsub/gossipsub.py) |
______________________________________________________________________
### Stream Muxers
| **Stream Muxers** | **Status** | **Status** |
| ------------------ | :--------: | :----------------------------------------------------------------------------------------: |
| **`libp2p-yamux`** | π± | |
| **`libp2p-mplex`** | π οΈ | [source](https://github.com/libp2p/py-libp2p/blob/main/libp2p/stream_muxer/mplex/mplex.py) |
______________________________________________________________________
### Storage
| **Storage** | **Status** |
| ------------------- | :--------: |
| **`libp2p-record`** | β |
______________________________________________________________________
### General Purpose Utilities & Datatypes
| **Utility/Datatype** | **Status** | **Source** |
| --------------------- | :--------: | :------------------------------------------------------------------------------------------: |
| **`libp2p-ping`** | β
| [source](https://github.com/libp2p/py-libp2p/blob/main/libp2p/host/ping.py) |
| **`libp2p-peer`** | β
| [source](https://github.com/libp2p/py-libp2p/tree/main/libp2p/peer) |
| **`libp2p-identify`** | β
| [source](https://github.com/libp2p/py-libp2p/blob/main/libp2p/identity/identify/identify.py) |
______________________________________________________________________
## Explanation of Basic Two Node Communication
### Core Concepts
_(non-normative, useful for team notes, not a reference)_
Several components of the libp2p stack take part when establishing a connection between two nodes:
1. **Host**: a node in the libp2p network.
1. **Connection**: the layer 3 connection between two nodes in a libp2p network.
1. **Transport**: the component that creates a _Connection_, e.g. TCP, UDP, QUIC, etc.
1. **Streams**: an abstraction on top of a _Connection_ representing parallel conversations about different matters, each of which is identified by a protocol ID. Multiple streams are layered on top of a _Connection_ via the _Multiplexer_.
1. **Multiplexer**: a component that is responsible for wrapping messages sent on a stream with an envelope that identifies the stream they pertain to, normally via an ID. The multiplexer on the other unwraps the message and routes it internally based on the stream identification.
1. **Secure channel**: optionally establishes a secure, encrypted, and authenticated channel over the _Connection_.
1. **Upgrader**: a component that takes a raw layer 3 connection returned by the _Transport_, and performs the security and multiplexing negotiation to set up a secure, multiplexed channel on top of which _Streams_ can be opened.
### Communication between two hosts X and Y
_(non-normative, useful for team notes, not a reference)_
**Initiate the connection**: A host is simply a node in the libp2p network that is able to communicate with other nodes in the network. In order for X and Y to communicate with one another, one of the hosts must initiate the connection. Let's say that X is going to initiate the connection. X will first open a connection to Y. This connection is where all of the actual communication will take place.
**Communication over one connection with multiple protocols**: X and Y can communicate over the same connection using different protocols and the multiplexer will appropriately route messages for a given protocol to a particular handler function for that protocol, which allows for each host to handle different protocols with separate functions. Furthermore, we can use multiple streams for a given protocol that allow for the same protocol and same underlying connection to be used for communication about separate topics between nodes X and Y.
**Why use multiple streams?**: The purpose of using the same connection for multiple streams to communicate over is to avoid the overhead of having multiple connections between X and Y. In order for X and Y to differentiate between messages on different streams and different protocols, a multiplexer is used to encode the messages when a message will be sent and decode a message when a message is received. The multiplexer encodes the message by adding a header to the beginning of any message to be sent that contains the stream id (along with some other info). Then, the message is sent across the raw connection and the receiving host will use its multiplexer to decode the message, i.e. determine which stream id the message should be routed to.
Raw data
{
"_id": null,
"home_page": null,
"name": "libp2p",
"maintainer": null,
"docs_url": null,
"requires_python": "<4.0,>=3.10",
"maintainer_email": null,
"keywords": "libp2p, p2p",
"author": null,
"author_email": "The Ethereum Foundation <snakecharmers@ethereum.org>",
"download_url": "https://files.pythonhosted.org/packages/a8/f9/0441612577940f95d17943b7cdc3ad2a26665b5e01576c86f4b60c0c998c/libp2p-0.2.9.tar.gz",
"platform": null,
"description": "# py-libp2p\n\n<h1 align=\"center\">\n <a href=\"https://libp2p.io/\"><img width=\"250\" src=\"https://github.com/libp2p/py-libp2p/blob/main/assets/py-libp2p-logo.png?raw=true\" alt=\"py-libp2p hex logo\" /></a>\n</h1>\n\n<h3 align=\"center\">The Python implementation of the libp2p networking stack.</h3>\n\n[](https://discord.gg/hQJnbd85N6)\n[](https://badge.fury.io/py/libp2p)\n[](https://pypi.python.org/pypi/libp2p)\n[](https://github.com/libp2p/py-libp2p/actions/workflows/tox.yml)\n[](http://py-libp2p.readthedocs.io/en/latest/?badge=latest)\n\n> \u26a0\ufe0f **Warning:** py-libp2p is an experimental and work-in-progress repo under development. We do not yet recommend using py-libp2p in production environments.\n\nRead more in the [documentation on ReadTheDocs](https://py-libp2p.readthedocs.io/). [View the release notes](https://py-libp2p.readthedocs.io/en/latest/release_notes.html).\n\n## Maintainers\n\nCurrently maintained by [@pacrob](https://github.com/pacrob), [@seetadev](https://github.com/seetadev) and [@dhuseby](https://github.com/dhuseby), looking for assistance!\n\n## Feature Breakdown\n\npy-libp2p aims for conformity with [the standard libp2p modules](https://libp2p.io/implementations/). Below is a breakdown of the modules we have developed, are developing, and may develop in the future.\n\n> Legend: \u2705: Done \u00a0\ud83d\udee0\ufe0f: In Progress/Usable\u00a0 \ud83c\udf31 Prototype/Unstable \u00a0\u274c: Missing\n\n______________________________________________________________________\n\n### Transports\n\n| **Transport** | **Status** | **Source** |\n| -------------------------------------- | :--------: | :---------------------------------------------------------------------------------: |\n| **`libp2p-tcp`** | \u2705 | [source](https://github.com/libp2p/py-libp2p/blob/main/libp2p/transport/tcp/tcp.py) |\n| **`libp2p-quic`** | \ud83c\udf31 | |\n| **`libp2p-websocket`** | \u274c | |\n| **`libp2p-webrtc-browser-to-server`** | \u274c | |\n| **`libp2p-webrtc-private-to-private`** | \u274c | |\n\n______________________________________________________________________\n\n### NAT Traversal\n\n| **NAT Traversal** | **Status** |\n| ----------------------------- | :--------: |\n| **`libp2p-circuit-relay-v2`** | \u274c |\n| **`libp2p-autonat`** | \u274c |\n| **`libp2p-hole-punching`** | \u274c |\n\n______________________________________________________________________\n\n### Secure Communication\n\n| **Secure Communication** | **Status** | **Source** |\n| ------------------------ | :--------: | :---------------------------------------------------------------------------: |\n| **`libp2p-noise`** | \ud83c\udf31 | [source](https://github.com/libp2p/py-libp2p/tree/main/libp2p/security/noise) |\n| **`libp2p-tls`** | \u274c | |\n\n______________________________________________________________________\n\n### Discovery\n\n| **Discovery** | **Status** |\n| -------------------- | :--------: |\n| **`bootstrap`** | \u274c |\n| **`random-walk`** | \u274c |\n| **`mdns-discovery`** | \u274c |\n| **`rendezvous`** | \u274c |\n\n______________________________________________________________________\n\n### Peer Routing\n\n| **Peer Routing** | **Status** |\n| -------------------- | :--------: |\n| **`libp2p-kad-dht`** | \u274c |\n\n______________________________________________________________________\n\n### Publish/Subscribe\n\n| **Publish/Subscribe** | **Status** | **Source** |\n| ---------------------- | :--------: | :--------------------------------------------------------------------------------: |\n| **`libp2p-floodsub`** | \u2705 | [source](https://github.com/libp2p/py-libp2p/blob/main/libp2p/pubsub/floodsub.py) |\n| **`libp2p-gossipsub`** | \u2705 | [source](https://github.com/libp2p/py-libp2p/blob/main/libp2p/pubsub/gossipsub.py) |\n\n______________________________________________________________________\n\n### Stream Muxers\n\n| **Stream Muxers** | **Status** | **Status** |\n| ------------------ | :--------: | :----------------------------------------------------------------------------------------: |\n| **`libp2p-yamux`** | \ud83c\udf31 | |\n| **`libp2p-mplex`** | \ud83d\udee0\ufe0f | [source](https://github.com/libp2p/py-libp2p/blob/main/libp2p/stream_muxer/mplex/mplex.py) |\n\n______________________________________________________________________\n\n### Storage\n\n| **Storage** | **Status** |\n| ------------------- | :--------: |\n| **`libp2p-record`** | \u274c |\n\n______________________________________________________________________\n\n### General Purpose Utilities & Datatypes\n\n| **Utility/Datatype** | **Status** | **Source** |\n| --------------------- | :--------: | :------------------------------------------------------------------------------------------: |\n| **`libp2p-ping`** | \u2705 | [source](https://github.com/libp2p/py-libp2p/blob/main/libp2p/host/ping.py) |\n| **`libp2p-peer`** | \u2705 | [source](https://github.com/libp2p/py-libp2p/tree/main/libp2p/peer) |\n| **`libp2p-identify`** | \u2705 | [source](https://github.com/libp2p/py-libp2p/blob/main/libp2p/identity/identify/identify.py) |\n\n______________________________________________________________________\n\n## Explanation of Basic Two Node Communication\n\n### Core Concepts\n\n_(non-normative, useful for team notes, not a reference)_\n\nSeveral components of the libp2p stack take part when establishing a connection between two nodes:\n\n1. **Host**: a node in the libp2p network.\n1. **Connection**: the layer 3 connection between two nodes in a libp2p network.\n1. **Transport**: the component that creates a _Connection_, e.g. TCP, UDP, QUIC, etc.\n1. **Streams**: an abstraction on top of a _Connection_ representing parallel conversations about different matters, each of which is identified by a protocol ID. Multiple streams are layered on top of a _Connection_ via the _Multiplexer_.\n1. **Multiplexer**: a component that is responsible for wrapping messages sent on a stream with an envelope that identifies the stream they pertain to, normally via an ID. The multiplexer on the other unwraps the message and routes it internally based on the stream identification.\n1. **Secure channel**: optionally establishes a secure, encrypted, and authenticated channel over the _Connection_.\n1. **Upgrader**: a component that takes a raw layer 3 connection returned by the _Transport_, and performs the security and multiplexing negotiation to set up a secure, multiplexed channel on top of which _Streams_ can be opened.\n\n### Communication between two hosts X and Y\n\n_(non-normative, useful for team notes, not a reference)_\n\n**Initiate the connection**: A host is simply a node in the libp2p network that is able to communicate with other nodes in the network. In order for X and Y to communicate with one another, one of the hosts must initiate the connection. Let's say that X is going to initiate the connection. X will first open a connection to Y. This connection is where all of the actual communication will take place.\n\n**Communication over one connection with multiple protocols**: X and Y can communicate over the same connection using different protocols and the multiplexer will appropriately route messages for a given protocol to a particular handler function for that protocol, which allows for each host to handle different protocols with separate functions. Furthermore, we can use multiple streams for a given protocol that allow for the same protocol and same underlying connection to be used for communication about separate topics between nodes X and Y.\n\n**Why use multiple streams?**: The purpose of using the same connection for multiple streams to communicate over is to avoid the overhead of having multiple connections between X and Y. In order for X and Y to differentiate between messages on different streams and different protocols, a multiplexer is used to encode the messages when a message will be sent and decode a message when a message is received. The multiplexer encodes the message by adding a header to the beginning of any message to be sent that contains the stream id (along with some other info). Then, the message is sent across the raw connection and the receiving host will use its multiplexer to decode the message, i.e. determine which stream id the message should be routed to.\n",
"bugtrack_url": null,
"license": "MIT AND Apache-2.0",
"summary": "libp2p: The Python implementation of the libp2p networking stack",
"version": "0.2.9",
"project_urls": {
"Homepage": "https://github.com/libp2p/py-libp2p"
},
"split_keywords": [
"libp2p",
" p2p"
],
"urls": [
{
"comment_text": null,
"digests": {
"blake2b_256": "dd39cf3f80062ede9a4920403dcb625723c9ea20ee95e24ecc240a8036646ff9",
"md5": "a1e22b788f39ef567ad59b6614067171",
"sha256": "10caf7b67ed3e0b125d5ea8097b25c00a6ef8b293d5b1905e7f71ff5ec03551f"
},
"downloads": -1,
"filename": "libp2p-0.2.9-py3-none-any.whl",
"has_sig": false,
"md5_digest": "a1e22b788f39ef567ad59b6614067171",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": "<4.0,>=3.10",
"size": 241631,
"upload_time": "2025-07-09T21:20:10",
"upload_time_iso_8601": "2025-07-09T21:20:10.610680Z",
"url": "https://files.pythonhosted.org/packages/dd/39/cf3f80062ede9a4920403dcb625723c9ea20ee95e24ecc240a8036646ff9/libp2p-0.2.9-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a8f90441612577940f95d17943b7cdc3ad2a26665b5e01576c86f4b60c0c998c",
"md5": "da4b404ffb6bdd106790191455adbd11",
"sha256": "300b8b2a95a795628b370cf260a1988f17bb81344c3bcaf17f5daa688081c6e6"
},
"downloads": -1,
"filename": "libp2p-0.2.9.tar.gz",
"has_sig": false,
"md5_digest": "da4b404ffb6bdd106790191455adbd11",
"packagetype": "sdist",
"python_version": "source",
"requires_python": "<4.0,>=3.10",
"size": 277873,
"upload_time": "2025-07-09T21:20:13",
"upload_time_iso_8601": "2025-07-09T21:20:13.421923Z",
"url": "https://files.pythonhosted.org/packages/a8/f9/0441612577940f95d17943b7cdc3ad2a26665b5e01576c86f4b60c0c998c/libp2p-0.2.9.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-07-09 21:20:13",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "libp2p",
"github_project": "py-libp2p",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"tox": true,
"lcname": "libp2p"
}