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.clients.client import LRRClient
async def main():
await 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)
Development
pip install "aio-lanraragi[dev]"
Only documented APIs will be supported. Undocumented API calls may be invoked at the ApiContextManager layer by library users.
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 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
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file aio_lanraragi-0.1.1.tar.gz.
File metadata
- Download URL: aio_lanraragi-0.1.1.tar.gz
- Upload date:
- Size: 17.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
253edcb3c14cef652746172199585de17ffe2e1d3a4ae2b09daa148a7c1a4493
|
|
| MD5 |
6dc201c01623aaa75b54d94d8a69eef8
|
|
| BLAKE2b-256 |
4bf1e6639a012e050dded65ea7a8d31f980b24f554a66d125437fa01f9f84e31
|
File details
Details for the file aio_lanraragi-0.1.1-py3-none-any.whl.
File metadata
- Download URL: aio_lanraragi-0.1.1-py3-none-any.whl
- Upload date:
- Size: 26.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0a7124cec226256a05d893ed495385d4e8273e37f75b8aed9ddaf48c19e09838
|
|
| MD5 |
679b7aabed4ab519e3ae846f4a277c0e
|
|
| BLAKE2b-256 |
3c94853b475af32f8e53fc3427665533a6f8176b268b5c386a2a7a5d033bf303
|