Skip to main content

py-libp2p

py-libp2p hex logo

The Python implementation of the libp2p networking stack.

Discord PyPI version Python versions Build Status Docs build

py-libp2p has moved beyond its experimental roots and is steadily progressing toward production readiness. The core features are stable, and we’re focused on refining performance, expanding protocol support, and ensuring smooth interop with other libp2p implementations. We welcome contributions and real-world usage feedback to help us reach full production maturity.

Read more in the documentation on ReadTheDocs. View the release notes.

Maintainers

Currently maintained by @pacrob, @seetadev and @dhuseby. Please reach out to us for collaboration or active feedback. If you have questions, feel free to open a new discussion. We are also available on the libp2p Discord — join us at #py-libp2p sub-channel.

Feature Breakdown

py-libp2p aims for conformity with the standard libp2p modules. 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
libp2p-quic source
libp2p-websocket source
libp2p-webrtc-browser-to-server 🌱
libp2p-webrtc-private-to-private 🌱

NAT Traversal

NAT Traversal Status Source
libp2p-circuit-relay-v2 source
libp2p-autonat source
libp2p-hole-punching source

Secure Communication

Secure Communication Status Source
libp2p-noise source
libp2p-tls

Discovery

Discovery Status Source
bootstrap source
random-walk source
mdns-discovery source
rendezvous source

Peer Routing

Peer Routing Status Source
libp2p-kad-dht source

Publish/Subscribe

Publish/Subscribe Status Source
libp2p-floodsub source
libp2p-gossipsub source

Stream Muxers

Stream Muxers Status Source
libp2p-yamux source
libp2p-mplex source

Storage

Storage Status
libp2p-record

General Purpose Utilities & Datatypes

Utility/Datatype Status Source
libp2p-ping source
libp2p-peer source
libp2p-identify source

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.
  2. Connection: the layer 3 connection between two nodes in a libp2p network.
  3. Transport: the component that creates a Connection, e.g. TCP, UDP, QUIC, etc.
  4. 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.
  5. 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.
  6. Secure channel: optionally establishes a secure, encrypted, and authenticated channel over the Connection.
  7. 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.

Support

Support py-libp2p on drips.network

Release files for libp2p 0.7.0

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for libp2p 0.7.0
File Size Uploaded
libp2p-0.7.0.tar.gz 2.1 MB Details

Built distribution (wheel)

Table of built distributions (wheels) for libp2p 0.7.0
File Interpreter ABI Platform
libp2p-0.7.0-py3-none-any.whl Python 3 none any Details

Total release size: 3.2 MB

Release files / libp2p-0.7.0.tar.gz

Download URL libp2p-0.7.0.tar.gz
Size 2.1 MB
Tags Source
SHA-256 checksum
How to use checksums
143923498adbd05d55546d59c522b297dd914035f2dd30a3df682096bef4ba00
BLAKE2b-256 checksum
How to use checksums
c4a2f16c5d2dc5bfb5413f4cb734f0da0d1f14af0614832aa7091f54c35031e4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.2

Release files / libp2p-0.7.0-py3-none-any.whl

Download URL libp2p-0.7.0-py3-none-any.whl
Size 1.1 MB
Tags Python 3
SHA-256 checksum
How to use checksums
3989d2dc3432c478833eb6aaa0d2a18627e08e56164644fdf0739af258bf39c4
BLAKE2b-256 checksum
How to use checksums
26520f964cc80f7a45b74207974c1ae013dcfd435967f7a437e160ab4fbffed5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.2

Release history Release notifications | RSS feed

This release

0.7.0 This release

2 release files

0.6.0

2 release files

0.5.0

2 release files

0.4.0

2 release files

0.3.0

2 release files

0.2.9

2 release files

0.2.8

2 release files

0.2.7

2 release files

0.2.6

2 release files

0.2.5

2 release files

0.2.4

2 release files

0.2.3

2 release files

0.2.2

2 release files

0.2.1

2 release files

0.2.0

2 release files

0.1.5

2 release files

0.1.4

2 release files

0.1.3

2 release files

0.1.2

2 release files

0.1.1

2 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page