Skip to main content

A Python client to interact with photoprism.

Project description

Python client for PhotoPrism

A Python client to interact with photoprism.

Changelog can be found in here.

IMPORTANT

This Python client is build on the undocumented API of PhotoPrism. There may be bugs in there. Please let me know if you find some.

Currently tested on the version of the 17th of June 2022. It will probably work with later versions. Just try it and let me know, I will update the readme accordingly.

Requirements

  • requests (latest)

Setup

To start interacting with Photoprism set up a session. You always need to do this if you start the script. Otherwise there is no session for the client to interact with PhotoPrism.

from photoprism.Session import Session
pp_session = Session("admin", "changethis", "demo.photoprism.app")
pp_session.create()

HTTPS

It is possible to connect to Photoprism using HTTPS. Two variables exist for this:

  • use_https: Boolean
  • verify_cert: Boolean

By default, a connection will be made using HTTP. A session can be set up using HTTPS by setting the use_https variable to True. By default the certificate will be verified. This check can be disabled by setting the verify_cert variable to False. Only change this if you understand what this means. It is better to leave this variable unchanged.

An example is:

from photoprism.Session import Session
pp_session = Session("admin", "changethis", "demo.photoprism.app", use_https=True, verify_cert=False)
pp_session.create()

User agent

The user agent is Photoprism Python Client by default. You can change this using the variable user_agent. For example:

from photoprism.Session import Session
pp_session = Session("admin", "changethis", "demo.photoprism.app", user_agent="Hello World! This is an example.")
pp_session.create()

Searching

To search for photos. With this example it will return the first 100 results. You can change this with count=1000.

from photoprism.Photo import Photo

p = Photo(pp_session)
p.search(query="original:*")

Other functions

This is a list of all other functions within the client. If you want other functions either request them or send a pull request.

function description variables returns
Photo.add_photos_to_album() Add photos to an album, you will need to provide a list of UIDs of the photos you want to add. Returns True if successfull photos: list, album_uid: string True if successfull
Photo.add_to_album_from_query() Provide a search query and add all photos that are returned into an album. Provide the albumname, not the UID of the album. query: string, albumname: string, count: int (default=1000000), offset: int (default=0), order: string (default="newest") True if successfull
Photo.check_if_album_exists() Small function to check if an album exists name: string, create_if_not: bool (default is False) True if it exists, False if not (will continue to be False if the album is created)
Photo.create_album() Create an album, returns a boolean if it worked title: string Dict object with the album information
Photo.download_album() Download an entire album as ZIP. The file will get the same name as the title of the album, by setting the filename variable the name can be changed. uid: string, path: string (default="."), filename: string (default=None) True if successfull
Photo.download_file() Download a single file. The file will get the same name as in photoprism, by setting the filename variable the name can be changed. hash: string, path: string (default="."), filename: string (default=None) True if succesfull
Photo.download_files_from_query() Download files from a query query: string, count: int (default=100), offset: int (default=0), order: string (default="newest") True if succesfull
Photo.get_album() Get all information of an album based upon the UID of the album uid: string Dict object with the information of the album, False if it does not exist
Photo.get_album_uid_by_name() Get the UID of an album using the name of the album. Be aware, it uses the list_albums function that is limited to 100000 albums name: string String of uid, None if it does not exist
Photo.get_uid_list_of_search() Return a list of UIDs based upon the search query: string, count: int (default is 100), offset: int (default=0), order: string (default="newest") list of uids
Photo.list_albums() Provide a list of all albums within the photoprism instance, with a max of 100000 None Dict object with all albums and their metadata (max of 100000 results)
Photo.raw_call() Function to perform a request to the photoprism server (usually not needed by a user) endpoint: string, type: string (default="GET"), data: string (default=False) requests object
Photo.search() Create the session query: string, count: int (default=100), offset: int (default=0), order: string (default="newest") Dict object of the results of the search
Photo.start_import() Start an import job, default path is upload. It returns True when the import started, not when finished path: string (default="upload"), move: Bool (default=False) True if successfully started
Photo.stop_import() Stop an import job None True if successfully stopped
Photo.remove_photos_from_album() Remove photos from an album, Returns True if successfull albumname: string, photos: bool (default=False), count: int (default=1000000) True if succesfull
Photo.remove_album() Remove album based on album name albumname: string Dict data returned from the server
Photo.remove_album_uid() Remove album based on album uid uid: string Dict of the removed album, False if action failed.

License

MIT License

Copyright (c) 2022 maartenvl

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


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

photoprism_client-0.2.1.tar.gz (7.1 kB view details)

Uploaded Source

Built Distribution

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

photoprism_client-0.2.1-py3-none-any.whl (8.4 kB view details)

Uploaded Python 3

File details

Details for the file photoprism_client-0.2.1.tar.gz.

File metadata

  • Download URL: photoprism_client-0.2.1.tar.gz
  • Upload date:
  • Size: 7.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.6

File hashes

Hashes for photoprism_client-0.2.1.tar.gz
Algorithm Hash digest
SHA256 9b0c47cd276b675a26814aa8cc0ac7442e771d64b7f9f0e398d474161d9d01fa
MD5 0073f0e22b0842d336558443ae13cef7
BLAKE2b-256 8cb4cea253ebeaa3ba97ab4e9a6f227f1a817627a4371f0ca2969be8f354f294

See more details on using hashes here.

File details

Details for the file photoprism_client-0.2.1-py3-none-any.whl.

File metadata

File hashes

Hashes for photoprism_client-0.2.1-py3-none-any.whl
Algorithm Hash digest
SHA256 749fffb6eb58f3a7173f39dd325e86e5670a9fd657a01aa5ec0d489b90d8d430
MD5 feecd79ed02c2d752cd5b95431a392e7
BLAKE2b-256 884c30fe7b327251276c83a6d86c8de4c1c73dc706eba716f917e2ca737c9ec7

See more details on using hashes here.

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