Amazon Photos API
Project description
Amazon Photos API
Table of Contents
Installation
pip install amazon-photos
Setup
These environment variables must be set. Log in to Amazon Photos and copy the cookies:
- *
ubid-acbxx - *
at-acbxx session-id
*replace xx with your country code
E.g. for amazon.ca, you would add to your ~/.bashrc:
export session_id="..."
export ubid_acbca="..."
export 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
# e.g. using amazon.ca
ap = AmazonPhotos(tld="ca")
# 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
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 amazon-photos-0.0.24.tar.gz.
File metadata
- Download URL: amazon-photos-0.0.24.tar.gz
- Upload date:
- Size: 13.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2d45160a0db98d032053f9b7f1e528314692c8cd485b73e2caf0c016237ecb90
|
|
| MD5 |
6a20c5c929cc527ecb9f80d184d6cfba
|
|
| BLAKE2b-256 |
ae0cb1422554969c68273430339396c7de913da6d7923b55ee38211f0fbaa4d6
|
File details
Details for the file amazon_photos-0.0.24-py3-none-any.whl.
File metadata
- Download URL: amazon_photos-0.0.24-py3-none-any.whl
- Upload date:
- Size: 11.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a415e28d58b13c20f60353c30b2158e12ae5bb64959de3eb520b012fec09a3e8
|
|
| MD5 |
cde876462e67b74a9b2e78aa2880dc5e
|
|
| BLAKE2b-256 |
e26860b4e966fa02c72536777d9b5f971b982ea95c3203bff4faa78f8d21f4c4
|