Release files for 0.56.3 (#933)

This commit is contained in:
Rhet Turnbull 2023-01-16 21:51:17 -08:00 committed by GitHub
parent 83d14ac191
commit 7ab33f66d7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
25 changed files with 1013 additions and 56 deletions

View File

@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.56.2
current_version = 0.56.3
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)
serialize = {major}.{minor}.{patch}

View File

@ -2016,7 +2016,7 @@ cog.out(get_template_field_table())
|{cr}|A carriage return: '\r'|
|{crlf}|A carriage return + line feed: '\r\n'|
|{tab}|:A tab: '\t'|
|{osxphotos_version}|The osxphotos version, e.g. '0.56.2'|
|{osxphotos_version}|The osxphotos version, e.g. '0.56.3'|
|{osxphotos_cmd_line}|The full command line used to run osxphotos|
|{album}|Album(s) photo is contained in|
|{folder_album}|Folder path + album photo is contained in. e.g. 'Folder/Subfolder/Album' or just 'Album' if no enclosing folder|

View File

@ -2041,7 +2041,7 @@ Substitution Description
{cr} A carriage return: '\r'
{crlf} A carriage return + line feed: '\r\n'
{tab} :A tab: '\t'
{osxphotos_version} The osxphotos version, e.g. '0.56.2'
{osxphotos_version} The osxphotos version, e.g. '0.56.3'
{osxphotos_cmd_line} The full command line used to run osxphotos
The following substitutions may result in multiple values. Thus if specified
@ -2525,7 +2525,7 @@ The following template field substitutions are availabe for use the templating s
|{cr}|A carriage return: '\r'|
|{crlf}|A carriage return + line feed: '\r\n'|
|{tab}|:A tab: '\t'|
|{osxphotos_version}|The osxphotos version, e.g. '0.56.2'|
|{osxphotos_version}|The osxphotos version, e.g. '0.56.3'|
|{osxphotos_cmd_line}|The full command line used to run osxphotos|
|{album}|Album(s) photo is contained in|
|{folder_album}|Folder path + album photo is contained in. e.g. 'Folder/Subfolder/Album' or just 'Album' if no enclosing folder|

View File

@ -1,4 +1,4 @@
# Sphinx build info version 1
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
config: 2b1d245eff1c1e7c9d89e31092ea013b
config: 82c8e42e2b834f1c1ae542ffd6f70cd2
tags: 645f666f9bcd5a90fca523b33c5a78b7

View File

@ -5,7 +5,7 @@
<meta name="color-scheme" content="light dark"><link rel="index" title="Index" href="../genindex.html" /><link rel="search" title="Search" href="../search.html" />
<meta name="generator" content="sphinx-5.3.0, furo 2022.09.29"/>
<title>Overview: module code - osxphotos 0.56.2 documentation</title>
<title>Overview: module code - osxphotos 0.56.3 documentation</title>
<link rel="stylesheet" type="text/css" href="../_static/pygments.css" />
<link rel="stylesheet" type="text/css" href="../_static/styles/furo.css?digest=d81277517bee4d6b0349d71bb2661d4890b5617c" />
<link rel="stylesheet" type="text/css" href="../_static/copybutton.css" />
@ -123,7 +123,7 @@
</label>
</div>
<div class="header-center">
<a href="../index.html"><div class="brand">osxphotos 0.56.2 documentation</div></a>
<a href="../index.html"><div class="brand">osxphotos 0.56.3 documentation</div></a>
</div>
<div class="header-right">
<div class="theme-toggle-container theme-toggle-header">
@ -146,7 +146,7 @@
<div class="sidebar-sticky"><a class="sidebar-brand" href="../index.html">
<span class="sidebar-brand-text">osxphotos 0.56.2 documentation</span>
<span class="sidebar-brand-text">osxphotos 0.56.3 documentation</span>
</a><form class="sidebar-search-container" method="get" action="../search.html" role="search">
<input class="sidebar-search" placeholder=Search name="q" aria-label="Search">

View File

@ -357,7 +357,7 @@ Template Substitutions
* - {tab}
- :A tab: '\t'
* - {osxphotos_version}
- The osxphotos version, e.g. '0.56.2'
- The osxphotos version, e.g. '0.56.3'
* - {osxphotos_cmd_line}
- The full command line used to run osxphotos
* - {album}

View File

