Feedo Network Python SDK
The official Developer SDK for interacting with the Feedo Network.
Feedo is a decentralized network consisting of Search, Consensus, and Storage nodes. This SDK provides a unified, asynchronous interface to interact with all layers of the Feedo Network.
Features
- Dynamic Node Routing: The SDK automatically pings seed nodes and routes your requests to the fastest available node. If a node goes offline, the router instantly falls back to another healthy node.
- Fully Asynchronous: Built on top of
httpxandasynciofor maximum performance in AI agents and backend applications. - Search Module: Execute semantic vector queries, index new documents, and manage deployed websites.
- Consensus Module: Register Decentralized Identifiers (DIDs), resolve
.feedonames, and manage network grants. - Storage Module: Upload, download, and subscribe to data streams on the decentralized storage layer.
Installation
pip install feedo-sdk
Quick Start
import asyncio
from feedo import FeedoClient
async def main():
# Initialize the client. No URLs required, it auto-discovers nodes.
client = FeedoClient()
# 1. Search Network
search_results = await client.search.query("Web3 social network")
print(search_results)
# 2. Consensus Network
name_info = await client.consensus.resolve_name("my-app.feedo")
print(name_info)
# 3. Storage Network
files = await client.storage.get_recent_files()
print(files)
if __name__ == "__main__":
asyncio.run(main())
Architecture
The SDK is divided into three core modules accessible via the FeedoClient:
client.search.*client.consensus.*client.storage.*
Under the hood, a NodeRouter maintains health checks and latency metrics for the seed nodes to ensure high availability.
License
Apache License 2.0
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 feedo_sdk-0.1.1.tar.gz.
File metadata
- Download URL: feedo_sdk-0.1.1.tar.gz
- Upload date:
- Size: 5.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/7.0.0 CPython/3.11.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
93961a0af21a2adb7eca8dd063baa4c38e57a9954c813b56ae6c6a3aad6349f5
|
|
| MD5 |
05a5c47229c1433115df841f4426c362
|
|
| BLAKE2b-256 |
f5036b3f0fbd3eb510d19f8132e3c33608d998d24e4500c73cbfd689abdf1612
|
File details
Details for the file feedo_sdk-0.1.1-py3-none-any.whl.
File metadata
- Download URL: feedo_sdk-0.1.1-py3-none-any.whl
- Upload date:
- Size: 6.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/7.0.0 CPython/3.11.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c14a76bbb23edbcbfd11458e9511eb6f4272195b80fb219329582c436e30ef2d
|
|
| MD5 |
fe5fc2525b08fb0fb79fa3f69082c49d
|
|
| BLAKE2b-256 |
d3a1bf13584d1a3acc9471e8ea1beda43f07904c0c8a44a60caf642d9c5f818b
|