Asynchronous library to fetch albums and assests from immich.
Project description
aioimmich
Asynchronous library to fetch albums and assests from immich. The main purpose of this library is the integration of an immich instance into Home Assistant.
:warning: this is in early development state :warning:
breaking changes may occure at every time.
Requirements
- Python >= 3.11
- aiohttp
Installation
pip install aioimmich
Examples
Get all albums
import asyncio
import aiohttp
from aioimmich import Immich
async def main():
async with aiohttp.ClientSession() as session:
immich = Immich(session, "<API-KEY>", "<IMMICH-IP>")
for album in await immich.albums.async_get_all_albums():
print(f"Album: {album.name} contains {album.asset_count} assets")
if __name__ == "__main__":
asyncio.run(main())
Download an asset
import asyncio
import aiohttp
from aioimmich import Immich
async def main():
async with aiohttp.ClientSession() as session:
immich = Immich(session, "<API-KEY>", "<IMMICH-IP>")
asset_bytes = await immich.assets.async_view_asset("<ASSET-ID>", size="fullsize")
with open(f"my_nice_picture.jpg", "wb") as fh:
fh.write(asset_bytes)
if __name__ == "__main__":
asyncio.run(main())
Get server info
import asyncio
import aiohttp
from aioimmich import Immich
async def main():
async with aiohttp.ClientSession() as session:
immich = Immich(session, "<API-KEY>", "<IMMICH-IP>")
about_info = await api.server.async_get_about_info()
print(f"Version: {about_info.version}")
print(f"Is licensed: {about_info.licensed}")
storage_info = await api.server.async_get_storage_info()
print(f"Disk Available: {storage_info.disk_available}")
print(f"Disk Available (raw): {storage_info.disk_available_raw} bytes")
print(f"Disk Size: {storage_info.disk_size}")
print(f"Disk Size (raw): {storage_info.disk_size_raw} bytes")
print(f"Disk Usage: {storage_info.disk_usage_percentage}%")
print(f"Disk Use: {storage_info.disk_use}")
print(f"Disk Use (raw): {storage_info.disk_use_raw} bytes")
if __name__ == "__main__":
asyncio.run(main())
References
You like my work?
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 Distributions
No source distribution files available for this release.See tutorial on generating distribution archives.
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 aioimmich-0.14.1-py3-none-any.whl.
File metadata
- Download URL: aioimmich-0.14.1-py3-none-any.whl
- Upload date:
- Size: 19.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cdb69c8042939515513379b6813b9f42899cf495c715aa60c82de6616897b6f2
|
|
| MD5 |
ae2ab55362478471acd22039b285c78a
|
|
| BLAKE2b-256 |
9f1e0cff6e7a264d4c41700e648ae5cac7478dbbe9730bcf4dd3dfea28102dac
|