@ -35,7 +35,8 @@ div.highlight {
position: relative;
}
.highlight:hover button.copybtn {
/* Show the copybutton */
.highlight:hover button.copybtn, button.copybtn.success {
opacity: 1;
}

View File

@ -102,18 +102,25 @@ const clearSelection = () => {
}
}
// Changes tooltip text for two seconds, then changes it back
// Changes tooltip text for a moment, then changes it back
// We want the timeout of our `success` class to be a bit shorter than the
// tooltip and icon change, so that we can hide the icon before changing back.
var timeoutIcon = 2000;
var timeoutSuccessClass = 1500;
const temporarilyChangeTooltip = (el, oldText, newText) => {
el.setAttribute('data-tooltip', newText)
el.classList.add('success')
setTimeout(() => el.setAttribute('data-tooltip', oldText), 2000)
setTimeout(() => el.classList.remove('success'), 2000)
// Remove success a little bit sooner than we change the tooltip
// So that we can use CSS to hide the copybutton first
setTimeout(() => el.classList.remove('success'), timeoutSuccessClass)
setTimeout(() => el.setAttribute('data-tooltip', oldText), timeoutIcon)
}
// Changes the copy button icon for two seconds, then changes it back
const temporarilyChangeIcon = (el) => {
el.innerHTML = iconCheck;
setTimeout(() => {el.innerHTML = iconCopy}, 2000)
setTimeout(() => {el.innerHTML = iconCopy}, timeoutIcon)
}
const addCopyButtonToCodeCells = () => {
@ -125,7 +132,8 @@ const addCopyButtonToCodeCells = () => {
}
// Add copybuttons to all of our code cells
const codeCells = document.querySelectorAll('div.highlight pre')
const COPYBUTTON_SELECTOR = 'div.highlight pre';
const codeCells = document.querySelectorAll(COPYBUTTON_SELECTOR)
codeCells.forEach((codeCell, index) => {
const id = codeCellId(index)
codeCell.setAttribute('id', id)
@ -141,10 +149,25 @@ function escapeRegExp(string) {
return string.replace(/[.*+?^${}()|[\]\\]/g, '\\$&'); // $& means the whole matched string
}
/**
* Removes excluded text from a Node.
*
* @param {Node} target Node to filter.
* @param {string} exclude CSS selector of nodes to exclude.
* @returns {DOMString} Text from `target` with text removed.
*/
function filterText(target, exclude) {
const clone = target.cloneNode(true); // clone as to not modify the live DOM
if (exclude) {
// remove excluded nodes
clone.querySelectorAll(exclude).forEach(node => node.remove());
}
return clone.innerText;
}
// Callback when a copy button is clicked. Will be passed the node that was clicked
// should then grab the text and replace pieces of text that shouldn't be used in output
function formatCopyText(textContent, copybuttonPromptText, isRegexp = false, onlyCopyPromptLines = true, removePrompts = true, copyEmptyLines = true, lineContinuationChar = "", hereDocDelim = "") {
var regexp;
var match;
@ -199,7 +222,12 @@ function formatCopyText(textContent, copybuttonPromptText, isRegexp = false, onl
var copyTargetText = (trigger) => {
var target = document.querySelector(trigger.attributes['data-clipboard-target'].value);
return formatCopyText(target.innerText, '', false, true, true, true, '', '')
// get filtered text
let exclude = '.linenos, .gp';
let text = filterText(target, exclude);
return formatCopyText(text, '', false, true, true, true, '', '')
}
// Initialize with a callback so we can modify the text before copy

View File

@ -2,10 +2,25 @@ function escapeRegExp(string) {
return string.replace(/[.*+?^${}()|[\]\\]/g, '\\$&'); // $& means the whole matched string
}
/**
* Removes excluded text from a Node.
*
* @param {Node} target Node to filter.
* @param {string} exclude CSS selector of nodes to exclude.
* @returns {DOMString} Text from `target` with text removed.
*/
export function filterText(target, exclude) {
const clone = target.cloneNode(true); // clone as to not modify the live DOM
if (exclude) {
// remove excluded nodes
clone.querySelectorAll(exclude).forEach(node => node.remove());
}
return clone.innerText;
}
// Callback when a copy button is clicked. Will be passed the node that was clicked
// should then grab the text and replace pieces of text that shouldn't be used in output
export function formatCopyText(textContent, copybuttonPromptText, isRegexp = false, onlyCopyPromptLines = true, removePrompts = true, copyEmptyLines = true, lineContinuationChar = "", hereDocDelim = "") {
var regexp;
var match;

View File

@ -1,6 +1,6 @@
var DOCUMENTATION_OPTIONS = {
URL_ROOT: document.getElementById("documentation_options").getAttribute('data-url_root'),
VERSION: '0.56.2',
VERSION: '0.56.3',
LANGUAGE: 'en',
COLLAPSE_INDEX: false,
BUILDER: 'html',

View File

@ -6,7 +6,7 @@
<link rel="index" title="Index" href="genindex.html" /><link rel="search" title="Search" href="search.html" /><link rel="next" title="OSXPhotos Template System" href="template_help.html" /><link rel="prev" title="OSXPhotos Tutorial" href="tutorial.html" />
<meta name="generator" content="sphinx-5.3.0, furo 2022.09.29"/>
<title>OSXPhotos Command Line Interface (CLI) - osxphotos 0.56.2 documentation</title>
<title>OSXPhotos Command Line Interface (CLI) - osxphotos 0.56.3 documentation</title>
<link rel="stylesheet" type="text/css" href="_static/pygments.css" />
<link rel="stylesheet" type="text/css" href="_static/styles/furo.css?digest=d81277517bee4d6b0349d71bb2661d4890b5617c" />
<link rel="stylesheet" type="text/css" href="_static/copybutton.css" />
@ -124,7 +124,7 @@
</label>
</div>
<div class="header-center">
<a href="index.html"><div class="brand">osxphotos 0.56.2 documentation</div></a>
<a href="index.html"><div class="brand">osxphotos 0.56.3 documentation</div></a>
</div>
<div class="header-right">
<div class="theme-toggle-container theme-toggle-header">
@ -147,7 +147,7 @@
<div class="sidebar-sticky"><a class="sidebar-brand" href="index.html">
<span class="sidebar-brand-text">osxphotos 0.56.2 documentation</span>
<span class="sidebar-brand-text">osxphotos 0.56.3 documentation</span>
</a><form class="sidebar-search-container" method="get" action="search.html" role="search">
<input class="sidebar-search" placeholder=Search name="q" aria-label="Search">
@ -229,6 +229,540 @@
<div class="highlight-shell notranslate"><div class="highlight"><pre><span></span>osxphotos about <span class="o">[</span>OPTIONS<span class="o">]</span>
</pre></div>
</div>
</section>
<section id="osxphotos-add-locations">
<h3>add-locations<a class="headerlink" href="#osxphotos-add-locations" title="Permalink to this heading">#</a></h3>
<p>Add missing location data to photos in Photos.app using nearest neighbor.</p>
<p>This command will search for photos that are missing location data and look
for the nearest neighbor photo within a given window of time that contains
location information. If a photo is found within the window of time, the
location of the nearest neighbor will be used to update the location of the
photo.</p>
<p>For example, if you took pictures with your iPhone and also with a camera that
doesnt have location information, you can use this command to add location
information to the photos taken with the camera from those taken with the
iPhone.</p>
<p>If you have many photos with missing location information but no nearest neighbor
within the window of time, you could add location information to some photos manually
then run this command again to add location information to the remaining photos.</p>
<p>You can specify a subset of photos to update using the query options. For example,
<cite>selected</cite> to update only the selected photos, <cite>added-after 2020-01-01</cite> to update
only photos added after Jan 1, 2020, etc.</p>
<p>Example:</p>
<p>Add location data to all photos with missing location data within a ±2 hour window:</p>
<p><cite>osxphotos add-locations window “2 hr” verbose</cite></p>
<p>The add-locations command assumes that photos already have the correct date and time.
If you have photos that are missing both location data and date/time information,
you can use <cite>osxphotos timewarp</cite> to add date/time information to the photos and then
use <cite>osxphotos add-locations</cite> to add location information.
See <cite>osxphotos help timewarp</cite> for more information.</p>
<div class="highlight-shell notranslate"><div class="highlight"><pre><span></span>osxphotos add-locations <span class="o">[</span>OPTIONS<span class="o">]</span>
</pre></div>
</div>
<p class="rubric">Options</p>
<dl class="std option">
<dt class="sig sig-object std" id="cmdoption-osxphotos-add-locations-w">
<span id="cmdoption-osxphotos-add-locations-window"></span><span class="sig-name descname"><span class="pre">-w</span></span><span class="sig-prename descclassname"></span><span class="sig-prename descclassname"><span class="pre">,</span> </span><span class="sig-name descname"><span class="pre">--window</span></span><span class="sig-prename descclassname"> <span class="pre">&lt;window&gt;</span></span><a class="headerlink" href="#cmdoption-osxphotos-add-locations-w" title="Permalink to this definition">#</a></dt>
<dd><p>Window of time to search for nearest neighbor; searches +/- window of time. Default is 1 hour. Format is one of HH:MM:SS, D days, H hours (or hr), M minutes (or min), S seconds (or sec), S (where S is seconds).</p>
</dd></dl>
<dl class="std option">
<dt class="sig sig-object std" id="cmdoption-osxphotos-add-locations-dry-run">
<span class="sig-name descname"><span class="pre">--dry-run</span></span><span class="sig-prename descclassname"></span><a class="headerlink" href="#cmdoption-osxphotos-add-locations-dry-run" title="Permalink to this definition">#</a></dt>
<dd><p>Dont actually add location, just print what would be done. Most useful with verbose.</p>
</dd></dl>
<dl class="std option">
<dt class="sig sig-object std" id="cmdoption-osxphotos-add-locations-V">
<span id="cmdoption-osxphotos-add-locations-v"></span><span id="cmdoption-osxphotos-add-locations-verbose"></span><span class="sig-name descname"><span class="pre">-V</span></span><span class="sig-prename descclassname"></span><span class="sig-prename descclassname"><span class="pre">,</span> </span><span class="sig-name descname"><span class="pre">--verbose</span></span><span class="sig-prename descclassname"></span><a class="headerlink" href="#cmdoption-osxphotos-add-locations-V" title="Permalink to this definition">#</a></dt>
<dd><p>Print verbose output.</p>
</dd></dl>
<dl class="std option">
<dt class="sig sig-object std" id="cmdoption-osxphotos-add-locations-T">
<span id="cmdoption-osxphotos-add-locations-t"></span><span id="cmdoption-osxphotos-add-locations-timestamp"></span><span class="sig-name descname"><span class="pre">-T</span></span><span class="sig-prename descclassname"></span><span class="sig-prename descclassname"><span class="pre">,</span> </span><span class="sig-name descname"><span class="pre">--timestamp</span></span><span class="sig-prename descclassname"></span><a class="headerlink" href="#cmdoption-osxphotos-add-locations-T" title="Permalink to this definition">#</a></dt>
<dd><p>Add time stamp to verbose output.</p>
</dd></dl>
<dl class="std option">
<dt class="sig sig-object std" id="cmdoption-osxphotos-add-locations-keyword">
<span class="sig-name descname"><span class="pre">--keyword</span></span><span class="sig-prename descclassname"> <span class="pre">&lt;KEYWORD&gt;</span></span><a class="headerlink" href="#cmdoption-osxphotos-add-locations-keyword" title="Permalink to this definition">#</a></dt>
<dd><p>Search for photos with keyword KEYWORD. If more than one keyword, treated as “OR”, e.g. find photos matching any keyword</p>
</dd></dl>
<dl class="std option">
<dt class="sig sig-object std" id="cmdoption-osxphotos-add-locations-no-keyword">
<span class="sig-name descname"><span class="pre">--no-keyword</span></span><span class="sig-prename descclassname"></span><a class="headerlink" href="#cmdoption-osxphotos-add-locations-no-keyword" title="Permalink to this definition">#</a></dt>
<dd><p>Search for photos with no keyword.</p>
</dd></dl>
<dl class="std option">
<dt class="sig sig-object std" id="cmdoption-osxphotos-add-locations-person">
<span class="sig-name descname"><span class="pre">--person</span></span><span class="sig-prename descclassname"> <span class="pre">&lt;PERSON&gt;</span></span><a class="headerlink" href="#cmdoption-osxphotos-add-locations-person" title="Permalink to this definition">#</a></dt>
<dd><p>Search for photos with person PERSON. If more than one person, treated as “OR”, e.g. find photos matching any person</p>
</dd></dl>
<dl class="std option">
<dt class="sig sig-object std" id="cmdoption-osxphotos-add-locations-album">
<span class="sig-name descname"><span class="pre">--album</span></span><span class="sig-prename descclassname"> <span class="pre">&lt;ALBUM&gt;</span></span><a class="headerlink" href="#cmdoption-osxphotos-add-locations-album" title="Permalink to this definition">#</a></dt>
<dd><p>Search for photos in album ALBUM. If more than one album, treated as “OR”, e.g. find photos matching any album</p>
</dd></dl>
<dl class="std option">
<dt class="sig sig-object std" id="cmdoption-osxphotos-add-locations-folder">
<span class="sig-name descname"><span class="pre">--folder</span></span><span class="sig-prename descclassname"> <span class="pre">&lt;FOLDER&gt;</span></span><a class="headerlink" href="#cmdoption-osxphotos-add-locations-folder" title="Permalink to this definition">#</a></dt>
<dd><p>Search for photos in an album in folder FOLDER. If more than one folder, treated as “OR”, e.g. find photos in any FOLDER. Only searches top level folders (e.g. does not look at subfolders)</p>
</dd></dl>
<dl class="std option">
<dt class="sig sig-object std" id="cmdoption-osxphotos-add-locations-name">
<span class="sig-name descname"><span class="pre">--name</span></span><span class="sig-prename descclassname"> <span class="pre">&lt;FILENAME&gt;</span></span><a class="headerlink" href="#cmdoption-osxphotos-add-locations-name" title="Permalink to this definition">#</a></dt>
<dd><p>Search for photos with filename matching FILENAME. If more than one name options is specified, they are treated as “OR”, e.g. find photos matching any FILENAME.</p>
</dd></dl>
<dl class="std option">
<dt class="sig sig-object std" id="cmdoption-osxphotos-add-locations-uuid">
<span class="sig-name descname"><span class="pre">--uuid</span></span><span class="sig-prename descclassname"> <span class="pre">&lt;UUID&gt;</span></span><a class="headerlink" href="#cmdoption-osxphotos-add-locations-uuid" title="Permalink to this definition">#</a></dt>
<dd><p>Search for photos with UUID(s). May be repeated to include multiple UUIDs.</p>
</dd></dl>
<dl class="std option">
<dt class="sig sig-object std" id="cmdoption-osxphotos-add-locations-uuid-from-file">
<span class="sig-name descname"><span class="pre">--uuid-from-file</span></span><span class="sig-prename descclassname"> <span class="pre">&lt;FILE&gt;</span></span><a class="headerlink" href="#cmdoption-osxphotos-add-locations-uuid-from-file" title="Permalink to this definition">#</a></dt>
<dd><p>Search for photos with UUID(s) loaded from FILE. Format is a single UUID per line. Lines preceded with # are ignored.</p>
</dd></dl>
<dl class="std option">
<dt class="sig sig-object std" id="cmdoption-osxphotos-add-locations-title">
<span class="sig-name descname"><span class="pre">--title</span></span><span class="sig-prename descclassname"> <span class="pre">&lt;TITLE&gt;</span></span><a class="headerlink" href="#cmdoption-osxphotos-add-locations-title" title="Permalink to this definition">#</a></dt>
<dd><p>Search for TITLE in title of photo.</p>
</dd></dl>
<dl class="std option">
<dt class="sig sig-object std" id="cmdoption-osxphotos-add-locations-no-title">
<span class="sig-name descname"><span class="pre">--no-title</span></span><span class="sig-prename descclassname"></span><a class="headerlink" href="#cmdoption-osxphotos-add-locations-no-title" title="Permalink to this definition">#</a></dt>
<dd><p>Search for photos with no title.</p>
</dd></dl>
<dl class="std option">
<dt class="sig sig-object std" id="cmdoption-osxphotos-add-locations-description">
<span class="sig-name descname"><span class="pre">--description</span></span><span class="sig-prename descclassname"> <span class="pre">&lt;DESC&gt;</span></span><a class="headerlink" href="#cmdoption-osxphotos-add-locations-description" title="Permalink to this definition">#</a></dt>
<dd><p>Search for DESC in description of photo.</p>
</dd></dl>
<dl class="std option">
<dt class="sig sig-object std" id="cmdoption-osxphotos-add-locations-no-description">
<span class="sig-name descname"><span class="pre">--no-description</span></span><span class="sig-prename descclassname"></span><a class="headerlink" href="#cmdoption-osxphotos-add-locations-no-description" title="Permalink to this definition">#</a></dt>
<dd><p>Search for photos with no description.</p>
</dd></dl>
<dl class="std option">
<dt class="sig sig-object std" id="cmdoption-osxphotos-add-locations-place">
<span class="sig-name descname"><span class="pre">--place</span></span><span class="sig-prename descclassname"> <span class="pre">&lt;PLACE&gt;</span></span><a class="headerlink" href="#cmdoption-osxphotos-add-locations-place" title="Permalink to this definition">#</a></dt>
<dd><p>Search for PLACE in photos reverse geolocation info</p>
</dd></dl>
<dl class="std option">
<dt class="sig sig-object std" id="cmdoption-osxphotos-add-locations-no-place">
<span class="sig-name descname"><span class="pre">--no-place</span></span><span class="sig-prename descclassname"></span><a class="headerlink" href="#cmdoption-osxphotos-add-locations-no-place" title="Permalink to this definition">#</a></dt>
<dd><p>Search for photos with no associated place name info (no reverse geolocation info)</p>
</dd></dl>
<dl class="std option">
<dt class="sig sig-object std" id="cmdoption-osxphotos-add-locations-location">
<span class="sig-name descname"><span class="pre">--location</span></span><span class="sig-prename descclassname"></span><a class="headerlink" href="#cmdoption-osxphotos-add-locations-location" title="Permalink to this definition">#</a></dt>
<dd><p>Search for photos with associated location info (e.g. GPS coordinates)</p>
</dd></dl>
<dl class="std option">
<dt class="sig sig-object std" id="cmdoption-osxphotos-add-locations-no-location">
<span class="sig-name descname"><span class="pre">--no-location</span></span><span class="sig-prename descclassname"></span><a class="headerlink" href="#cmdoption-osxphotos-add-locations-no-location" title="Permalink to this definition">#</a></dt>
<dd><p>Search for photos with no associated location info (e.g. no GPS coordinates)</p>
</dd></dl>
<dl class="std option">
<dt class="sig sig-object std" id="cmdoption-osxphotos-add-locations-label">
<span class="sig-name descname"><span class="pre">--label</span></span><span class="sig-prename descclassname"> <span class="pre">&lt;LABEL&gt;</span></span><a class="headerlink" href="#cmdoption-osxphotos-add-locations-label" title="Permalink to this definition">#</a></dt>
<dd><p>Search for photos with image classification label LABEL (Photos 5+ only). If more than one label, treated as “OR”, e.g. find photos matching any label</p>
</dd></dl>
<dl class="std option">
<dt class="sig sig-object std" id="cmdoption-osxphotos-add-locations-uti">
<span class="sig-name descname"><span class="pre">--uti</span></span><span class="sig-prename descclassname"> <span class="pre">&lt;UTI&gt;</span></span><a class="headerlink" href="#cmdoption-osxphotos-add-locations-uti" title="Permalink to this definition">#</a></dt>
<dd><p>Search for photos whose uniform type identifier (UTI) matches UTI</p>
</dd></dl>
<dl class="std option">
<dt class="sig sig-object std" id="cmdoption-osxphotos-add-locations-i">
<span id="cmdoption-osxphotos-add-locations-ignore-case"></span><span class="sig-name descname"><span class="pre">-i</span></span><span class="sig-prename descclassname"></span><span class="sig-prename descclassname"><span class="pre">,</span> </span><span class="sig-name descname"><span class="pre">--ignore-case</span></span><span class="sig-prename descclassname"></span><a class="headerlink" href="#cmdoption-osxphotos-add-locations-i" title="Permalink to this definition">#</a></dt>
<dd><p>Case insensitive search for title, description, place, keyword, person, or album.</p>
</dd></dl>
<dl class="std option">
<dt class="sig sig-object std" id="cmdoption-osxphotos-add-locations-edited">
<span class="sig-name descname"><span class="pre">--edited</span></span><span class="sig-prename descclassname"></span><a class="headerlink" href="#cmdoption-osxphotos-add-locations-edited" title="Permalink to this definition">#</a></dt>
<dd><p>Search for photos that have been edited.</p>
</dd></dl>
<dl class="std option">
<dt class="sig sig-object std" id="cmdoption-osxphotos-add-locations-external-edit">
<span class="sig-name descname"><span class="pre">--external-edit</span></span><span class="sig-prename descclassname"></span><a class="headerlink" href="#cmdoption-osxphotos-add-locations-external-edit" title="Permalink to this definition">#</a></dt>
<dd><p>Search for photos edited in external editor.</p>
</dd></dl>
<dl class="std option">
<dt class="sig sig-object std" id="cmdoption-osxphotos-add-locations-favorite">
<span class="sig-name descname"><span class="pre">--favorite</span></span><span class="sig-prename descclassname"></span><a class="headerlink" href="#cmdoption-osxphotos-add-locations-favorite" title="Permalink to this definition">#</a></dt>
<dd><p>Search for photos marked favorite.</p>
</dd></dl>
<dl class="std option">
<dt class="sig sig-object std" id="cmdoption-osxphotos-add-locations-not-favorite">
<span class="sig-name descname"><span class="pre">--not-favorite</span></span><span class="sig-prename descclassname"></span><a class="headerlink" href="#cmdoption-osxphotos-add-locations-not-favorite" title="Permalink to this definition">#</a></dt>
<dd><p>Search for photos not marked favorite.</p>
</dd></dl>
<dl class="std option">
<dt class="sig sig-object std" id="cmdoption-osxphotos-add-locations-hidden">
<span class="sig-name descname"><span class="pre">--hidden</span></span><span class="sig-prename descclassname"></span><a class="headerlink" href="#cmdoption-osxphotos-add-locations-hidden" title="Permalink to this definition">#</a></dt>
<dd><p>Search for photos marked hidden.</p>
</dd></dl>
<dl class="std option">
<dt class="sig sig-object std" id="cmdoption-osxphotos-add-locations-not-hidden">
<span class="sig-name descname"><span class="pre">--not-hidden</span></span><span class="sig-prename descclassname"></span><a class="headerlink" href="#cmdoption-osxphotos-add-locations-not-hidden" title="Permalink to this definition">#</a></dt>
<dd><p>Search for photos not marked hidden.</p>
</dd></dl>
<dl class="std option">
<dt class="sig sig-object std" id="cmdoption-osxphotos-add-locations-shared">
<span class="sig-name descname"><span class="pre">--shared</span></span><span class="sig-prename descclassname"></span><a class="headerlink" href="#cmdoption-osxphotos-add-locations-shared" title="Permalink to this definition">#</a></dt>
<dd><p>Search for photos in shared iCloud album (Photos 5+ only).</p>
</dd></dl>
<dl class="std option">
<dt class="sig sig-object std" id="cmdoption-osxphotos-add-locations-not-shared">
<span class="sig-name descname"><span class="pre">--not-shared</span></span><span class="sig-prename descclassname"></span><a class="headerlink" href="#cmdoption-osxphotos-add-locations-not-shared" title="Permalink to this definition">#</a></dt>
<dd><p>Search for photos not in shared iCloud album (Photos 5+ only).</p>
</dd></dl>
<dl class="std option">
<dt class="sig sig-object std" id="cmdoption-osxphotos-add-locations-burst">
<span class="sig-name descname"><span class="pre">--burst</span></span><span class="sig-prename descclassname"></span><a class="headerlink" href="#cmdoption-osxphotos-add-locations-burst" title="Permalink to this definition">#</a></dt>
<dd><p>Search for photos that were taken in a burst.</p>
</dd></dl>
<dl class="std option">
<dt class="sig sig-object std" id="cmdoption-osxphotos-add-locations-not-burst">
<span class="sig-name descname"><span class="pre">--not-burst</span></span><span class="sig-prename descclassname"></span><a class="headerlink" href="#cmdoption-osxphotos-add-locations-not-burst" title="Permalink to this definition">#</a></dt>
<dd><p>Search for photos that are not part of a burst.</p>
</dd></dl>
<dl class="std option">
<dt class="sig sig-object std" id="cmdoption-osxphotos-add-locations-live">
<span class="sig-name descname"><span class="pre">--live</span></span><span class="sig-prename descclassname"></span><a class="headerlink" href="#cmdoption-osxphotos-add-locations-live" title="Permalink to this definition">#</a></dt>
<dd><p>Search for Apple live photos</p>
</dd></dl>
<dl class="std option">
<dt class="sig sig-object std" id="cmdoption-osxphotos-add-locations-not-live">
<span class="sig-name descname"><span class="pre">--not-live</span></span><span class="sig-prename descclassname"></span><a class="headerlink" href="#cmdoption-osxphotos-add-locations-not-live" title="Permalink to this definition">#</a></dt>
<dd><p>Search for photos that are not Apple live photos.</p>
</dd></dl>
<dl class="std option">
<dt class="sig sig-object std" id="cmdoption-osxphotos-add-locations-portrait">
<span class="sig-name descname"><span class="pre">--portrait</span></span><span class="sig-prename descclassname"></span><a class="headerlink" href="#cmdoption-osxphotos-add-locations-portrait" title="Permalink to this definition">#</a></dt>
<dd><p>Search for Apple portrait mode photos.</p>
</dd></dl>
<dl class="std option">
<dt class="sig sig-object std" id="cmdoption-osxphotos-add-locations-not-portrait">
<span class="sig-name descname"><span class="pre">--not-portrait</span></span><span class="sig-prename descclassname"></span><a class="headerlink" href="#cmdoption-osxphotos-add-locations-not-portrait" title="Permalink to this definition">#</a></dt>
<dd><p>Search for photos that are not Apple portrait mode photos.</p>
</dd></dl>
<dl class="std option">
<dt class="sig sig-object std" id="cmdoption-osxphotos-add-locations-screenshot">
<span class="sig-name descname"><span class="pre">--screenshot</span></span><span class="sig-prename descclassname"></span><a class="headerlink" href="#cmdoption-osxphotos-add-locations-screenshot" title="Permalink to this definition">#</a></dt>
<dd><p>Search for screenshot photos.</p>
</dd></dl>
<dl class="std option">
<dt class="sig sig-object std" id="cmdoption-osxphotos-add-locations-not-screenshot">
<span class="sig-name descname"><span class="pre">--not-screenshot</span></span><span class="sig-prename descclassname"></span><a class="headerlink" href="#cmdoption-osxphotos-add-locations-not-screenshot" title="Permalink to this definition">#</a></dt>
<dd><p>Search for photos that are not screenshot photos.</p>
</dd></dl>
<dl class="std option">
<dt class="sig sig-object std" id="cmdoption-osxphotos-add-locations-slow-mo">
<span class="sig-name descname"><span class="pre">--slow-mo</span></span><span class="sig-prename descclassname"></span><a class="headerlink" href="#cmdoption-osxphotos-add-locations-slow-mo" title="Permalink to this definition">#</a></dt>
<dd><p>Search for slow motion videos.</p>
</dd></dl>
<dl class="std option">
<dt class="sig sig-object std" id="cmdoption-osxphotos-add-locations-not-slow-mo">
<span class="sig-name descname"><span class="pre">--not-slow-mo</span></span><span class="sig-prename descclassname"></span><a class="headerlink" href="#cmdoption-osxphotos-add-locations-not-slow-mo" title="Permalink to this definition">#</a></dt>
<dd><p>Search for photos that are not slow motion videos.</p>
</dd></dl>
<dl class="std option">
<dt class="sig sig-object std" id="cmdoption-osxphotos-add-locations-time-lapse">
<span class="sig-name descname"><span class="pre">--time-lapse</span></span><span class="sig-prename descclassname"></span><a class="headerlink" href="#cmdoption-osxphotos-add-locations-time-lapse" title="Permalink to this definition">#</a></dt>
<dd><p>Search for time lapse videos.</p>
</dd></dl>
<dl class="std option">
<dt class="sig sig-object std" id="cmdoption-osxphotos-add-locations-not-time-lapse">
<span class="sig-name descname"><span class="pre">--not-time-lapse</span></span><span class="sig-prename descclassname"></span><a class="headerlink" href="#cmdoption-osxphotos-add-locations-not-time-lapse" title="Permalink to this definition">#</a></dt>
<dd><p>Search for photos that are not time lapse videos.</p>
</dd></dl>
<dl class="std option">
<dt class="sig sig-object std" id="cmdoption-osxphotos-add-locations-hdr">
<span class="sig-name descname"><span class="pre">--hdr</span></span><span class="sig-prename descclassname"></span><a class="headerlink" href="#cmdoption-osxphotos-add-locations-hdr" title="Permalink to this definition">#</a></dt>
<dd><p>Search for high dynamic range (HDR) photos.</p>
</dd></dl>
<dl class="std option">
<dt class="sig sig-object std" id="cmdoption-osxphotos-add-locations-not-hdr">
<span class="sig-name descname"><span class="pre">--not-hdr</span></span><span class="sig-prename descclassname"></span><a class="headerlink" href="#cmdoption-osxphotos-add-locations-not-hdr" title="Permalink to this definition">#</a></dt>
<dd><p>Search for photos that are not HDR photos.</p>
</dd></dl>
<dl class="std option">
<dt class="sig sig-object std" id="cmdoption-osxphotos-add-locations-selfie">
<span class="sig-name descname"><span class="pre">--selfie</span></span><span class="sig-prename descclassname"></span><a class="headerlink" href="#cmdoption-osxphotos-add-locations-selfie" title="Permalink to this definition">#</a></dt>
<dd><p>Search for selfies (photos taken with front-facing cameras).</p>
</dd></dl>
<dl class="std option">
<dt class="sig sig-object std" id="cmdoption-osxphotos-add-locations-not-selfie">
<span class="sig-name descname"><span class="pre">--not-selfie</span></span><span class="sig-prename descclassname"></span><a class="headerlink" href="#cmdoption-osxphotos-add-locations-not-selfie" title="Permalink to this definition">#</a></dt>
<dd><p>Search for photos that are not selfies.</p>
</dd></dl>
<dl class="std option">
<dt class="sig sig-object std" id="cmdoption-osxphotos-add-locations-panorama">
<span class="sig-name descname"><span class="pre">--panorama</span></span><span class="sig-prename descclassname"></span><a class="headerlink" href="#cmdoption-osxphotos-add-locations-panorama" title="Permalink to this definition">#</a></dt>
<dd><p>Search for panorama photos.</p>
</dd></dl>
<dl class="std option">
<dt class="sig sig-object std" id="cmdoption-osxphotos-add-locations-not-panorama">
<span class="sig-name descname"><span class="pre">--not-panorama</span></span><span class="sig-prename descclassname"></span><a class="headerlink" href="#cmdoption-osxphotos-add-locations-not-panorama" title="Permalink to this definition">#</a></dt>
<dd><p>Search for photos that are not panoramas.</p>
</dd></dl>
<dl class="std option">
<dt class="sig sig-object std" id="cmdoption-osxphotos-add-locations-has-raw">
<span class="sig-name descname"><span class="pre">--has-raw</span></span><span class="sig-prename descclassname"></span><a class="headerlink" href="#cmdoption-osxphotos-add-locations-has-raw" title="Permalink to this definition">#</a></dt>
<dd><p>Search for photos with both a jpeg and raw version</p>
</dd></dl>
<dl class="std option">
<dt class="sig sig-object std" id="cmdoption-osxphotos-add-locations-only-movies">
<span class="sig-name descname"><span class="pre">--only-movies</span></span><span class="sig-prename descclassname"></span><a class="headerlink" href="#cmdoption-osxphotos-add-locations-only-movies" title="Permalink to this definition">#</a></dt>
<dd><p>Search only for movies (default searches both images and movies).</p>
</dd></dl>
<dl class="std option">
<dt class="sig sig-object std" id="cmdoption-osxphotos-add-locations-only-photos">
<span class="sig-name descname"><span class="pre">--only-photos</span></span><span class="sig-prename descclassname"></span><a class="headerlink" href="#cmdoption-osxphotos-add-locations-only-photos" title="Permalink to this definition">#</a></dt>
<dd><p>Search only for photos/images (default searches both images and movies).</p>
</dd></dl>
<dl class="std option">
<dt class="sig sig-object std" id="cmdoption-osxphotos-add-locations-from-date">
<span class="sig-name descname"><span class="pre">--from-date</span></span><span class="sig-prename descclassname"> <span class="pre">&lt;from_date&gt;</span></span><a class="headerlink" href="#cmdoption-osxphotos-add-locations-from-date" title="Permalink to this definition">#</a></dt>
<dd><p>Search by item start date, e.g. 2000-01-12T12:00:00, 2001-01-12T12:00:00-07:00, or 2000-12-31 (ISO 8601 with/without timezone).</p>
</dd></dl>
<dl class="std option">
<dt class="sig sig-object std" id="cmdoption-osxphotos-add-locations-to-date">
<span class="sig-name descname"><span class="pre">--to-date</span></span><span class="sig-prename descclassname"> <span class="pre">&lt;to_date&gt;</span></span><a class="headerlink" href="#cmdoption-osxphotos-add-locations-to-date" title="Permalink to this definition">#</a></dt>
<dd><p>Search by item end date, e.g. 2000-01-12T12:00:00, 2001-01-12T12:00:00-07:00, or 2000-12-31 (ISO 8601 with/without timezone).</p>
</dd></dl>
<dl class="std option">
<dt class="sig sig-object std" id="cmdoption-osxphotos-add-locations-from-time">
<span class="sig-name descname"><span class="pre">--from-time</span></span><span class="sig-prename descclassname"> <span class="pre">&lt;from_time&gt;</span></span><a class="headerlink" href="#cmdoption-osxphotos-add-locations-from-time" title="Permalink to this definition">#</a></dt>
<dd><p>Search by item start time of day, e.g. 12:00, or 12:00:00.</p>
</dd></dl>
<dl class="std option">
<dt class="sig sig-object std" id="cmdoption-osxphotos-add-locations-to-time">
<span class="sig-name descname"><span class="pre">--to-time</span></span><span class="sig-prename descclassname"> <span class="pre">&lt;to_time&gt;</span></span><a class="headerlink" href="#cmdoption-osxphotos-add-locations-to-time" title="Permalink to this definition">#</a></dt>
<dd><p>Search by item end time of day, e.g. 12:00 or 12:00:00.</p>
</dd></dl>
<dl class="std option">
<dt class="sig sig-object std" id="cmdoption-osxphotos-add-locations-year">
<span class="sig-name descname"><span class="pre">--year</span></span><span class="sig-prename descclassname"> <span class="pre">&lt;YEAR&gt;</span></span><a class="headerlink" href="#cmdoption-osxphotos-add-locations-year" title="Permalink to this definition">#</a></dt>
<dd><p>Search for items from a specific year, e.g. year 2022 to find all photos from the year 2022. May be repeated to search multiple years.</p>
</dd></dl>
<dl class="std option">
<dt class="sig sig-object std" id="cmdoption-osxphotos-add-locations-added-before">
<span class="sig-name descname"><span class="pre">--added-before</span></span><span class="sig-prename descclassname"> <span class="pre">&lt;DATE&gt;</span></span><a class="headerlink" href="#cmdoption-osxphotos-add-locations-added-before" title="Permalink to this definition">#</a></dt>
<dd><p>Search for items added to the library before a specific date/time, e.g. added-before e.g. 2000-01-12T12:00:00, 2001-01-12T12:00:00-07:00, or 2000-12-31 (ISO 8601 with/without timezone).</p>
</dd></dl>
<dl class="std option">
<dt class="sig sig-object std" id="cmdoption-osxphotos-add-locations-added-after">
<span class="sig-name descname"><span class="pre">--added-after</span></span><span class="sig-prename descclassname"> <span class="pre">&lt;DATE&gt;</span></span><a class="headerlink" href="#cmdoption-osxphotos-add-locations-added-after" title="Permalink to this definition">#</a></dt>
<dd><p>Search for items added to the libray after a specific date/time, e.g. added-after e.g. 2000-01-12T12:00:00, 2001-01-12T12:00:00-07:00, or 2000-12-31 (ISO 8601 with/without timezone).</p>
</dd></dl>
<dl class="std option">
<dt class="sig sig-object std" id="cmdoption-osxphotos-add-locations-added-in-last">
<span class="sig-name descname"><span class="pre">--added-in-last</span></span><span class="sig-prename descclassname"> <span class="pre">&lt;TIME_DELTA&gt;</span></span><a class="headerlink" href="#cmdoption-osxphotos-add-locations-added-in-last" title="Permalink to this definition">#</a></dt>
<dd><p>Search for items added to the library in the last TIME_DELTA, where TIME_DELTA is a string like 12 hrs, 1 day, 1d, 1 week, 2weeks, 1 month, 1 year. for example, <cite>added-in-last 7d</cite> and <cite>added-in-last 1 week</cite> are equivalent. months are assumed to be 30 days and years are assumed to be 365 days. Common English abbreviations are accepted, e.g. d, day, days or m, min, minutes.</p>
</dd></dl>
<dl class="std option">
<dt class="sig sig-object std" id="cmdoption-osxphotos-add-locations-has-comment">
<span class="sig-name descname"><span class="pre">--has-comment</span></span><span class="sig-prename descclassname"></span><a class="headerlink" href="#cmdoption-osxphotos-add-locations-has-comment" title="Permalink to this definition">#</a></dt>
<dd><p>Search for photos that have comments.</p>
</dd></dl>
<dl class="std option">
<dt class="sig sig-object std" id="cmdoption-osxphotos-add-locations-no-comment">
<span class="sig-name descname"><span class="pre">--no-comment</span></span><span class="sig-prename descclassname"></span><a class="headerlink" href="#cmdoption-osxphotos-add-locations-no-comment" title="Permalink to this definition">#</a></dt>
<dd><p>Search for photos with no comments.</p>
</dd></dl>
<dl class="std option">
<dt class="sig sig-object std" id="cmdoption-osxphotos-add-locations-has-likes">
<span class="sig-name descname"><span class="pre">--has-likes</span></span><span class="sig-prename descclassname"></span><a class="headerlink" href="#cmdoption-osxphotos-add-locations-has-likes" title="Permalink to this definition">#</a></dt>
<dd><p>Search for photos that have likes.</p>
</dd></dl>
<dl class="std option">
<dt class="sig sig-object std" id="cmdoption-osxphotos-add-locations-no-likes">
<span class="sig-name descname"><span class="pre">--no-likes</span></span><span class="sig-prename descclassname"></span><a class="headerlink" href="#cmdoption-osxphotos-add-locations-no-likes" title="Permalink to this definition">#</a></dt>
<dd><p>Search for photos with no likes.</p>
</dd></dl>
<dl class="std option">
<dt class="sig sig-object std" id="cmdoption-osxphotos-add-locations-is-reference">
<span class="sig-name descname"><span class="pre">--is-reference</span></span><span class="sig-prename descclassname"></span><a class="headerlink" href="#cmdoption-osxphotos-add-locations-is-reference" title="Permalink to this definition">#</a></dt>
<dd><p>Search for photos that were imported as referenced files (not copied into Photos library).</p>
</dd></dl>
<dl class="std option">
<dt class="sig sig-object std" id="cmdoption-osxphotos-add-locations-not-reference">
<span class="sig-name descname"><span class="pre">--not-reference</span></span><span class="sig-prename descclassname"></span><a class="headerlink" href="#cmdoption-osxphotos-add-locations-not-reference" title="Permalink to this definition">#</a></dt>
<dd><p>Search for photos that are not references, that is, they were copied into the Photos library and are managed by Photos.</p>
</dd></dl>
<dl class="std option">
<dt class="sig sig-object std" id="cmdoption-osxphotos-add-locations-in-album">
<span class="sig-name descname"><span class="pre">--in-album</span></span><span class="sig-prename descclassname"></span><a class="headerlink" href="#cmdoption-osxphotos-add-locations-in-album" title="Permalink to this definition">#</a></dt>
<dd><p>Search for photos that are in one or more albums.</p>
</dd></dl>
<dl class="std option">
<dt class="sig sig-object std" id="cmdoption-osxphotos-add-locations-not-in-album">
<span class="sig-name descname"><span class="pre">--not-in-album</span></span><span class="sig-prename descclassname"></span><a class="headerlink" href="#cmdoption-osxphotos-add-locations-not-in-album" title="Permalink to this definition">#</a></dt>
<dd><p>Search for photos that are not in any albums.</p>
</dd></dl>
<dl class="std option">
<dt class="sig sig-object std" id="cmdoption-osxphotos-add-locations-duplicate">
<span class="sig-name descname"><span class="pre">--duplicate</span></span><span class="sig-prename descclassname"></span><a class="headerlink" href="#cmdoption-osxphotos-add-locations-duplicate" title="Permalink to this definition">#</a></dt>
<dd><p>Search for photos with possible duplicates. osxphotos will compare signatures of photos, evaluating date created, size, height, width, and edited status to find <em>possible</em> duplicates. This does not compare images byte-for-byte nor compare hashes but should find photos imported multiple times or duplicated within Photos.</p>
</dd></dl>
<dl class="std option">
<dt class="sig sig-object std" id="cmdoption-osxphotos-add-locations-min-size">
<span class="sig-name descname"><span class="pre">--min-size</span></span><span class="sig-prename descclassname"> <span class="pre">&lt;SIZE&gt;</span></span><a class="headerlink" href="#cmdoption-osxphotos-add-locations-min-size" title="Permalink to this definition">#</a></dt>
<dd><p>Search for photos with size &gt;= SIZE bytes. The size evaluated is the photos original size (when imported to Photos). Size may be specified as integer bytes or using SI or NIST units. For example, the following are all valid and equivalent sizes: 1048576 1.048576MB, 1 MiB.</p>
</dd></dl>
<dl class="std option">
<dt class="sig sig-object std" id="cmdoption-osxphotos-add-locations-max-size">
<span class="sig-name descname"><span class="pre">--max-size</span></span><span class="sig-prename descclassname"> <span class="pre">&lt;SIZE&gt;</span></span><a class="headerlink" href="#cmdoption-osxphotos-add-locations-max-size" title="Permalink to this definition">#</a></dt>
<dd><p>Search for photos with size &lt;= SIZE bytes. The size evaluated is the photos original size (when imported to Photos). Size may be specified as integer bytes or using SI or NIST units. For example, the following are all valid and equivalent sizes: 1048576 1.048576MB, 1 MiB.</p>
</dd></dl>
<dl class="std option">
<dt class="sig sig-object std" id="cmdoption-osxphotos-add-locations-missing">
<span class="sig-name descname"><span class="pre">--missing</span></span><span class="sig-prename descclassname"></span><a class="headerlink" href="#cmdoption-osxphotos-add-locations-missing" title="Permalink to this definition">#</a></dt>
<dd><p>Search for photos missing from disk.</p>
</dd></dl>
<dl class="std option">
<dt class="sig sig-object std" id="cmdoption-osxphotos-add-locations-not-missing">
<span class="sig-name descname"><span class="pre">--not-missing</span></span><span class="sig-prename descclassname"></span><a class="headerlink" href="#cmdoption-osxphotos-add-locations-not-missing" title="Permalink to this definition">#</a></dt>
<dd><p>Search for photos present on disk (e.g. not missing).</p>
</dd></dl>
<dl class="std option">
<dt class="sig sig-object std" id="cmdoption-osxphotos-add-locations-cloudasset">
<span class="sig-name descname"><span class="pre">--cloudasset</span></span><span class="sig-prename descclassname"></span><a class="headerlink" href="#cmdoption-osxphotos-add-locations-cloudasset" title="Permalink to this definition">#</a></dt>
<dd><p>Search for photos that are part of an iCloud library</p>
</dd></dl>
<dl class="std option">
<dt class="sig sig-object std" id="cmdoption-osxphotos-add-locations-not-cloudasset">
<span class="sig-name descname"><span class="pre">--not-cloudasset</span></span><span class="sig-prename descclassname"></span><a class="headerlink" href="#cmdoption-osxphotos-add-locations-not-cloudasset" title="Permalink to this definition">#</a></dt>
<dd><p>Search for photos that are not part of an iCloud library</p>
</dd></dl>
<dl class="std option">
<dt class="sig sig-object std" id="cmdoption-osxphotos-add-locations-incloud">
<span class="sig-name descname"><span class="pre">--incloud</span></span><span class="sig-prename descclassname"></span><a class="headerlink" href="#cmdoption-osxphotos-add-locations-incloud" title="Permalink to this definition">#</a></dt>
<dd><p>Search for photos that are in iCloud (have been synched)</p>
</dd></dl>
<dl class="std option">
<dt class="sig sig-object std" id="cmdoption-osxphotos-add-locations-not-incloud">
<span class="sig-name descname"><span class="pre">--not-incloud</span></span><span class="sig-prename descclassname"></span><a class="headerlink" href="#cmdoption-osxphotos-add-locations-not-incloud" title="Permalink to this definition">#</a></dt>
<dd><p>Search for photos that are not in iCloud (have not been synched)</p>
</dd></dl>
<dl class="std option">
<dt class="sig sig-object std" id="cmdoption-osxphotos-add-locations-regex">
<span class="sig-name descname"><span class="pre">--regex</span></span><span class="sig-prename descclassname"> <span class="pre">&lt;REGEX</span> <span class="pre">TEMPLATE&gt;</span></span><a class="headerlink" href="#cmdoption-osxphotos-add-locations-regex" title="Permalink to this definition">#</a></dt>
<dd><p>Search for photos where TEMPLATE matches regular expression REGEX. For example, to find photos in an album that begins with Beach: regex “^Beach” “{album}”’. You may specify more than one regular expression match by repeating regex with different arguments.</p>
</dd></dl>
<dl class="std option">
<dt class="sig sig-object std" id="cmdoption-osxphotos-add-locations-selected">
<span class="sig-name descname"><span class="pre">--selected</span></span><span class="sig-prename descclassname"></span><a class="headerlink" href="#cmdoption-osxphotos-add-locations-selected" title="Permalink to this definition">#</a></dt>
<dd><p>Filter for photos that are currently selected in Photos.</p>
</dd></dl>
<dl class="std option">
<dt class="sig sig-object std" id="cmdoption-osxphotos-add-locations-exif">
<span class="sig-name descname"><span class="pre">--exif</span></span><span class="sig-prename descclassname"> <span class="pre">&lt;EXIF_TAG</span> <span class="pre">VALUE&gt;</span></span><a class="headerlink" href="#cmdoption-osxphotos-add-locations-exif" title="Permalink to this definition">#</a></dt>
<dd><p>Search for photos where EXIF_TAG exists in photos EXIF data and contains VALUE. For example, to find photos created by Adobe Photoshop: <cite>exif Software Adobe Photoshop `or to find all photos shot on a Canon camera: `exif Make Canon</cite>. EXIF_TAG can be any valid exiftool tag, with or without group name, e.g. <cite>EXIF:Make</cite> or <cite>Make</cite>. To use exif, exiftool must be installed and in the path.</p>
</dd></dl>
<dl class="std option">
<dt class="sig sig-object std" id="cmdoption-osxphotos-add-locations-query-eval">
<span class="sig-name descname"><span class="pre">--query-eval</span></span><span class="sig-prename descclassname"> <span class="pre">&lt;CRITERIA&gt;</span></span><a class="headerlink" href="#cmdoption-osxphotos-add-locations-query-eval" title="Permalink to this definition">#</a></dt>
<dd><p>Evaluate CRITERIA to filter photos. CRITERIA will be evaluated in context of the following python list comprehension: <cite>photos = [photo for photo in photos if CRITERIA]</cite> where photo represents a PhotoInfo object. For example: <cite>query-eval photo.favorite</cite> returns all photos that have been favorited and is equivalent to favorite. You may specify more than one CRITERIA by using query-eval multiple times. CRITERIA must be a valid python expression. See <a class="reference external" href="https://rhettbull.github.io/osxphotos/">https://rhettbull.github.io/osxphotos/</a> for additional documentation on the PhotoInfo class.</p>
</dd></dl>
<dl class="std option">
<dt class="sig sig-object std" id="cmdoption-osxphotos-add-locations-query-function">
<span class="sig-name descname"><span class="pre">--query-function</span></span><span class="sig-prename descclassname"> <span class="pre">&lt;filename.py::function&gt;</span></span><a class="headerlink" href="#cmdoption-osxphotos-add-locations-query-function" title="Permalink to this definition">#</a></dt>
<dd><p>Run function to filter photos. Use this in format: query-function filename.py::function where filename.py is a python file youve created and function is the name of the function in the python file you want to call. Your function will be passed a list of PhotoInfo objects and is expected to return a filtered list of PhotoInfo objects. You may use more than one function by repeating the query-function option with a different value. Your query function will be called after all other query options have been evaluated. See https://github.com/RhetTbull/osxphotos/blob/master/examples/query_function.py for example of how to use this option.</p>
</dd></dl>
<dl class="std option">
<dt class="sig sig-object std" id="cmdoption-osxphotos-add-locations-theme">
<span class="sig-name descname"><span class="pre">--theme</span></span><span class="sig-prename descclassname"> <span class="pre">&lt;THEME&gt;</span></span><a class="headerlink" href="#cmdoption-osxphotos-add-locations-theme" title="Permalink to this definition">#</a></dt>
<dd><p>Specify the color theme to use for verbose output. Valid themes are dark, light, mono, and plain. Defaults to dark or light depending on system dark mode setting.</p>
<dl class="field-list simple">
<dt class="field-odd">Options<span class="colon">:</span></dt>
<dd class="field-odd"><p>dark | light | mono | plain</p>
</dd>
</dl>
</dd></dl>
</section>
<section id="osxphotos-albums">
<h3>albums<a class="headerlink" href="#osxphotos-albums" title="Permalink to this heading">#</a></h3>
@ -3233,6 +3767,12 @@ two different computers, you can export the metadata to a shared folder.</p>
<dd><p>When used with import, merge metadata in local Photos library with import data. Multiple metadata properties can be specified by repeating the merge option or by using a comma-separated list. METADATA can be one of: all, keywords, albums, title, description, favorite. For example, to merge keywords and favorite, use <cite>merge keywords merge favorite</cite> or <cite>merge keywords,favorite</cite>. If <cite>merge all</cite> is specified, all metadata will be merged. Note that using merge does not overwrite any existing metadata in the local Photos library. For example, if a photo is marked as favorite in the local library but not in the import source, merge favorite will not change the favorite status in the local library. See also set.</p>
</dd></dl>
<dl class="std option">
<dt class="sig sig-object std" id="cmdoption-osxphotos-sync-U">
<span id="cmdoption-osxphotos-sync-u"></span><span id="cmdoption-osxphotos-sync-unmatched"></span><span class="sig-name descname"><span class="pre">-U</span></span><span class="sig-prename descclassname"></span><span class="sig-prename descclassname"><span class="pre">,</span> </span><span class="sig-name descname"><span class="pre">--unmatched</span></span><span class="sig-prename descclassname"></span><a class="headerlink" href="#cmdoption-osxphotos-sync-U" title="Permalink to this definition">#</a></dt>
<dd><p>When used with import, print out a list of photos in the import source that were not matched against the local library. Also prints out a list of photos in the local library that were not matched against the import source.</p>
</dd></dl>
<dl class="std option">
<dt class="sig sig-object std" id="cmdoption-osxphotos-sync-R">
<span id="cmdoption-osxphotos-sync-r"></span><span id="cmdoption-osxphotos-sync-report"></span><span class="sig-name descname"><span class="pre">-R</span></span><span class="sig-prename descclassname"></span><span class="sig-prename descclassname"><span class="pre">,</span> </span><span class="sig-name descname"><span class="pre">--report</span></span><span class="sig-prename descclassname"> <span class="pre">&lt;REPORT_FILE&gt;</span></span><a class="headerlink" href="#cmdoption-osxphotos-sync-R" title="Permalink to this definition">#</a></dt>
@ -4118,6 +4658,7 @@ Commands:
<li><a class="reference internal" href="#">OSXPhotos Command Line Interface (CLI)</a><ul>
<li><a class="reference internal" href="#osxphotos">osxphotos</a><ul>
<li><a class="reference internal" href="#osxphotos-about">about</a></li>
<li><a class="reference internal" href="#osxphotos-add-locations">add-locations</a></li>
<li><a class="reference internal" href="#osxphotos-albums">albums</a></li>
<li><a class="reference internal" href="#osxphotos-diff">diff</a></li>
<li><a class="reference internal" href="#osxphotos-docs">docs</a></li>

View File

@ -4,7 +4,7 @@
<meta name="viewport" content="width=device-width,initial-scale=1"/>
<meta name="color-scheme" content="light dark"><link rel="index" title="Index" href="#" /><link rel="search" title="Search" href="search.html" />
<meta name="generator" content="sphinx-5.3.0, furo 2022.09.29"/><title>Index - osxphotos 0.56.2 documentation</title>
<meta name="generator" content="sphinx-5.3.0, furo 2022.09.29"/><title>Index - osxphotos 0.56.3 documentation</title>
<link rel="stylesheet" type="text/css" href="_static/pygments.css" />
<link rel="stylesheet" type="text/css" href="_static/styles/furo.css?digest=d81277517bee4d6b0349d71bb2661d4890b5617c" />
<link rel="stylesheet" type="text/css" href="_static/copybutton.css" />
@ -122,7 +122,7 @@
</label>
</div>
<div class="header-center">
<a href="index.html"><div class="brand">osxphotos 0.56.2 documentation</div></a>
<a href="index.html"><div class="brand">osxphotos 0.56.3 documentation</div></a>
</div>
<div class="header-right">
<div class="theme-toggle-container theme-toggle-header">
@ -145,7 +145,7 @@
<div class="sidebar-sticky"><a class="sidebar-brand" href="index.html">
<span class="sidebar-brand-text">osxphotos 0.56.2 documentation</span>
<span class="sidebar-brand-text">osxphotos 0.56.3 documentation</span>
</a><form class="sidebar-search-container" method="get" action="search.html" role="search">
<input class="sidebar-search" placeholder=Search name="q" aria-label="Search">
@ -236,6 +236,8 @@
--added-after
<ul>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-added-after">osxphotos-add-locations command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-export-added-after">osxphotos-export command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-query-added-after">osxphotos-query command line option</a>
@ -249,6 +251,8 @@
--added-before
<ul>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-added-before">osxphotos-add-locations command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-export-added-before">osxphotos-export command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-query-added-before">osxphotos-query command line option</a>
@ -262,6 +266,8 @@
--added-in-last
<ul>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-added-in-last">osxphotos-add-locations command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-export-added-in-last">osxphotos-export command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-query-added-in-last">osxphotos-query command line option</a>
@ -275,6 +281,8 @@
--album
<ul>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-album">osxphotos-add-locations command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-export-album">osxphotos-export command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-import-a">osxphotos-import command line option</a>
@ -321,6 +329,8 @@
--burst
<ul>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-burst">osxphotos-add-locations command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-export-burst">osxphotos-export command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-query-burst">osxphotos-query command line option</a>
@ -376,6 +386,8 @@
--cloudasset
<ul>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-cloudasset">osxphotos-add-locations command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-export-cloudasset">osxphotos-export command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-query-cloudasset">osxphotos-query command line option</a>
@ -538,6 +550,8 @@
--description
<ul>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-description">osxphotos-add-locations command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-export-description">osxphotos-export command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-import-d">osxphotos-import command line option</a>
@ -583,6 +597,8 @@
--dry-run
<ul>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-dry-run">osxphotos-add-locations command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-exiftool-dry-run">osxphotos-exiftool command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-export-dry-run">osxphotos-export command line option</a>
@ -603,6 +619,8 @@
--duplicate
<ul>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-duplicate">osxphotos-add-locations command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-export-duplicate">osxphotos-export command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-query-duplicate">osxphotos-query command line option</a>
@ -623,6 +641,8 @@
--edited
<ul>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-edited">osxphotos-add-locations command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-export-edited">osxphotos-export command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-query-edited">osxphotos-query command line option</a>
@ -657,6 +677,8 @@
--exif
<ul>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-exif">osxphotos-add-locations command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-export-exif">osxphotos-export command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-query-exif">osxphotos-query command line option</a>
@ -758,6 +780,8 @@
--external-edit
<ul>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-external-edit">osxphotos-add-locations command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-export-external-edit">osxphotos-export command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-query-external-edit">osxphotos-query command line option</a>
@ -771,6 +795,8 @@
--favorite
<ul>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-favorite">osxphotos-add-locations command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-export-favorite">osxphotos-export command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-query-favorite">osxphotos-query command line option</a>
@ -823,6 +849,8 @@
--folder
<ul>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-folder">osxphotos-add-locations command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-export-folder">osxphotos-export command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-query-folder">osxphotos-query command line option</a>
@ -850,6 +878,8 @@
--from-date
<ul>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-from-date">osxphotos-add-locations command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-export-from-date">osxphotos-export command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-query-from-date">osxphotos-query command line option</a>
@ -863,6 +893,8 @@
--from-time
<ul>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-from-time">osxphotos-add-locations command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-export-from-time">osxphotos-export command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-query-from-time">osxphotos-query command line option</a>
@ -890,6 +922,8 @@
--has-comment
<ul>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-has-comment">osxphotos-add-locations command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-export-has-comment">osxphotos-export command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-query-has-comment">osxphotos-query command line option</a>
@ -903,6 +937,8 @@
--has-likes
<ul>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-has-likes">osxphotos-add-locations command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-export-has-likes">osxphotos-export command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-query-has-likes">osxphotos-query command line option</a>
@ -916,6 +952,8 @@
--has-raw
<ul>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-has-raw">osxphotos-add-locations command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-export-has-raw">osxphotos-export command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-query-has-raw">osxphotos-query command line option</a>
@ -929,6 +967,8 @@
--hdr
<ul>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-hdr">osxphotos-add-locations command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-export-hdr">osxphotos-export command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-query-hdr">osxphotos-query command line option</a>
@ -949,6 +989,8 @@
--hidden
<ul>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-hidden">osxphotos-add-locations command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-export-hidden">osxphotos-export command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-query-hidden">osxphotos-query command line option</a>
@ -962,6 +1004,8 @@
--ignore-case
<ul>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-i">osxphotos-add-locations command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-export-i">osxphotos-export command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-query-i">osxphotos-query command line option</a>
@ -998,6 +1042,8 @@
--in-album
<ul>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-in-album">osxphotos-add-locations command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-export-in-album">osxphotos-export command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-query-in-album">osxphotos-query command line option</a>
@ -1011,6 +1057,8 @@
--incloud
<ul>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-incloud">osxphotos-add-locations command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-export-incloud">osxphotos-export command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-query-incloud">osxphotos-query command line option</a>
@ -1038,6 +1086,8 @@
--is-reference
<ul>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-is-reference">osxphotos-add-locations command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-export-is-reference">osxphotos-export command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-query-is-reference">osxphotos-query command line option</a>
@ -1097,6 +1147,8 @@
--keyword
<ul>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-keyword">osxphotos-add-locations command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-export-keyword">osxphotos-export command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-import-k">osxphotos-import command line option</a>
@ -1121,6 +1173,8 @@
--label
<ul>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-label">osxphotos-add-locations command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-export-label">osxphotos-export command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-query-label">osxphotos-query command line option</a>
@ -1169,6 +1223,8 @@
--live
<ul>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-live">osxphotos-add-locations command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-export-live">osxphotos-export command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-query-live">osxphotos-query command line option</a>
@ -1191,6 +1247,8 @@
--location
<ul>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-location">osxphotos-add-locations command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-export-location">osxphotos-export command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-import-l">osxphotos-import command line option</a>
@ -1213,6 +1271,8 @@
--max-size
<ul>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-max-size">osxphotos-add-locations command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-export-max-size">osxphotos-export command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-query-max-size">osxphotos-query command line option</a>
@ -1247,6 +1307,8 @@
--min-size
<ul>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-min-size">osxphotos-add-locations command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-export-min-size">osxphotos-export command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-query-min-size">osxphotos-query command line option</a>
@ -1260,6 +1322,8 @@
--missing
<ul>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-missing">osxphotos-add-locations command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-export-missing">osxphotos-export command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-query-missing">osxphotos-query command line option</a>
@ -1273,6 +1337,8 @@
--name
<ul>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-name">osxphotos-add-locations command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-export-name">osxphotos-export command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-query-name">osxphotos-query command line option</a>
@ -1286,6 +1352,8 @@
--no-comment
<ul>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-no-comment">osxphotos-add-locations command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-export-no-comment">osxphotos-export command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-query-no-comment">osxphotos-query command line option</a>
@ -1299,6 +1367,8 @@
--no-description
<ul>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-no-description">osxphotos-add-locations command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-export-no-description">osxphotos-export command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-query-no-description">osxphotos-query command line option</a>
@ -1312,6 +1382,8 @@
--no-keyword
<ul>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-no-keyword">osxphotos-add-locations command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-export-no-keyword">osxphotos-export command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-query-no-keyword">osxphotos-query command line option</a>
@ -1325,6 +1397,8 @@
--no-likes
<ul>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-no-likes">osxphotos-add-locations command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-export-no-likes">osxphotos-export command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-query-no-likes">osxphotos-query command line option</a>
@ -1338,6 +1412,8 @@
--no-location
<ul>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-no-location">osxphotos-add-locations command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-export-no-location">osxphotos-export command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-query-no-location">osxphotos-query command line option</a>
@ -1351,6 +1427,8 @@
--no-place
<ul>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-no-place">osxphotos-add-locations command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-export-no-place">osxphotos-export command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-query-no-place">osxphotos-query command line option</a>
@ -1373,6 +1451,8 @@
--no-title
<ul>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-no-title">osxphotos-add-locations command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-export-no-title">osxphotos-export command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-query-no-title">osxphotos-query command line option</a>
@ -1386,6 +1466,8 @@
--not-burst
<ul>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-not-burst">osxphotos-add-locations command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-export-not-burst">osxphotos-export command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-query-not-burst">osxphotos-query command line option</a>
@ -1399,6 +1481,8 @@
--not-cloudasset
<ul>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-not-cloudasset">osxphotos-add-locations command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-export-not-cloudasset">osxphotos-export command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-query-not-cloudasset">osxphotos-query command line option</a>
@ -1412,6 +1496,8 @@
--not-favorite
<ul>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-not-favorite">osxphotos-add-locations command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-export-not-favorite">osxphotos-export command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-query-not-favorite">osxphotos-query command line option</a>
@ -1425,6 +1511,8 @@
--not-hdr
<ul>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-not-hdr">osxphotos-add-locations command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-export-not-hdr">osxphotos-export command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-query-not-hdr">osxphotos-query command line option</a>
@ -1440,6 +1528,8 @@
--not-hidden
<ul>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-not-hidden">osxphotos-add-locations command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-export-not-hidden">osxphotos-export command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-query-not-hidden">osxphotos-query command line option</a>
@ -1453,6 +1543,8 @@
--not-in-album
<ul>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-not-in-album">osxphotos-add-locations command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-export-not-in-album">osxphotos-export command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-query-not-in-album">osxphotos-query command line option</a>
@ -1466,6 +1558,8 @@
--not-incloud
<ul>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-not-incloud">osxphotos-add-locations command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-export-not-incloud">osxphotos-export command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-query-not-incloud">osxphotos-query command line option</a>
@ -1479,6 +1573,8 @@
--not-live
<ul>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-not-live">osxphotos-add-locations command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-export-not-live">osxphotos-export command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-query-not-live">osxphotos-query command line option</a>
@ -1492,6 +1588,8 @@
--not-missing
<ul>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-not-missing">osxphotos-add-locations command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-export-not-missing">osxphotos-export command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-query-not-missing">osxphotos-query command line option</a>
@ -1505,6 +1603,8 @@
--not-panorama
<ul>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-not-panorama">osxphotos-add-locations command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-export-not-panorama">osxphotos-export command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-query-not-panorama">osxphotos-query command line option</a>
@ -1518,6 +1618,8 @@
--not-portrait
<ul>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-not-portrait">osxphotos-add-locations command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-export-not-portrait">osxphotos-export command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-query-not-portrait">osxphotos-query command line option</a>
@ -1531,6 +1633,8 @@
--not-reference
<ul>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-not-reference">osxphotos-add-locations command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-export-not-reference">osxphotos-export command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-query-not-reference">osxphotos-query command line option</a>
@ -1544,6 +1648,8 @@
--not-screenshot
<ul>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-not-screenshot">osxphotos-add-locations command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-export-not-screenshot">osxphotos-export command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-query-not-screenshot">osxphotos-query command line option</a>
@ -1557,6 +1663,8 @@
--not-selfie
<ul>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-not-selfie">osxphotos-add-locations command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-export-not-selfie">osxphotos-export command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-query-not-selfie">osxphotos-query command line option</a>
@ -1570,6 +1678,8 @@
--not-shared
<ul>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-not-shared">osxphotos-add-locations command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-export-not-shared">osxphotos-export command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-query-not-shared">osxphotos-query command line option</a>
@ -1583,6 +1693,8 @@
--not-slow-mo
<ul>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-not-slow-mo">osxphotos-add-locations command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-export-not-slow-mo">osxphotos-export command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-query-not-slow-mo">osxphotos-query command line option</a>
@ -1596,6 +1708,8 @@
--not-time-lapse
<ul>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-not-time-lapse">osxphotos-add-locations command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-export-not-time-lapse">osxphotos-export command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-query-not-time-lapse">osxphotos-query command line option</a>
@ -1609,6 +1723,8 @@
--only-movies
<ul>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-only-movies">osxphotos-add-locations command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-export-only-movies">osxphotos-export command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-query-only-movies">osxphotos-query command line option</a>
@ -1629,6 +1745,8 @@
--only-photos
<ul>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-only-photos">osxphotos-add-locations command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-export-only-photos">osxphotos-export command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-query-only-photos">osxphotos-query command line option</a>
@ -1663,6 +1781,8 @@
--panorama
<ul>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-panorama">osxphotos-add-locations command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-export-panorama">osxphotos-export command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-query-panorama">osxphotos-query command line option</a>
@ -1683,6 +1803,8 @@
--person
<ul>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-person">osxphotos-add-locations command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-export-person">osxphotos-export command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-query-person">osxphotos-query command line option</a>
@ -1705,6 +1827,8 @@
--place
<ul>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-place">osxphotos-add-locations command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-export-place">osxphotos-export command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-query-place">osxphotos-query command line option</a>
@ -1725,6 +1849,8 @@
--portrait
<ul>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-portrait">osxphotos-add-locations command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-export-portrait">osxphotos-export command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-query-portrait">osxphotos-query command line option</a>
@ -1802,6 +1928,8 @@
--query-eval
<ul>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-query-eval">osxphotos-add-locations command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-export-query-eval">osxphotos-export command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-query-query-eval">osxphotos-query command line option</a>
@ -1815,6 +1943,8 @@
--query-function
<ul>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-query-function">osxphotos-add-locations command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-export-query-function">osxphotos-export command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-query-query-function">osxphotos-query command line option</a>
@ -1849,6 +1979,8 @@
--regex
<ul>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-regex">osxphotos-add-locations command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-export-regex">osxphotos-export command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-query-regex">osxphotos-query command line option</a>
@ -1925,6 +2057,8 @@
--screenshot
<ul>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-screenshot">osxphotos-add-locations command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-export-screenshot">osxphotos-export command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-query-screenshot">osxphotos-query command line option</a>
@ -1938,6 +2072,8 @@
--selected
<ul>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-selected">osxphotos-add-locations command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-export-selected">osxphotos-export command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-query-selected">osxphotos-query command line option</a>
@ -1951,6 +2087,8 @@
--selfie
<ul>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-selfie">osxphotos-add-locations command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-export-selfie">osxphotos-export command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-query-selfie">osxphotos-query command line option</a>
@ -1971,6 +2109,8 @@
--shared
<ul>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-shared">osxphotos-add-locations command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-export-shared">osxphotos-export command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-query-shared">osxphotos-query command line option</a>
@ -2047,6 +2187,8 @@
--slow-mo
<ul>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-slow-mo">osxphotos-add-locations command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-export-slow-mo">osxphotos-export command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-query-slow-mo">osxphotos-query command line option</a>
@ -2095,6 +2237,8 @@
--theme
<ul>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-theme">osxphotos-add-locations command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-exiftool-theme">osxphotos-exiftool command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-export-theme">osxphotos-export command line option</a>
@ -2128,6 +2272,8 @@
--time-lapse
<ul>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-time-lapse">osxphotos-add-locations command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-export-time-lapse">osxphotos-export command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-query-time-lapse">osxphotos-query command line option</a>
@ -2141,6 +2287,8 @@
--timestamp
<ul>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-T">osxphotos-add-locations command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-exiftool-timestamp">osxphotos-exiftool command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-export-timestamp">osxphotos-export command line option</a>
@ -2165,6 +2313,8 @@
--title
<ul>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-title">osxphotos-add-locations command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-export-title">osxphotos-export command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-import-t">osxphotos-import command line option</a>
@ -2187,6 +2337,8 @@
--to-date
<ul>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-to-date">osxphotos-add-locations command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-export-to-date">osxphotos-export command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-query-to-date">osxphotos-query command line option</a>
@ -2200,6 +2352,8 @@
--to-time
<ul>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-to-time">osxphotos-add-locations command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-export-to-time">osxphotos-export command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-query-to-time">osxphotos-query command line option</a>
@ -2216,6 +2370,13 @@
<li><a href="cli.html#cmdoption-osxphotos-export-touch-file">osxphotos-export command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-exportdb-touch-file">osxphotos-exportdb command line option</a>
</li>
</ul></li>
<li>
--unmatched
<ul>
<li><a href="cli.html#cmdoption-osxphotos-sync-U">osxphotos-sync command line option</a>
</li>
</ul></li>
<li>
@ -2271,6 +2432,8 @@
--uti
<ul>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-uti">osxphotos-add-locations command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-export-uti">osxphotos-export command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-query-uti">osxphotos-query command line option</a>
@ -2284,6 +2447,8 @@
--uuid
<ul>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-uuid">osxphotos-add-locations command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-export-uuid">osxphotos-export command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-query-uuid">osxphotos-query command line option</a>
@ -2304,6 +2469,8 @@
--uuid-from-file
<ul>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-uuid-from-file">osxphotos-add-locations command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-export-uuid-from-file">osxphotos-export command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-query-uuid-from-file">osxphotos-query command line option</a>
@ -2331,6 +2498,8 @@
--verbose
<ul>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-V">osxphotos-add-locations command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-diff-V">osxphotos-diff command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-exiftool-V">osxphotos-exiftool command line option</a>
@ -2362,6 +2531,13 @@
<ul>
<li><a href="cli.html#cmdoption-osxphotos-import-w">osxphotos-import command line option</a>
</li>
</ul></li>
<li>
--window
<ul>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-w">osxphotos-add-locations command line option</a>
</li>
</ul></li>
<li>
@ -2375,6 +2551,8 @@
--year
<ul>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-year">osxphotos-add-locations command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-export-year">osxphotos-export command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-query-year">osxphotos-query command line option</a>
@ -2490,6 +2668,8 @@
-i
<ul>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-i">osxphotos-add-locations command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-export-i">osxphotos-export command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-query-i">osxphotos-query command line option</a>
@ -2591,6 +2771,8 @@
-T
<ul>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-T">osxphotos-add-locations command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-import-T">osxphotos-import command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-inspect-T">osxphotos-inspect command line option</a>
@ -2616,12 +2798,16 @@
<ul>
<li><a href="cli.html#cmdoption-osxphotos-install-U">osxphotos-install command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-sync-U">osxphotos-sync command line option</a>
</li>
</ul></li>
<li>
-V
<ul>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-V">osxphotos-add-locations command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-diff-V">osxphotos-diff command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-exiftool-V">osxphotos-exiftool command line option</a>
@ -2650,6 +2836,8 @@
-w
<ul>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-w">osxphotos-add-locations command line option</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-import-w">osxphotos-import command line option</a>
</li>
</ul></li>
@ -3422,6 +3610,185 @@
<li><a href="cli.html#cmdoption-osxphotos-v">--version</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-v">-v</a>
</li>
</ul></li>
<li>
osxphotos-add-locations command line option
<ul>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-added-after">--added-after</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-added-before">--added-before</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-added-in-last">--added-in-last</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-album">--album</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-burst">--burst</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-cloudasset">--cloudasset</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-description">--description</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-dry-run">--dry-run</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-duplicate">--duplicate</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-edited">--edited</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-exif">--exif</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-external-edit">--external-edit</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-favorite">--favorite</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-folder">--folder</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-from-date">--from-date</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-from-time">--from-time</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-has-comment">--has-comment</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-has-likes">--has-likes</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-has-raw">--has-raw</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-hdr">--hdr</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-hidden">--hidden</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-i">--ignore-case</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-in-album">--in-album</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-incloud">--incloud</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-is-reference">--is-reference</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-keyword">--keyword</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-label">--label</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-live">--live</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-location">--location</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-max-size">--max-size</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-min-size">--min-size</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-missing">--missing</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-name">--name</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-no-comment">--no-comment</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-no-description">--no-description</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-no-keyword">--no-keyword</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-no-likes">--no-likes</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-no-location">--no-location</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-no-place">--no-place</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-no-title">--no-title</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-not-burst">--not-burst</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-not-cloudasset">--not-cloudasset</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-not-favorite">--not-favorite</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-not-hdr">--not-hdr</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-not-hidden">--not-hidden</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-not-in-album">--not-in-album</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-not-incloud">--not-incloud</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-not-live">--not-live</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-not-missing">--not-missing</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-not-panorama">--not-panorama</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-not-portrait">--not-portrait</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-not-reference">--not-reference</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-not-screenshot">--not-screenshot</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-not-selfie">--not-selfie</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-not-shared">--not-shared</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-not-slow-mo">--not-slow-mo</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-not-time-lapse">--not-time-lapse</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-only-movies">--only-movies</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-only-photos">--only-photos</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-panorama">--panorama</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-person">--person</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-place">--place</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-portrait">--portrait</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-query-eval">--query-eval</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-query-function">--query-function</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-regex">--regex</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-screenshot">--screenshot</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-selected">--selected</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-selfie">--selfie</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-shared">--shared</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-slow-mo">--slow-mo</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-theme">--theme</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-time-lapse">--time-lapse</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-T">--timestamp</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-title">--title</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-to-date">--to-date</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-to-time">--to-time</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-uti">--uti</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-uuid">--uuid</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-uuid-from-file">--uuid-from-file</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-V">--verbose</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-w">--window</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-year">--year</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-i">-i</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-T">-T</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-V">-V</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-add-locations-w">-w</a>
</li>
</ul></li>
<li>
@ -4013,6 +4380,8 @@
<li><a href="cli.html#cmdoption-osxphotos-info-arg-PHOTOS_LIBRARY">PHOTOS_LIBRARY</a>
</li>
</ul></li>
</ul></td>
<td style="width: 33%; vertical-align: top;"><ul>
<li>
osxphotos-inspect command line option
@ -4292,8 +4661,6 @@
<li><a href="cli.html#cmdoption-osxphotos-query-arg-PHOTOS_LIBRARY">PHOTOS_LIBRARY</a>
</li>
</ul></li>
</ul></td>
<td style="width: 33%; vertical-align: top;"><ul>
<li>
osxphotos-repl command line option
@ -4656,6 +5023,8 @@
<li><a href="cli.html#cmdoption-osxphotos-sync-to-date">--to-date</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-sync-to-time">--to-time</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-sync-U">--unmatched</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-sync-uti">--uti</a>
</li>
@ -4680,6 +5049,8 @@
<li><a href="cli.html#cmdoption-osxphotos-sync-s">-s</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-sync-T">-T</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-sync-U">-U</a>
</li>
<li><a href="cli.html#cmdoption-osxphotos-sync-V">-V</a>
</li>

View File

@ -6,7 +6,7 @@
<link rel="index" title="Index" href="genindex.html" /><link rel="search" title="Search" href="search.html" /><link rel="next" title="OSXPhotos" href="overview.html" />
<meta name="generator" content="sphinx-5.3.0, furo 2022.09.29"/>
<title>osxphotos 0.56.2 documentation</title>
<title>osxphotos 0.56.3 documentation</title>
<link rel="stylesheet" type="text/css" href="_static/pygments.css" />
<link rel="stylesheet" type="text/css" href="_static/styles/furo.css?digest=d81277517bee4d6b0349d71bb2661d4890b5617c" />
<link rel="stylesheet" type="text/css" href="_static/copybutton.css" />
@ -124,7 +124,7 @@
</label>
</div>
<div class="header-center">
<a href="#"><div class="brand">osxphotos 0.56.2 documentation</div></a>
<a href="#"><div class="brand">osxphotos 0.56.3 documentation</div></a>
</div>
<div class="header-right">
<div class="theme-toggle-container theme-toggle-header">
@ -147,7 +147,7 @@
<div class="sidebar-sticky"><a class="sidebar-brand" href="#">
<span class="sidebar-brand-text">osxphotos 0.56.2 documentation</span>
<span class="sidebar-brand-text">osxphotos 0.56.3 documentation</span>
</a><form class="sidebar-search-container" method="get" action="search.html" role="search">
<input class="sidebar-search" placeholder=Search name="q" aria-label="Search">
@ -236,6 +236,7 @@
<li class="toctree-l1"><a class="reference internal" href="cli.html">OSXPhotos Command Line Interface (CLI)</a><ul>
<li class="toctree-l2"><a class="reference internal" href="cli.html#osxphotos">osxphotos</a><ul>
<li class="toctree-l3"><a class="reference internal" href="cli.html#osxphotos-about">about</a></li>
<li class="toctree-l3"><a class="reference internal" href="cli.html#osxphotos-add-locations">add-locations</a></li>
<li class="toctree-l3"><a class="reference internal" href="cli.html#osxphotos-albums">albums</a></li>
<li class="toctree-l3"><a class="reference internal" href="cli.html#osxphotos-diff">diff</a></li>
<li class="toctree-l3"><a class="reference internal" href="cli.html#osxphotos-docs">docs</a></li>

Binary file not shown.

View File

@ -6,7 +6,7 @@
<link rel="index" title="Index" href="genindex.html" /><link rel="search" title="Search" href="search.html" /><link rel="next" title="OSXPhotos Tutorial" href="tutorial.html" /><link rel="prev" title="Welcome to OSXPhotoss documentation!" href="index.html" />
<meta name="generator" content="sphinx-5.3.0, furo 2022.09.29"/>
<title>OSXPhotos - osxphotos 0.56.2 documentation</title>
<title>OSXPhotos - osxphotos 0.56.3 documentation</title>
<link rel="stylesheet" type="text/css" href="_static/pygments.css" />
<link rel="stylesheet" type="text/css" href="_static/styles/furo.css?digest=d81277517bee4d6b0349d71bb2661d4890b5617c" />
<link rel="stylesheet" type="text/css" href="_static/copybutton.css" />
@ -124,7 +124,7 @@
</label>
</div>
<div class="header-center">
<a href="index.html"><div class="brand">osxphotos 0.56.2 documentation</div></a>
<a href="index.html"><div class="brand">osxphotos 0.56.3 documentation</div></a>
</div>
<div class="header-right">
<div class="theme-toggle-container theme-toggle-header">
@ -147,7 +147,7 @@
<div class="sidebar-sticky"><a class="sidebar-brand" href="index.html">
<span class="sidebar-brand-text">osxphotos 0.56.2 documentation</span>
<span class="sidebar-brand-text">osxphotos 0.56.3 documentation</span>
</a><form class="sidebar-search-container" method="get" action="search.html" role="search">
<input class="sidebar-search" placeholder=Search name="q" aria-label="Search">

View File

@ -6,7 +6,7 @@
<link rel="index" title="Index" href="genindex.html" /><link rel="search" title="Search" href="search.html" /><link rel="next" title="OSXPhotos python API" href="reference.html" /><link rel="prev" title="OSXPhotos Template System" href="template_help.html" />
<meta name="generator" content="sphinx-5.3.0, furo 2022.09.29"/>
<title>OSXPhotos Python Package Overview - osxphotos 0.56.2 documentation</title>
<title>OSXPhotos Python Package Overview - osxphotos 0.56.3 documentation</title>
<link rel="stylesheet" type="text/css" href="_static/pygments.css" />
<link rel="stylesheet" type="text/css" href="_static/styles/furo.css?digest=d81277517bee4d6b0349d71bb2661d4890b5617c" />
<link rel="stylesheet" type="text/css" href="_static/copybutton.css" />
@ -124,7 +124,7 @@
</label>
</div>
<div class="header-center">
<a href="index.html"><div class="brand">osxphotos 0.56.2 documentation</div></a>
<a href="index.html"><div class="brand">osxphotos 0.56.3 documentation</div></a>
</div>
<div class="header-right">
<div class="theme-toggle-container theme-toggle-header">
@ -147,7 +147,7 @@
<div class="sidebar-sticky"><a class="sidebar-brand" href="index.html">
<span class="sidebar-brand-text">osxphotos 0.56.2 documentation</span>
<span class="sidebar-brand-text">osxphotos 0.56.3 documentation</span>
</a><form class="sidebar-search-container" method="get" action="search.html" role="search">
<input class="sidebar-search" placeholder=Search name="q" aria-label="Search">

View File

@ -4,7 +4,7 @@
<meta name="viewport" content="width=device-width,initial-scale=1"/>
<meta name="color-scheme" content="light dark"><link rel="index" title="Index" href="genindex.html" /><link rel="search" title="Search" href="search.html" />
<meta name="generator" content="sphinx-5.3.0, furo 2022.09.29"/><title>Python Module Index - osxphotos 0.56.2 documentation</title>
<meta name="generator" content="sphinx-5.3.0, furo 2022.09.29"/><title>Python Module Index - osxphotos 0.56.3 documentation</title>
<link rel="stylesheet" type="text/css" href="_static/pygments.css" />
<link rel="stylesheet" type="text/css" href="_static/styles/furo.css?digest=d81277517bee4d6b0349d71bb2661d4890b5617c" />
<link rel="stylesheet" type="text/css" href="_static/copybutton.css" />
@ -122,7 +122,7 @@
</label>
</div>
<div class="header-center">
<a href="index.html"><div class="brand">osxphotos 0.56.2 documentation</div></a>
<a href="index.html"><div class="brand">osxphotos 0.56.3 documentation</div></a>
</div>
<div class="header-right">
<div class="theme-toggle-container theme-toggle-header">
@ -145,7 +145,7 @@
<div class="sidebar-sticky"><a class="sidebar-brand" href="index.html">
<span class="sidebar-brand-text">osxphotos 0.56.2 documentation</span>
<span class="sidebar-brand-text">osxphotos 0.56.3 documentation</span>
</a><form class="sidebar-search-container" method="get" action="search.html" role="search">
<input class="sidebar-search" placeholder=Search name="q" aria-label="Search">

View File

@ -6,7 +6,7 @@
<link rel="index" title="Index" href="genindex.html" /><link rel="search" title="Search" href="search.html" /><link rel="prev" title="OSXPhotos Python Package Overview" href="package_overview.html" />
<meta name="generator" content="sphinx-5.3.0, furo 2022.09.29"/>
<title>OSXPhotos python API - osxphotos 0.56.2 documentation</title>
<title>OSXPhotos python API - osxphotos 0.56.3 documentation</title>
<link rel="stylesheet" type="text/css" href="_static/pygments.css" />
<link rel="stylesheet" type="text/css" href="_static/styles/furo.css?digest=d81277517bee4d6b0349d71bb2661d4890b5617c" />
<link rel="stylesheet" type="text/css" href="_static/copybutton.css" />
@ -124,7 +124,7 @@
</label>
</div>
<div class="header-center">
<a href="index.html"><div class="brand">osxphotos 0.56.2 documentation</div></a>
<a href="index.html"><div class="brand">osxphotos 0.56.3 documentation</div></a>
</div>
<div class="header-right">
<div class="theme-toggle-container theme-toggle-header">
@ -147,7 +147,7 @@
<div class="sidebar-sticky"><a class="sidebar-brand" href="index.html">
<span class="sidebar-brand-text">osxphotos 0.56.2 documentation</span>
<span class="sidebar-brand-text">osxphotos 0.56.3 documentation</span>
</a><form class="sidebar-search-container" method="get" action="search.html" role="search">
<input class="sidebar-search" placeholder=Search name="q" aria-label="Search">
@ -255,7 +255,7 @@ returns empty list if album is not in any folders</p>
<dl class="py class">
<dt class="sig sig-object py" id="osxphotos.AlbumSortOrder">
<em class="property"><span class="pre">class</span><span class="w"> </span></em><span class="sig-prename descclassname"><span class="pre">osxphotos.</span></span><span class="sig-name descname"><span class="pre">AlbumSortOrder</span></span><span class="sig-paren">(</span><em class="sig-param"><span class="n"><span class="pre">value</span></span></em><span class="sig-paren">)</span><a class="reference internal" href="_modules/osxphotos/_constants.html#AlbumSortOrder"><span class="viewcode-link"><span class="pre">[source]</span></span></a><a class="headerlink" href="#osxphotos.AlbumSortOrder" title="Permalink to this definition">#</a></dt>
<em class="property"><span class="pre">class</span><span class="w"> </span></em><span class="sig-prename descclassname"><span class="pre">osxphotos.</span></span><span class="sig-name descname"><span class="pre">AlbumSortOrder</span></span><span class="sig-paren">(</span><em class="sig-param"><span class="n"><span class="pre">value</span></span></em>, <em class="sig-param"><span class="n"><span class="pre">names</span></span><span class="o"><span class="pre">=</span></span><span class="default_value"><span class="pre">None</span></span></em>, <em class="sig-param"><span class="o"><span class="pre">*</span></span></em>, <em class="sig-param"><span class="n"><span class="pre">module</span></span><span class="o"><span class="pre">=</span></span><span class="default_value"><span class="pre">None</span></span></em>, <em class="sig-param"><span class="n"><span class="pre">qualname</span></span><span class="o"><span class="pre">=</span></span><span class="default_value"><span class="pre">None</span></span></em>, <em class="sig-param"><span class="n"><span class="pre">type</span></span><span class="o"><span class="pre">=</span></span><span class="default_value"><span class="pre">None</span></span></em>, <em class="sig-param"><span class="n"><span class="pre">start</span></span><span class="o"><span class="pre">=</span></span><span class="default_value"><span class="pre">1</span></span></em>, <em class="sig-param"><span class="n"><span class="pre">boundary</span></span><span class="o"><span class="pre">=</span></span><span class="default_value"><span class="pre">None</span></span></em><span class="sig-paren">)</span><a class="reference internal" href="_modules/osxphotos/_constants.html#AlbumSortOrder"><span class="viewcode-link"><span class="pre">[source]</span></span></a><a class="headerlink" href="#osxphotos.AlbumSortOrder" title="Permalink to this definition">#</a></dt>
<dd><p>Album Sort Order</p>
</dd></dl>

View File

@ -4,7 +4,7 @@
<meta name="viewport" content="width=device-width,initial-scale=1"/>
<meta name="color-scheme" content="light dark"><link rel="index" title="Index" href="genindex.html" /><link rel="search" title="Search" href="#" />
<meta name="generator" content="sphinx-5.3.0, furo 2022.09.29"/><title>Search - osxphotos 0.56.2 documentation</title><link rel="stylesheet" type="text/css" href="_static/pygments.css" />
<meta name="generator" content="sphinx-5.3.0, furo 2022.09.29"/><title>Search - osxphotos 0.56.3 documentation</title><link rel="stylesheet" type="text/css" href="_static/pygments.css" />
<link rel="stylesheet" type="text/css" href="_static/styles/furo.css?digest=d81277517bee4d6b0349d71bb2661d4890b5617c" />
<link rel="stylesheet" type="text/css" href="_static/copybutton.css" />
<link rel="stylesheet" type="text/css" href="_static/styles/furo-extensions.css?digest=30d1aed668e5c3a91c3e3bf6a60b675221979f0e" />
@ -121,7 +121,7 @@
</label>
</div>
<div class="header-center">
<a href="index.html"><div class="brand">osxphotos 0.56.2 documentation</div></a>
<a href="index.html"><div class="brand">osxphotos 0.56.3 documentation</div></a>
</div>
<div class="header-right">
<div class="theme-toggle-container theme-toggle-header">
@ -144,7 +144,7 @@
<div class="sidebar-sticky"><a class="sidebar-brand" href="index.html">
<span class="sidebar-brand-text">osxphotos 0.56.2 documentation</span>
<span class="sidebar-brand-text">osxphotos 0.56.3 documentation</span>
</a><form class="sidebar-search-container" method="get" action="#" role="search">
<input class="sidebar-search" placeholder=Search name="q" aria-label="Search">

File diff suppressed because one or more lines are too long

View File

@ -6,7 +6,7 @@
<link rel="index" title="Index" href="genindex.html" /><link rel="search" title="Search" href="search.html" /><link rel="next" title="OSXPhotos Python Package Overview" href="package_overview.html" /><link rel="prev" title="OSXPhotos Command Line Interface (CLI)" href="cli.html" />
<meta name="generator" content="sphinx-5.3.0, furo 2022.09.29"/>
<title>OSXPhotos Template System - osxphotos 0.56.2 documentation</title>
<title>OSXPhotos Template System - osxphotos 0.56.3 documentation</title>
<link rel="stylesheet" type="text/css" href="_static/pygments.css" />
<link rel="stylesheet" type="text/css" href="_static/styles/furo.css?digest=d81277517bee4d6b0349d71bb2661d4890b5617c" />
<link rel="stylesheet" type="text/css" href="_static/copybutton.css" />
@ -124,7 +124,7 @@
</label>
</div>
<div class="header-center">
<a href="index.html"><div class="brand">osxphotos 0.56.2 documentation</div></a>
<a href="index.html"><div class="brand">osxphotos 0.56.3 documentation</div></a>
</div>
<div class="header-right">
<div class="theme-toggle-container theme-toggle-header">
@ -147,7 +147,7 @@
<div class="sidebar-sticky"><a class="sidebar-brand" href="index.html">
<span class="sidebar-brand-text">osxphotos 0.56.2 documentation</span>
<span class="sidebar-brand-text">osxphotos 0.56.3 documentation</span>
</a><form class="sidebar-search-container" method="get" action="search.html" role="search">
<input class="sidebar-search" placeholder=Search name="q" aria-label="Search">
@ -608,7 +608,7 @@
</td>
</tr>
<tr class="row-even"><td><p>{osxphotos_version}</p></td>
<td><p>The osxphotos version, e.g. 0.56.2</p></td>
<td><p>The osxphotos version, e.g. 0.56.3</p></td>
</tr>
<tr class="row-odd"><td><p>{osxphotos_cmd_line}</p></td>
<td><p>The full command line used to run osxphotos</p></td>

View File

@ -6,7 +6,7 @@
<link rel="index" title="Index" href="genindex.html" /><link rel="search" title="Search" href="search.html" /><link rel="next" title="OSXPhotos Command Line Interface (CLI)" href="cli.html" /><link rel="prev" title="OSXPhotos" href="overview.html" />
<meta name="generator" content="sphinx-5.3.0, furo 2022.09.29"/>
<title>OSXPhotos Tutorial - osxphotos 0.56.2 documentation</title>
<title>OSXPhotos Tutorial - osxphotos 0.56.3 documentation</title>
<link rel="stylesheet" type="text/css" href="_static/pygments.css" />
<link rel="stylesheet" type="text/css" href="_static/styles/furo.css?digest=d81277517bee4d6b0349d71bb2661d4890b5617c" />
<link rel="stylesheet" type="text/css" href="_static/copybutton.css" />
@ -124,7 +124,7 @@
</label>
</div>
<div class="header-center">
<a href="index.html"><div class="brand">osxphotos 0.56.2 documentation</div></a>
<a href="index.html"><div class="brand">osxphotos 0.56.3 documentation</div></a>
</div>
<div class="header-right">
<div class="theme-toggle-container theme-toggle-header">
@ -147,7 +147,7 @@
<div class="sidebar-sticky"><a class="sidebar-brand" href="index.html">
<span class="sidebar-brand-text">osxphotos 0.56.2 documentation</span>
<span class="sidebar-brand-text">osxphotos 0.56.3 documentation</span>
</a><form class="sidebar-search-container" method="get" action="search.html" role="search">
<input class="sidebar-search" placeholder=Search name="q" aria-label="Search">

View File

@ -357,7 +357,7 @@ Template Substitutions
* - {tab}
- :A tab: '\t'
* - {osxphotos_version}
- The osxphotos version, e.g. '0.56.2'
- The osxphotos version, e.g. '0.56.3'
* - {osxphotos_cmd_line}
- The full command line used to run osxphotos
* - {album}

View File

@ -1,3 +1,3 @@
""" version info """
__version__ = "0.56.2"
__version__ = "0.56.3"

Binary file not shown.