Sokoweb package
Project description
SokoWeb – DHT-Based Commerce Network
A distributed commerce network using Kademlia DHT for peer-to-peer product/service listings, search, and discovery.
Quick Start
pip install sokoweb==0.1.21
sokoweb-up
or sokoweb-up -d (detached mode)
You'll be prompted for:
NODE_PORT(default: 8000)NODE_TCP_PORT(default: 8500)ADVERTISE_IP(default: localhost)
Note: Use public IP/domain to join network. Localhost works for exploration but won't connect. Tunneling services like Ngrok typically won't work as network requires UDP and TCP access.
Requirements
- Python 3.9+
- Docker 27.3.1+
- docker compose 2.29.7+
API Examples
Register User
curl -X POST http://localhost:8000/register \
-H "Content-Type: application/json" \
-d '{
"username": "alice",
"password": "alice123",
"email": "alice@example.com",
"full_name": "Alice Wonderland",
"phone_number": "+254712345678",
"scopes": ["products:write", "products:read", "credits:manage"]
}'
Get Access Token
curl -X POST http://localhost:8000/token \
-H "Content-Type: application/x-www-form-urlencoded" \
-d "username=alice&password=alice123&scope=products:write products:read credits:manage"
Available scopes:
products:write- Create/modify productsproducts:read- View productscredits:manage- Purchase/manage creditscategories:write- Suggest categoriescategories:read- View categories
Post Product
curl -X POST http://localhost:8000/products \
-H "Authorization: Bearer <your_token>" \
-H "Content-Type: application/json" \
-d '{
"core": {
"name": "Smartphone",
"category": "Electronics",
"price": 500.00,
"description": "New smartphone",
"seller_phone": "+254712345678",
"shop_name": "Tech Store",
"seller_location": [-1.2921, 36.8219]
},
"extended": {
"storage_duration_days": 1,
"tags": ["samsung S21","5G"],
"metadata": { "color": "black" }
}
}'
Upload Product Image
curl -X POST http://localhost:8000/products/{product_id}/image \
-H "Authorization: Bearer <your_token>" \
-F "image=@/path/to/image.jpg"
Retrieve Products
By ID
curl http://localhost:8000/products/{product_id} \
-H "Authorization: Bearer <your_token>"
Search by category/shop
curl "http://localhost:8000/products?category=Electronics&shop_name=Tech%20Store" \
-H "Authorization: Bearer <your_token>"
Search by location (within radius)
curl "http://localhost:8000/products?latitude=-1.2921&longitude=36.8219&radius_km=10" \
-H "Authorization: Bearer <your_token>"
Combined search
curl "http://localhost:8000/products?category=Electronics&latitude=-1.2921&longitude=36.8219&radius_km=5" \
-H "Authorization: Bearer <your_token>"
Retrieve Product Images
1. Retrieve Single Image
Use this to get the first (or only) associated image of a product:
curl "http://localhost:8000/products/{product_id}/image" \
-H "Authorization: Bearer <your_token>"
- Returns the raw bytes of the image (e.g., "image/png" if PNG)
- You can save/open it directly as an image file if you use a tool like curl with "-o" or Postman's "Save Response"
2. Retrieve All Images (Multi-Image ZIP)
Use this to get all images for a product in a single ZIP file:
curl "http://localhost:8000/products/{product_id}/images" \
-H "Authorization: Bearer <your_token>" \
--output images_{product_id}.zip
- Responds with a ZIP file (the beginning bytes are "PK", indicating a .zip)
- If you simply view the response as text, you'll see nonsense characters (binary contents). Instead, save it to disk (e.g., --output in curl) and then open with any ZIP program. You'll find all images included in that archive
Credits Management
Check Balance
curl http://localhost:8000/credits/balance \
-H "Authorization: Bearer <your_token>"
Purchase Credits
curl -X POST http://localhost:8000/credits/purchase \
-H "Authorization: Bearer <your_token>" \
-H "Content-Type: application/json" \
-d '{
"amount": 100,
"phone_number": "+254712345678"
}'
Category Operations
# Suggest a new category (only works in production)
curl -X POST http://<your-public-ip>:8000/categories/suggest \
-H "Authorization: Bearer <your_token>" \
-H "Content-Type: application/json" \
-d '{
"category_name": "Smart Home"
}'
# Retrieve all categories
curl http://localhost:8000/categories \
-H "Authorization: Bearer <your_token>"
Note: Substitute localhost with your Public IP in production. The same applies for port, if it's different in your case.
Network Management
- View your containers:
docker ps - Shut down the network:
sokoweb-down
Contributing
This project is open source and contributions are welcome.
License
MIT License
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 sokoweb-0.1.31.tar.gz.
File metadata
- Download URL: sokoweb-0.1.31.tar.gz
- Upload date:
- Size: 53.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.10.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5c844d2263e8f58ca72a85b3a6cd96e93545a133628d024a58b5fdfbe73ab2fb
|
|
| MD5 |
872d9307b6e3a173459d0e63c0c225c2
|
|
| BLAKE2b-256 |
f0842f2d32a914c4ca25f0344a543b66a32e286bfd8daba2aaf4722c089172e8
|
File details
Details for the file sokoweb-0.1.31-py3-none-any.whl.
File metadata
- Download URL: sokoweb-0.1.31-py3-none-any.whl
- Upload date:
- Size: 62.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.10.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b8019e09790d0f742b4aee53e00e828e8fba0790bd7f1cd895a623143cf04575
|
|
| MD5 |
21a848c9490e0f39ff8040628a24a238
|
|
| BLAKE2b-256 |
c25c454af4862ea9287c7956f66dc3b2488179b87762730e83199e1c627682b8
|