Skip to main content

Python implementation of Open Charge Point Interface (OCPI) protocol based on fastapi.

Project description

Extrawest OCPI

pre-commit Code style: black Checked with mypy commit-check


Python implementation of Open Charge Point Interface (OCPI) protocol based on fastapi.


Requirements


Python >= 3.10

Installation


  pip install extrawest-ocpi

Make sure to install any ASGI-server supported by fastapi:

  pip install uvicorn

Environment Variables


To use this project, you will need to add the following environment variables to your .env file

API_KEY ANOTHER_API_KEY PROJECT_NAME BACKEND_CORS_ORIGINS OCPI_HOST OCPI_PREFIX PUSH_PREFIX COUNTRY_CODE PARTY_ID

Usage/Examples


  1. Implement and connect your db methods inside this Crud class.

crud.py

from typing import Any, Tuple
from py_ocpi.core.enums import ModuleID, RoleEnum, Action


class Crud:

    @classmethod
    async def get(cls, module: ModuleID, role: RoleEnum, id, *args, **kwargs) -> Any:
        ...

    @classmethod
    async def list(cls, module: ModuleID, role: RoleEnum, filters: dict, *args, **kwargs) -> Tuple[list, int, bool]:
        ...

    @classmethod
    async def create(cls, module: ModuleID, role: RoleEnum, data: dict, *args, **kwargs) -> Any:
        ...

    @classmethod
    async def update(cls, module: ModuleID, role: RoleEnum, data: dict, id, *args, **kwargs) -> Any:
        ...

    @classmethod
    async def delete(cls, module: ModuleID, role: RoleEnum, id, *args, **kwargs):
        ...

    @classmethod
    async def do(cls, module: ModuleID, role: RoleEnum, action: Action, *args, data: dict = None, **kwargs) -> Any:
        ...
  1. Initialize fastapi application

main.py

from py_ocpi import get_application
from py_ocpi.core.enums import RoleEnum, ModuleID
from py_ocpi.modules.versions.enums import VersionNumber

from crud import Crud


app = get_application(
    version_numbers=[VersionNumber.v_2_1_1, VersionNumber.v_2_2_1],
    roles=[RoleEnum.cpo],
    modules=[ModuleID.locations],
    crud=Crud,
)
  1. Run
  uvicorn main:app --reload

API Reference


As this project is based on fastapi, use /docs or redoc/ to check the documentation after the project is running.

Example: http://127.0.0.1:8000/ocpi/docs/

Roadmap


  • [in progress] Add support for OCPI v2.1.1
    • What's done so far:
      • Add version, credentials and locations module;
      • Add support for initializing v2.1.1;
      • It's now possible to initialize a few versions of ocpi for one project;
      • Minimal required python version is 3.10;

Related


The project was created through inspiration and adaptation of this project PY_OCPI.

License


This project is licensed under the terms of the 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

extrawest_ocpi-2023.9.22.tar.gz (53.9 kB view details)

Uploaded Source

Built Distribution

extrawest_ocpi-2023.9.22-py3-none-any.whl (70.1 kB view details)

Uploaded Python 3

File details

Details for the file extrawest_ocpi-2023.9.22.tar.gz.

File metadata

  • Download URL: extrawest_ocpi-2023.9.22.tar.gz
  • Upload date:
  • Size: 53.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.18

File hashes

Hashes for extrawest_ocpi-2023.9.22.tar.gz
Algorithm Hash digest
SHA256 64daa6e753298c491666e456fa215d923fc802d54eee4424b427696f36494076
MD5 836069375abe1b372be34ba98e9c243c
BLAKE2b-256 026ba53415ecd39b9514d171fd62c9457a875bb53df72044f4039008cece245d

See more details on using hashes here.

File details

Details for the file extrawest_ocpi-2023.9.22-py3-none-any.whl.

File metadata

File hashes

Hashes for extrawest_ocpi-2023.9.22-py3-none-any.whl
Algorithm Hash digest
SHA256 8237756d3efdfb033061a8c1246f02800434e93a018e533307964c725cf3070a
MD5 7310b9c01dfccaa53697d9a1e43cb213
BLAKE2b-256 86f6182326a52fb5768b2c1ee2f1f8e5aeb0767cd9a0242807ce5d0c129df518

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