Amazon Photos API
Project description
Amazon Photos API
Table of Contents
Installation
pip install amazon-photos
Setup
An .env
file must be created with these cookie values.
session-id=...
ubid-acbca=...
at-acbca=...
Query Syntax
For valid location and people IDs, see the results from the
aggregations()
method.
Example query:
drive/v1/search
type:(PHOTOS OR VIDEOS)
AND things:(plant AND beach OR moon)
AND timeYear:(2019)
AND timeMonth:(7)
AND timeDay:(1)
AND location:(CAN#BC#Vancouver)
AND people:(CyChdySYdfj7DHsjdSHdy)
/drive/v1/nodes
kind:(FILE* OR FOLDER*)
AND contentProperties.contentType:(image* OR video*)
AND status:(AVAILABLE*)
AND settings.hidden:false
AND favorite:(true)
Examples
from pathlib import Path
from amazon_photos import AmazonPhotos
ap = AmazonPhotos()
# get entire Amazon Photos library. (default save to `ap.parquet`)
nodes = ap.query("type:(PHOTOS OR VIDEOS)")
# query Amazon Photos library with more filters applied. (default save to `ap.parquet`)
nodes = ap.query("type:(PHOTOS OR VIDEOS) AND things:(plant AND beach OR moon) AND timeYear:(2023) AND timeMonth:(8) AND timeDay:(14) AND location:(CAN#BC#Vancouver)")
# sample first 10 nodes
node_ids = nodes.id[:10]
# move a batch of images/videos to the trash bin
ap.trash(node_ids)
# restore a batch of images/videos from the trash bin
ap.restore(node_ids)
# upload a batch of images/videos
files = Path('path/to/files').iterdir()
ap.upload(files)
# download a batch of images/videos
ap.download(node_ids)
# permanently delete a batch of images/videos.
ap.delete(node_ids)
# convenience method to get all photos
ap.photos()
# convenience method to get all videos
ap.videos()
# get current usage stats
ap.usage()
# get all identifiers calculated by Amazon.
ap.aggregations(category="all")
# get specific identifiers calculated by Amazon.
ap.aggregations(category="location")
# get trash bin contents
ap.trashed()
Common Paramters
name | type | description |
---|---|---|
ContentType | str | "JSON" |
_ | int | 1690059771064 |
asset | str | "ALL" "MOBILE" "NONE "DESKTOP" default: "ALL" |
filters | str | "type:(PHOTOS OR VIDEOS) AND things:(plant AND beach OR moon) AND timeYear:(2019) AND timeMonth:(7) AND location:(CAN#BC#Vancouver) AND people:(CyChdySYdfj7DHsjdSHdy)" default: "type:(PHOTOS OR VIDEOS)" |
groupByForTime | str | "day" "month" "year" |
limit | int | 200 |
lowResThumbnail | str | "true" "false" default: "true" |
resourceVersion | str | "V2" |
searchContext | str | "customer" "all" "unknown" "family" "groups" default: "customer" |
sort | str | "['contentProperties.contentDate DESC']" "['contentProperties.contentDate ASC']" "['createdDate DESC']" "['createdDate ASC']" "['name DESC']" "['name ASC']" default: "['contentProperties.contentDate DESC']" |
tempLink | str | "false" "true" default: "false" |
Notes
https://www.amazon.ca/drive/v1/batchLink
- This endpoint is called when downloading a batch of photos/videos in the web interface. It then returns a URL to download a zip file, then makes a request to that url to download the content. When making a request to download data for 1200 nodes (max batch size), it turns out to be much slower (~2.5 minutes) than asynchronously downloading 1200 photos/videos individually (~1 minute).
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
amazon-photos-0.0.10.tar.gz
(12.6 kB
view details)
Built Distribution
File details
Details for the file amazon-photos-0.0.10.tar.gz
.
File metadata
- Download URL: amazon-photos-0.0.10.tar.gz
- Upload date:
- Size: 12.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 18967e322d66c89890eb962002bc251889533e5e2bab746f82de05ff4b709279 |
|
MD5 | bfb94936f63ec80bbb6b1357b242e420 |
|
BLAKE2b-256 | 55e1d1abe61c8f08d05dd48002193d086c6bad5a72d12ad0ef71b3a59d89a0b3 |
Provenance
File details
Details for the file amazon_photos-0.0.10-py3-none-any.whl
.
File metadata
- Download URL: amazon_photos-0.0.10-py3-none-any.whl
- Upload date:
- Size: 11.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d53e38fc666c45175821d34931df41dd0136bfa314aea534160fdbe543efb042 |
|
MD5 | b7e54245d72ab4fa4aa12030e6966cd5 |
|
BLAKE2b-256 | bb96ff3e3cc66d5f5f7ffb10c620ee7098b9a4ffcb2291bdb4a2cded5c0bbe5b |