Skip to main content

vnbdigital-client

PyPI Python Publish GitHub issues License: MIT uv Ruff

A Python client library and CLI tool for accessing vnbdigital.de grid operator (Verteilnetzbetreiber) data. This package abstracts the GraphQL API and provides a simple, intuitive interface for looking up operators by their BDEW code.

Features

  • Simple Python API for vnbdigital.de grid operator data
  • Command-line interface (CLI) for quick lookups
  • Unified search API matching the vnbdigital.de website (search for postcodes, operators, regions)
  • Direct postcode-based and coordinate-based network operator search
  • Typed dataclasses (Operator, Region, Postcode, SearchResult) for structured results
  • Batch lookups for multiple operators
  • BDEW company and market function lookup via bdew-codes.de (address, contact details)
  • Built with modern Python tooling (uv, pyproject.toml)
  • Dev container support for easy development
  • Comprehensive test coverage

Installation

From PyPI (when published)

pip install vnbdigital-client

Oder mit uv:

uv add vnbdigital-client

From source with uv

# Clone the repository
git clone https://github.com/the78mole/vnbdigital-client.git
cd vnbdigital-client

# Install uv if you haven't already
curl -LsSf https://astral.sh/uv/install.sh | sh

# Run directly (uv creates the venv and installs dependencies automatically)
uv run vnbdigital --help

Usage

Python API

from vnbdigital_client import VNBDigitalClient

client = VNBDigitalClient()

# Look up a grid operator by BDEW code / ID
operator = client.get_operator("179")
if operator:
    print(f"{operator.name} - {operator.postcode} {operator.city}")
    print(f"Website: {operator.website}")
    for region in operator.regions:
        print(f"  Region: {region.name}")

# Get detailed information (types, description, services, documents, ...)
details = client.get_operator_details("179")
if details:
    print(f"Typ: {', '.join(details.types)}")
    print(f"Beschreibung: {details.description}")
    print(f"Aufrufe: {details.clicks}")

# Batch lookup for multiple operators
results = client.get_operators(["179", "180", "181"])
for oid, op in results.items():
    if op:
        print(f"[{oid}] {op.name}")
    else:
        print(f"[{oid}] not found")

# Unified search (same API as vnbdigital.de website)
# Search for postal codes, operators, regions, locations, etc.
search_results = client.search("91058")
for result in search_results:
    print(f"{result.type}: {result.title} - {result.subtitle}")

# Get network operators for a POSTCODE result
postcode_hit = next(r for r in search_results if r.type == "POSTCODE")
detail = client.search_by_postcode(postcode_hit.id)
for vnb in detail.get("vnbs", []):
    print(f"  - {vnb['name']}")

# Get network operators for a LOCATION result (coordinates lookup)
location_hit = next(r for r in search_results if r.type == "LOCATION")
# Extract coordinates from URL: /overview?coordinates=lat,lon&searchType=LOCATION
coords = location_hit.url.split("coordinates=")[1].split("&")[0]
detail = client.search_by_coordinates(coords)
for vnb in detail.get("vnbs", []):
    print(f"  - {vnb['name']}")

# BDEW lookup by company code (6–7 digits) — returns all market functions
from vnbdigital_client import lookup_bdew_by_company_code, lookup_bdew_by_market_code, lookup_bdew_market_function_detail

result = lookup_bdew_by_company_code(660188)
if result:
    print(f"{result['name']} ({result['code']})")
    for mf in result["market_functions"]:
        print(f"  {mf['bdew_code']}  {mf['function']}{mf['contact']}")
        # Optionally fetch full address and contact details:
        detail = lookup_bdew_market_function_detail(mf["id"])
        print(f"    {detail['zip']} {detail['city']}, Tel: {detail['phone']}")

# BDEW lookup by 13-digit market function code — returns only the matching entry
result = lookup_bdew_by_market_code("9903445000000")
if result:
    print(result)

Command-Line Interface

The package includes a CLI tool for easy command-line access:

# Basic operator lookup
vnbdigital operator 179

# Detailed information
vnbdigital details 179

# JSON output
vnbdigital operator 179 --format json

# Batch lookup
vnbdigital batch 179 180 181

# Unified search (same as vnbdigital.de website)
# Search for postal codes, operators, regions, etc.
vnbdigital search 90158
vnbdigital search "Stadtwerke"

# Search with details for postcode and location results
vnbdigital search 90158 --details

# Search with JSON output
vnbdigital search 90158 --format json

# Look up network operators by geographic coordinates (lat,lon)
vnbdigital coordinates "49.5510,11.1101"

# Coordinates with JSON output
vnbdigital coordinates "49.5510,11.1101" --format json

# Coordinates with custom voltage filter
vnbdigital coordinates "49.5510,11.1101" --voltage Niederspannung

# BDEW company lookup by 6–7-digit company code
vnbdigital bdew 660188

# BDEW lookup by 13-digit market function code
vnbdigital bdew 9903445000000

