Skip to main content

Python client for the Ökobox Online e-commerce API - food delivery and subscription services

Project description

Pyoekoboxonline

A Python client library for the Ökobox Online e-commerce REST API. This library provides an easy-to-use, async interface for interacting with organic food delivery and subscription services.

Note: This library is designed to be compatible with Home Assistant custom integrations.

Requirements

  • Python 3.11+ - Modern Python features and performance improvements
  • Async/await support - Built with modern Python async patterns

Features

  • Type hints - Full type annotation support with mypy
  • Pydantic models - Robust data validation and serialization
  • Comprehensive error handling - Detailed exception hierarchy
  • Well tested - High test coverage with pytest
  • Production ready - Follows Python packaging best practices

Installation

pip install pyoekoboxonline

Note: Requires Python 3.11 or higher.

Quick Start

import asyncio
from pyoekoboxonline import OekoboxClient

async def main():
    # First, discover available shops
    shops = await OekoboxClient.get_available_shops()
    print(f"Found {len(shops)} shops")

    # Connect to a specific shop
    client = OekoboxClient(
        shop_id="your_shop_id",  # From shop list
        username="your-username",
        password="your-password"
    )

    async with client:
        # Login
        user = await client.login()
        print(f"Hello, {user.username}!")

        # Browse product categories
        groups = await client.get_groups()
        for group in groups:
            print(f"Category: {group.name}")

        # Browse products
        items = await client.get_items()
        for item in items:
            print(f"{item.name}: {item.price}")

        # Add items to cart
        await client.add_to_cart("item_123", quantity=2.0)

        # View orders
        orders = await client.get_orders()
        for order in orders:
            print(f"Order {order.id}: {order.total_amount}")

asyncio.run(main())

API Reference

Client

OekoboxClient(shop_id, username, password, base_url=None, timeout=30.0)

The main client class for interacting with the Ökobox Online API.

Parameters:

  • shop_id (str): Shop identifier from the shop list
  • username (str): Your account username
  • password (str): Your account password
  • base_url (str, optional): Custom base URL (auto-detected from shop_id)
  • timeout (float, optional): Request timeout in seconds

Shop Discovery

await OekoboxClient.get_available_shops() -> List[Shop]

Get list of available Ökobox Online shops with location data.

Authentication

await client.login() -> UserInfo

Authenticate and establish session.

await client.logout()

Clear session and logout.

Product Catalog

await client.get_groups() -> List[Group]

Get product categories.

await client.get_items(group_id=None, subgroup_id=None) -> List[Item]

Get available products, optionally filtered by category.

await client.search_items(query: str) -> List[Item]

Search for products by name or description.

Shopping Cart

await client.get_cart() -> List[CartItem]

Get current cart contents.

await client.add_to_cart(item_id: str, quantity: float)

Add item to cart.

await client.clear_cart()

Clear all items from cart.

Orders

await client.get_orders() -> List[Order]

Get customer's orders.

await client.create_order() -> Order

Create order from current cart.

Error Handling

from pyoekoboxonline.exceptions import (
    OekoboxAuthenticationError,
    OekoboxConnectionError,
    OekoboxAPIError
)

try:
    user = await client.login()
except OekoboxAuthenticationError:
    print("Invalid credentials")
except OekoboxConnectionError as e:
    print(f"Connection error: {e}")
except OekoboxAPIError as e:
    print(f"API error: {e.message} (status: {e.status_code})")

Development

Setup

# Clone the repository
git clone https://github.com/usimd/pyoekoboxonline.git
cd pyoekoboxonline

# Install with uv (recommended) - requires Python 3.11+
uv sync --dev

# Or with pip
pip install -e ".[dev]"

Testing

# Run tests
uv run pytest

# Run tests with coverage
uv run pytest --cov=src --cov-report=html

Code Quality

# Run all pre-commit hooks (includes ruff, mypy, bandit, etc.)
uv run pre-commit run --all-files

# Install pre-commit hooks for automatic checking
uv run pre-commit install

License

This project is licensed under the MIT License - see the LICENSE file for details.

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

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

pyoekoboxonline-0.1.0b1.tar.gz (26.6 kB view details)

Uploaded Source

Built Distribution

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

pyoekoboxonline-0.1.0b1-py3-none-any.whl (28.1 kB view details)

Uploaded Python 3

File details

Details for the file pyoekoboxonline-0.1.0b1.tar.gz.

File metadata

  • Download URL: pyoekoboxonline-0.1.0b1.tar.gz
  • Upload date:
  • Size: 26.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.3

File hashes

Hashes for pyoekoboxonline-0.1.0b1.tar.gz
Algorithm Hash digest
SHA256 d908beee8fa86daca9d1cf96f51b8fd8da45b14df22836eeda9b50f0c8726830
MD5 c4b2d9336f211d01800c106e63e471ad
BLAKE2b-256 39eee5880acc57e56b9697ec153557b8956830aef4af1690f837ee870c43f2c1

See more details on using hashes here.

File details

Details for the file pyoekoboxonline-0.1.0b1-py3-none-any.whl.

File metadata

File hashes

Hashes for pyoekoboxonline-0.1.0b1-py3-none-any.whl
Algorithm Hash digest
SHA256 b8aa2e7418e998978a638e71edb2073cf7aa804e7e4d4e024821913708ab1748
MD5 be5c156d055f1f3b0afa20d51b155741
BLAKE2b-256 f6f4bee0574f0a8bbbf7ddd9ac187ded370b79566c7598ba983d885611453da7

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