Skip to main content

Sokoweb package

Project description

SokoWeb – DHT-Based Commerce Network

Distributed commerce network using Kademlia DHT for peer-to-peer product/service listings, search, and discovery

Quick Start

pip install sokoweb
sokoweb-up

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
  • docker-compose

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 products
  • products:read - View products
  • credits:manage - Purchase/manage credits
  • categories:write - Suggest categories
  • categories: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": {
      "brand": "Example",
      "condition": "new"
    }
  }'

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>"

Credits Management

Check Balance

curl http://localhost:8000/credits/balance \
  -H "Authorization: Bearer <your_token>"

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>"

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"
  }'

Note: Substitute localhost with your Public IP in production. The same applies for port, if it's different in your case.

Docker Management

  • Detach from containers: Ctrl+P followed by Ctrl+Q
  • Stop containers: docker stop <container_name>
  • Remove containers: docker rm -f <container_name>

Contributing

This project is open source and contributions are welcome.

License

MIT License

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

sokoweb-0.1.18.tar.gz (42.8 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

sokoweb-0.1.18-py3-none-any.whl (49.8 kB view details)

Uploaded Python 3

File details

Details for the file sokoweb-0.1.18.tar.gz.

File metadata

  • Download URL: sokoweb-0.1.18.tar.gz
  • Upload date:
  • Size: 42.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.10.12

File hashes

Hashes for sokoweb-0.1.18.tar.gz
Algorithm Hash digest
SHA256 02e6c80364d897f570addc02185b966678e0e03bea88ff39ba7bb3db7b70593e
MD5 acd4af360e5429337645cd48cf06153a
BLAKE2b-256 50494a7092b37edfdb196bbffc90b415fa985d937328e296a481636824c4fea9

See more details on using hashes here.

File details

Details for the file sokoweb-0.1.18-py3-none-any.whl.

File metadata

  • Download URL: sokoweb-0.1.18-py3-none-any.whl
  • Upload date:
  • Size: 49.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.10.12

File hashes

Hashes for sokoweb-0.1.18-py3-none-any.whl
Algorithm Hash digest
SHA256 4f40fc3a5c67af6152c6fe7ed5ccf943ebfd68ab8ecc333a6bfc3c12851628f8
MD5 d7f8973024ecdabbb86c50ea00a7bb01
BLAKE2b-256 2efb6207ad0cf82e1c6a5ffe7daf5c4c04594f0903cffc260a25fd6bafca6fee

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page