Skip to main content

An asynchronous Python API client for LANraragi, written with aiohttp and pydantic for type validation.

Project description

aio-lanraragi

An asynchronous Python API client for LANraragi, written with aiohttp and pydantic for type validation. The project is a work in progress.

pip install aio-lanraragi

A working understanding of Python's async framework is needed.

Usage

Here is an example on getting all archives from LANraragi using LRRClient's context management:

import asyncio
from lanraragi import LRRClient

async def main():
    async with LRRClient("http://localhost:3000", lrr_api_key="lanraragi") as lrr:
        response, err = await lrr.archive_api.get_all_archives()
        if err:
            raise Exception(f"Encountered error while getting all archives: {err.error}")
        for archive in response.data:
            print(archive.arcid)

if __name__ == "__main__":
    asyncio.run(main())

"aio-lanraragi" uses a (response, error) approach to error handling.

Here is a code snippet on making concurrent API calls under a bounded semaphore.

...
async with LRRClient("http://localhost:3000", lrr_api_key="lanraragi") as lrr:
    semaphore = asyncio.BoundedSemaphore(value=4)
    tasks = []
    for req in requests:
        tasks.append(asyncio.create_task(async_task(lrr, req, semaphore)))
    await asyncio.gather(*tasks)

Since aiohttp is used under the hood, you may install optional libraries (namely, aiodns and brotli) for more optimization:

pip install "aiohttp[speedups]"

Development

pip install "aio-lanraragi[dev]"

Only officially documented APIs will be supported. Undocumented API calls may be invoked at the ApiContextManager layer by library users. Under-development APIs shall be decorated with an @experimental tag in library and during testing. Deprecated APIs shall be decorated with a @deprecated tag.

Library Description

All request/response classes are under the "src/lanraragi/models" directory, and inherit the LanraragiRequest and LanraragiResponse base class, respectively.

The ApiContextManager is an asynchronous HTTP context manager and handle the HTTP interaction with LANraragi.

If you don't want to use request/response DTOs, go with the API context manager.

An ApiClient represents a logical client for a collection of related APIs. They handle the DTO and request/response marshalling layer. These are only to be used by the LRRClient.

The LRRClient is a higher abstraction than ApiContextManager which also provides API clients for easy access in a context.

Scope

"aio-lanraragi" is designed to abstract away the boilerplate of interfacing with a LANraragi server in Python, to allow the user to focus on application business logic, rather than the HTTP/API protocols. This includes:

  • automatically choosing the REST method and parameters for the API
  • conversion between request, response and Pydantic DTOs for each API call
  • comfortable type hinting and rigorous request/response validation with Pydantic
  • aiohttp exception retry with exponential backoff
  • session management logic and implementation abstraction

The scope of this library is to implement LANraragi-related API functionality which comes naturally from supporting dependencies like aiohttp/pydantic, such as session-related functionality, or type validation. On the other hand, derivative features (features which can be implemented simply by invoking multiple APIs, sometimes with the help of additional dependencies) are not supported by aio-lanraragi. Derivative features include:

  • get version of server
  • delete all archives by a tag or pattern
  • upload archives from a folder
  • checking if an image is incomplete by reading file bytes

In other words, scripting does not fall under the library's responsibility.

Until a feasable client-server version-handling strategy is implemented, support for only the most current API specification falls under the scope of the project. Request/response changes across version updates, bug fixes, corrections, tests, and slight code practice alignments also fall within the scope of this project.

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

aio_lanraragi-0.1.4.tar.gz (131.0 kB view details)

Uploaded Source

Built Distribution

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

aio_lanraragi-0.1.4-py3-none-any.whl (31.2 kB view details)

Uploaded Python 3

File details

Details for the file aio_lanraragi-0.1.4.tar.gz.

File metadata

  • Download URL: aio_lanraragi-0.1.4.tar.gz
  • Upload date:
  • Size: 131.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for aio_lanraragi-0.1.4.tar.gz
Algorithm Hash digest
SHA256 cd79a8f1332d51ce6bc266fad0e2a96b11964c35558e12acac5abde060722016
MD5 d08c0807f2de3e77c4402724e1977225
BLAKE2b-256 21a817b7e69e85693ae222e7e06ba8acc33d7ed8f9fa146e52c948f3f43f7756

See more details on using hashes here.

Provenance

The following attestation bundles were made for aio_lanraragi-0.1.4.tar.gz:

Publisher: publish.yml on psilabs-dev/aio-lanraragi

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

File details

Details for the file aio_lanraragi-0.1.4-py3-none-any.whl.

File metadata

  • Download URL: aio_lanraragi-0.1.4-py3-none-any.whl
  • Upload date:
  • Size: 31.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for aio_lanraragi-0.1.4-py3-none-any.whl
Algorithm Hash digest
SHA256 8ef57851458517074a02f396f43b73b0a16c4009f676565254b23258e936141d
MD5 37ca3067fb49c97fa1e9ed4823ce822c
BLAKE2b-256 af7d5f34c13e507badd79e09925cd20fa6758c8e65b1e279beaabef3fd854617

See more details on using hashes here.

Provenance

The following attestation bundles were made for aio_lanraragi-0.1.4-py3-none-any.whl:

Publisher: publish.yml on psilabs-dev/aio-lanraragi

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

Supported by

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