Asynchronous Python client for the Photoprism REST API
Project description
aiophotoprism
Asynchronous Python client for the Photoprism
Warning: Photoprism API is not stable yet, use on your own risk
NOTE: The package is in active development. Not all features of the API are implemented.
Installation
pip install aiophotoprism
Usage
import asyncio
from aiophotoprism import Photoprism
async def main():
async with Photoprism("username", "password") as client:
# interact with the client here
pass
if __name__ == "__main__":
asyncio.run(main())
Photoprism
Photoprism is the entrypoint class, it acts as an async context manager and provides access to API endpoints.
Initialization
def __init__(
self,
username, # your username
password, # your password
url="http://127.0.0.1:2342", # A base URL of the server, https://syncthing.example.com:443/something is also possible
timeout=DEFAULT_TIMEOUT, # Timeout in seconds
verify_ssl=True, # Perform SSL verification
loop=None, # event loop
session=None # client session,
)...
Photos
Returns list of photos.
await client.photos(count=50)
Config
Returns Photoprism instance config.
await client.config()
Index
Forces the Photoprism instance to index photos. Complete scan is not supported.
await client.index()
License
MIT License
Copyright (c) 2021 Gleb Sinyavskiy
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
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
File details
Details for the file aiophotoprism-0.1.0.tar.gz
.
File metadata
- Download URL: aiophotoprism-0.1.0.tar.gz
- Upload date:
- Size: 5.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.8.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 775ecbb4402cd62f9e8f7d04bc9ce897ffd4f5d74e17b0f79cb05041c751395f |
|
MD5 | c997f9c6fb0d2029c83ff8e2c7c75881 |
|
BLAKE2b-256 | 2f03e5cd797f2a69a3246c32593bc7c5fdcbf5a6b03f8dbadd27cc46744bd6da |
File details
Details for the file aiophotoprism-0.1.0-py3-none-any.whl
.
File metadata
- Download URL: aiophotoprism-0.1.0-py3-none-any.whl
- Upload date:
- Size: 6.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.8.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0493a6f48a50c3c86429fc37b46c0df59636a865790071b66c4dae9d572a1a3e |
|
MD5 | 192c7a955591668220d1533b281f545f |
|
BLAKE2b-256 | bec1636e3cbccd3b54743d4f2f732cf376c0e6fb03eb30f3ba8c9139341fa0f7 |