This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python3 | |
| """ | |
| Export Fairlawn-located photos from iCloud Photos library to a local folder. | |
| Triggers iCloud download of originals as needed via osxphotos. | |
| """ | |
| import sys, os, time | |
| from pathlib import Path | |
| import osxphotos | |
| from osxphotos.photoexporter import PhotoExporter, ExportOptions |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python3 | |
| """ | |
| Read-only Photos library bridge + serve files from photo_bridge dir. | |
| v1.2 adds /raw endpoint to download tarball etc. | |
| """ | |
| import os, sys, json, secrets, mimetypes | |
| from pathlib import Path | |
| from http.server import BaseHTTPRequestHandler, ThreadingHTTPServer | |
| from urllib.parse import urlparse, parse_qs |