Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
suda committed Jun 26, 2023
1 parent f480402 commit 6ee51d5
Show file tree
Hide file tree
Showing 282 changed files with 44,626 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
__pycache__/
build/
dist/
*.egg-info/
.pytest_cache/

# pyenv
.python-version

# Environments
.env
.venv

# mypy
.mypy_cache/
.dmypy.json
dmypy.json

# JetBrains
.idea/
.vscode/

/coverage.xml
/.coverage
103 changes: 103 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,103 @@
# longship-api-client

[![MIT license](https://img.shields.io/badge/License-MIT-blue.svg)](https://lbesson.mit-license.org/)
[![PyPI version shields.io](https://img.shields.io/pypi/v/longship.svg)](https://pypi.python.org/pypi/longship/)
[![Downloads](https://static.pepy.tech/personalized-badge/longship?period=total&units=international_system&left_color=blue&right_color=green&left_text=Downloads)](https://pepy.tech/project/longship)


A client library for accessing Longship API

## Usage
First, create a client:

```python
from longship_api_client import Client

client = Client(base_url="https://api.example.com")
```

If the endpoints you're going to hit require authentication, use `AuthenticatedClient` instead:

```python
from longship_api_client import AuthenticatedClient

client = AuthenticatedClient(base_url="https://api.example.com", token="SuperSecretToken")
```

Now call your endpoint and use your models:

```python
from longship_api_client.models import MyDataModel
from longship_api_client.api.my_tag import get_my_data_model
from longship_api_client.types import Response

my_data: MyDataModel = get_my_data_model.sync(client=client)
# or if you need more info (e.g. status_code)
response: Response[MyDataModel] = get_my_data_model.sync_detailed(client=client)
```

Or do the same thing with an async version:

```python
from longship_api_client.models import MyDataModel
from longship_api_client.api.my_tag import get_my_data_model
from longship_api_client.types import Response

my_data: MyDataModel = await get_my_data_model.asyncio(client=client)
response: Response[MyDataModel] = await get_my_data_model.asyncio_detailed(client=client)
```

By default, when you're calling an HTTPS API it will attempt to verify that SSL is working correctly. Using certificate verification is highly recommended most of the time, but sometimes you may need to authenticate to a server (especially an internal server) using a custom certificate bundle.

```python
client = AuthenticatedClient(
base_url="https://internal_api.example.com",
token="SuperSecretToken",
verify_ssl="/path/to/certificate_bundle.pem",
)
```

You can also disable certificate validation altogether, but beware that **this is a security risk**.

```python
client = AuthenticatedClient(
base_url="https://internal_api.example.com",
token="SuperSecretToken",
verify_ssl=False
)
```

There are more settings on the generated `Client` class which let you control more runtime behavior, check out the docstring on that class for more info.

Things to know:
1. Every path/method combo becomes a Python module with four functions:
1. `sync`: Blocking request that returns parsed data (if successful) or `None`
1. `sync_detailed`: Blocking request that always returns a `Request`, optionally with `parsed` set if the request was successful.
1. `asyncio`: Like `sync` but async instead of blocking
1. `asyncio_detailed`: Like `sync_detailed` but async instead of blocking

1. All path/query params, and bodies become method arguments.
1. If your endpoint had any tags on it, the first tag will be used as a module name for the function (my_tag above)
1. Any endpoint which did not have a tag will be in `longship_api_client.api.default`

## Building / publishing this Client
This project uses [Poetry](https://python-poetry.org/) to manage dependencies and packaging. Here are the basics:
1. Update the metadata in pyproject.toml (e.g. authors, version)
1. If you're using a private repository, configure it with Poetry
1. `poetry config repositories.<your-repository-name> <url-to-your-repository>`
1. `poetry config http-basic.<your-repository-name> <username> <password>`
1. Publish the client with `poetry publish --build -r <your-repository-name>` or, if for public PyPI, just `poetry publish --build`

If you want to install this client into another project without publishing it (e.g. for development) then:
1. If that project **is using Poetry**, you can simply do `poetry add <path-to-this-client>` from that project
1. If that project is not using Poetry:
1. Build a wheel with `poetry build -f wheel`
1. Install that wheel from the other project `pip install <path-to-wheel>`

## Updating the client

This client was generated with [`openapi-python-client`](https://pypi.org/project/openapi-python-client/) and to update it to the latest version of the Longship API, you need to download the Swagger configuration to a JSON file and run following in a directory one level above this repo:

```
openapi-python-client update --path longship-api-client/fixtures/longship_24-06-23.json
```
12 changes: 12 additions & 0 deletions fixtures/ChargePointBooted.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"specversion": "1.0",
"id": "a4060f89-af43-430d-b14e-4e6f132acee1",
"type": "ChargePointBooted",
"subject": "ESTG_00669",
"time": "2023-06-25T12:53:23.9079468Z",
"source": "https://beta.api.longship.io/v1/chargepoints",
"datacontenttype": "application/json",
"data": {
"registrationstatus": "Accepted"
}
}
12 changes: 12 additions & 0 deletions fixtures/ConnectivityStatusChanged.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"specversion": "1.0",
"id": "9e2a8108-52e3-4891-a3d1-ac7c66e4fbb0",
"type": "ConnectivityStatusChanged",
"subject": "ESTG_00669",
"time": "2023-06-25T12:41:23.4109788Z",
"source": "https://beta.api.longship.io/v1/chargepoints",
"datacontenttype": "application/json",
"data": {
"status": "Offline"
}
}
15 changes: 15 additions & 0 deletions fixtures/OperationalStatusChanged.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"specversion": "1.0",
"id": "c7c196d8-1764-4747-9c77-375b997ed797",
"type": "OperationalStatusChanged",
"subject": "ESTG_00669",
"time": "2023-06-25T12:36:03.2158119Z",
"source": "https://beta.api.longship.io/v1/chargepoints",
"datacontenttype": "application/json",
"data": {
"status": "Preparing",
"errorcode": "NoError",
"connectornumber": 1,
"statussource": "StatusNotification"
}
}
13 changes: 13 additions & 0 deletions fixtures/SessionStart.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"specversion": "1.0",
"id": "374f95a3-e9d3-4afd-aeb6-cb3f99554668",
"type": "SessionStart",
"subject": "FRGRN4A7BA75EC4AC418596F4E1124AE30C9",
"time": "2023-06-25T13:03:46.5701706Z",
"source": "https://beta.api.longship.io/v1/sessions",
"datacontenttype": "application/json",
"data": {
"chargepointid": "ESTG_00669",
"connectornumber": 1
}
}
16 changes: 16 additions & 0 deletions fixtures/SessionStop.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"specversion": "1.0",
"id": "8e7a55ae-f9f8-46e1-bb42-ed31ebb61569",
"type": "SessionStop",
"subject": "FRGRN4A7BA75EC4AC418596F4E1124AE30C9",
"time": "2023-06-25T13:04:16.4749739Z",
"source": "https://beta.api.longship.io/v1/sessions",
"datacontenttype": "application/json",
"data": {
"chargepointid": "ESTG_00669",
"connectornumber": 1,
"totalenergyinkwh": 0,
"totalduration": "00:00:41.4749739",
"totalcosts": 0
}
}
16 changes: 16 additions & 0 deletions fixtures/SessionUpdate.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"specversion": "1.0",
"id": "f6368985-d239-482c-baa3-75ebd2608cce",
"type": "SessionUpdate",
"subject": "FRGRN4A7BA75EC4AC418596F4E1124AE30C9",
"time": "2023-06-25T13:03:50.0223808Z",
"source": "https://beta.api.longship.io/v1/sessions",
"datacontenttype": "application/json",
"data": {
"chargepointid": "ESTG_00669",
"connectornumber": 1,
"totalenergyinkwh": 0,
"totalduration": "00:00:15.0223807",
"totalcosts": 0
}
}
Loading

0 comments on commit 6ee51d5

Please sign in to comment.