# With full address and contact details per market function
vnbdigital bdew 660188 --details
vnbdigital bdew 9903445000000 --details

# BDEW output as JSON (combinable with --details)
vnbdigital bdew 660188 --json
vnbdigital bdew 660188 --details --json

# Override bdew-codes.de base URL via environment variable
export BDEW_LOOKUP_URL="https://bdew-codes.de"
vnbdigital bdew 660188

# Override API URL via environment variable
export VNBDIGITAL_API_URL="https://www.vnbdigital.de/gateway/graphql"
vnbdigital operator 179

Development

Using Dev Container

This project includes a dev container configuration for easy development:

  1. Open the project in VS Code
  2. Install the "Dev Containers" extension
  3. Click "Reopen in Container" when prompted
  4. The workspace is mounted into the container automatically
  5. When you run the first uv command, it will create a .venv and install dependencies

Manual Setup

# Install uv
curl -LsSf https://astral.sh/uv/install.sh | sh

# Run tests (uv automatically creates a .venv and installs all dependencies)
uv run --extra dev pytest

# Run linting
uv run --extra dev ruff check src/

# Format code
uv run --extra dev black src/

# Type checking
uv run --extra dev mypy src/vnbdigital_client/

Running Tests

# Run all tests
uv run --extra dev pytest

# Run with coverage
uv run --extra dev pytest --cov=vnbdigital_client --cov-report=html

# Run specific test file
uv run --extra dev pytest tests/test_client.py

Project Structure

vnbdigital-client/
├── .devcontainer/          # Dev container configuration
│   ├── Dockerfile
│   └── devcontainer.json
├── .github/
│   └── workflows/          # GitHub Actions workflows
│       ├── ci.yml         # Continuous integration
│       └── publish.yml    # PyPI publishing
├── src/
│   └── vnbdigital_client/  # Main package
│       ├── __init__.py
│       ├── client.py       # API client
│       └── cli.py          # CLI tool
├── tests/                  # Test suite
│   ├── test_client.py
│   └── test_cli.py
├── pyproject.toml          # Project configuration
├── renovate.json           # Renovate config
└── README.md

Configuration

Environment Variables

Renovate

This project uses Renovate for automated dependency updates. Configuration is in renovate.json.

Contributing

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

  1. Fork the repository
  2. Create your feature branch (git checkout -b feature/amazing-feature)
  3. Commit your changes (git commit -m 'Add some amazing feature')
  4. Push to the branch (git push origin feature/amazing-feature)
  5. Open a Pull Request

License

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

Author

Daniel Glaser

Acknowledgments

  • Built with uv - A fast Python package installer
  • CLI built with Click
  • Data provided by vnbdigital.de

Download files

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

Source Distribution

vnbdigital_client-0.4.12.tar.gz (106.9 kB view details)

Uploaded Source

Built Distribution

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

vnbdigital_client-0.4.12-py3-none-any.whl (17.5 kB view details)

Uploaded Python 3

File details

Details for the file vnbdigital_client-0.4.12.tar.gz.

File metadata

  • Download URL: vnbdigital_client-0.4.12.tar.gz
  • Upload date:
  • Size: 106.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for vnbdigital_client-0.4.12.tar.gz
Algorithm Hash digest
SHA256 e5dc8c7877c37cc260ad3f13fbe9e3aa014e9ff04fadcf5ebd88d41f305a8b6b
MD5 2073b03fd8f538df615dc10ea164ce59
BLAKE2b-256 bc0aa55d62a6227ab1b27324751c27d7c71d97ce39f4cfe1c666b723f08440be

See more details on using hashes here.

Provenance

The following attestation bundles were made for vnbdigital_client-0.4.12.tar.gz:

Publisher: publish.yml on the78mole/vnbdigital-client

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file vnbdigital_client-0.4.12-py3-none-any.whl.

File metadata

File hashes

Hashes for vnbdigital_client-0.4.12-py3-none-any.whl
Algorithm Hash digest
SHA256 26b04a3d8d4ca564e0da40a2bae2806f60f446abdb6c382183e38fa0d57c7f94
MD5 64fc1206ae4b61efe2cf44524ffbc6c3
BLAKE2b-256 65d202aae711fcfdac5a85e735888f09be84b0b8ec019d5f6b02f58d0561db20

See more details on using hashes here.

Provenance

The following attestation bundles were made for vnbdigital_client-0.4.12-py3-none-any.whl:

Publisher: publish.yml on the78mole/vnbdigital-client

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

0.4.13

2 files

This release

0.4.12 This release

2 files

0.4.11

2 files

0.4.10

2 files

0.4.9

2 files

0.4.8

2 files

0.4.7

2 files

0.4.6

2 files

0.4.5

2 files

0.4.4

2 files

0.4.3

2 files

0.4.2

2 files

0.4.1

2 files

0.4.0

2 files

0.3.0

2 files

0.2.0

2 files

0.1.4

2 files

0.1.3

2 files

0.1.2

2 files

0.1.1

2 files

0.1.0

2 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