Skip to main content

ocpp-asgi provides ASGI compliant interface for implementing event-driven server-side support for OCPP protocol with Python

Project description

main Package version


OCPP-ASGI

ocpp-asgi provides ASGI compliant interface for implementing event-driven server-side support for OCPP protocol with Python. It depends on and extends mobilityhouse/ocpp.

The key features are:

  • ASGI compliant interface supporting both WebSocket and HTTP protocols.
  • Event-driven and "stateless" approach for implementing action handlers for OCPP messages.
  • Highly-scalable and supports serverless (e.g. AWS Lambda, Azure Functions) with compatible ASGI server.
  • Requires small and straightforward changes from ocpp to action handlers (but is not backwards compatible).

Read the blog post about the motivation behind creating this library.

Disclaimer!

This library is still in alpha state. At the moment I don't have time nor immediate business need to invest in further development. However, I'm happy to discuss and help if you are considering the benefits of using this library in you project.

Please send email if you have any questions about this library or have some business inquiries in mind.

Getting started

Installation

pip install ocpp-asgi

Also ASGI server is required e.g. uvicorn or mangum when deployed to AWS Lambda with API Gateway.

pip install uvicorn

Action handlers

Decorating OCPP message action handlers follows the similar approach as in ocpp-library. However, you don't need to define classes per OCPP protocol version.

# provisioning_router.py
from datetime import datetime

from ocpp.v16 import call, call_result
from ocpp.v16.enums import Action, RegistrationStatus

from ocpp_asgi.router import HandlerContext, Router, Subprotocol

router = Router(subprotocol=Subprotocol.ocpp16)


@router.on(Action.BootNotification)
async def on_boot_notification(
    *, payload: call.BootNotificationPayload, context: HandlerContext
) -> call_result.BootNotificationPayload:
    id = context.charging_station_id
    print(f"(Central System) on_boot_notification Charging Station {id=}")
    # Do something with the payload...
    return call_result.BootNotificationPayload(
        current_time=datetime.utcnow().isoformat(),
        interval=10,
        status=RegistrationStatus.accepted,
    )

Central System

Central System is a collection of routes. You implement it by subclassing from ocpp_asti.ASGIApplication and overriding necessary methods to accommodate your needs. Here's a minimal example using uvicorn.

# central_system.py
import uvicorn
from provisioning_router import router
from ocpp_asgi.app import ASGIApplication, RouterContext, Subprotocol


class CentralSystem(ASGIApplication):
    """Central System is collection of routers."""


if __name__ == "__main__":
    central_system = CentralSystem()
    central_system.include_router(router)
    subprotocols = f"{Subprotocol.ocpp16}"
    headers = [("Sec-WebSocket-Protocol", subprotocols)]
    uvicorn.run(central_system, host="0.0.0.0", port=9000, headers=headers)

Run the examples

In order to run the examples clone the ocpp-asgi repository and install dependencies. Poetry and pyenv are recommended.

There are two kind of examples how to implement central system with ocpp-asgi: standalone and serverless. Both examples use same ocpp action handlers (routers).

Standalone example

Run the following commands e.g. in different terminal windows (or run the files within IDE).

Start Central System:

python ./examples/central_system/standalone/central_system.py

Start Charging Station:

python ./examples/charging_station.py

Serverless example

Run the following commands in different terminal windows (or run the files within IDE). Of course when you run the example like this it's not really serverless. But deploying something central_system_http.py to e.g. AWS Lambda and running it with Mangum ASGI server is totally possible.

Start Central System HTTP backend:

python ./examples/central_system/serverless/central_system_http.py

Start Central System WebSocket proxy:

python ./examples/central_system/serverless/central_system_proxy.py

Start Charging Station:

python ./examples/charging_station.py

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

ocpp_asgi-0.3.0.tar.gz (12.2 kB view details)

Uploaded Source

Built Distribution

ocpp_asgi-0.3.0-py3-none-any.whl (11.9 kB view details)

Uploaded Python 3

File details

Details for the file ocpp_asgi-0.3.0.tar.gz.

File metadata

  • Download URL: ocpp_asgi-0.3.0.tar.gz
  • Upload date:
  • Size: 12.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.1.12 CPython/3.8.10 Darwin/20.3.0

File hashes

Hashes for ocpp_asgi-0.3.0.tar.gz
Algorithm Hash digest
SHA256 6f42365aa0c47bedc9e04eae4eab0467e41eb7350f095f3f0753ea9cf6d01406
MD5 8202ffa090ebde36dced05575611e806
BLAKE2b-256 7afbda5e651757749777b6655944ca040b416abc1ddd9649af3d4cde524ba448

See more details on using hashes here.

File details

Details for the file ocpp_asgi-0.3.0-py3-none-any.whl.

File metadata

  • Download URL: ocpp_asgi-0.3.0-py3-none-any.whl
  • Upload date:
  • Size: 11.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.1.12 CPython/3.8.10 Darwin/20.3.0

File hashes

Hashes for ocpp_asgi-0.3.0-py3-none-any.whl
Algorithm Hash digest
SHA256 0b654b73ae5d9818c1cacc92040eaa86d0ccf5fee69029baf46c77459dd7e226
MD5 2fa2c04ac7908565b18cee0ca7e1662d
BLAKE2b-256 22834828bebcb0d8488a7e6bcc4934c12a0509ad4c79453159204be93ed22566

See more details on using hashes here.

Supported by

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