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.4.0.tar.gz (12.2 kB view details)

Uploaded Source

Built Distribution

ocpp_asgi-0.4.0-py3-none-any.whl (12.0 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: ocpp_asgi-0.4.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/22.1.0

File hashes

Hashes for ocpp_asgi-0.4.0.tar.gz
Algorithm Hash digest
SHA256 108401967808a3257b5b33a27e6224181aa9f2402aceaa79ea0c11305cb2ee2b
MD5 07bd3c88647aad1e665a73986b756a40
BLAKE2b-256 d796e7155c7bea93a3aa0eea188e8e6940d870c7feb0200696136d260406130e

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for ocpp_asgi-0.4.0-py3-none-any.whl
Algorithm Hash digest
SHA256 f7d14f067ea44ed4196d42ba77e287634f013f5e10b1f8b42ef37b4203a47405
MD5 41e86ee58f32668ede8e0463f0d48be0
BLAKE2b-256 f7d6000f266d494f8c305c72b435d17eff0f1292c91454cc53e2d7b6f391790c

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