libavalon 0.0.2__tar.gz → 0.0.3__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {libavalon-0.0.2 → libavalon-0.0.3}/PKG-INFO +1 -1
- {libavalon-0.0.2 → libavalon-0.0.3}/avalon/cli.py +6 -2
- {libavalon-0.0.2 → libavalon-0.0.3}/pyproject.toml +1 -1
- {libavalon-0.0.2 → libavalon-0.0.3}/uv.lock +1 -1
- {libavalon-0.0.2 → libavalon-0.0.3}/.gitignore +0 -0
- {libavalon-0.0.2 → libavalon-0.0.3}/.python-version +0 -0
- {libavalon-0.0.2 → libavalon-0.0.3}/LICENSE +0 -0
- {libavalon-0.0.2 → libavalon-0.0.3}/Makefile +0 -0
- {libavalon-0.0.2 → libavalon-0.0.3}/README.md +0 -0
- {libavalon-0.0.2 → libavalon-0.0.3}/avalon/__init__.py +0 -0
- {libavalon-0.0.2 → libavalon-0.0.3}/avalon/analysis/__init__.py +0 -0
- {libavalon-0.0.2 → libavalon-0.0.3}/avalon/analysis/essentia_analyzer.py +0 -0
- {libavalon-0.0.2 → libavalon-0.0.3}/avalon/analysis/model_cache.py +0 -0
- {libavalon-0.0.2 → libavalon-0.0.3}/avalon/constants.py +0 -0
- {libavalon-0.0.2 → libavalon-0.0.3}/avalon/conversion/__init__.py +0 -0
- {libavalon-0.0.2 → libavalon-0.0.3}/avalon/conversion/converter.py +0 -0
- {libavalon-0.0.2 → libavalon-0.0.3}/avalon/models.py +0 -0
- {libavalon-0.0.2 → libavalon-0.0.3}/avalon/pathing.py +0 -0
- {libavalon-0.0.2 → libavalon-0.0.3}/avalon/pipeline.py +0 -0
- {libavalon-0.0.2 → libavalon-0.0.3}/avalon/state.py +0 -0
- {libavalon-0.0.2 → libavalon-0.0.3}/avalon/tagging/__init__.py +0 -0
- {libavalon-0.0.2 → libavalon-0.0.3}/avalon/tagging/analysis_blob.py +0 -0
- {libavalon-0.0.2 → libavalon-0.0.3}/avalon/tagging/cover_art.py +0 -0
- {libavalon-0.0.2 → libavalon-0.0.3}/avalon/tagging/tag_writer.py +0 -0
- {libavalon-0.0.2 → libavalon-0.0.3}/avalon/watcher.py +0 -0
- {libavalon-0.0.2 → libavalon-0.0.3}/scripts/benchmark_analyze.py +0 -0
- {libavalon-0.0.2 → libavalon-0.0.3}/tests/test_analysis_blob.py +0 -0
- {libavalon-0.0.2 → libavalon-0.0.3}/tests/test_cli.py +0 -0
- {libavalon-0.0.2 → libavalon-0.0.3}/tests/test_pathing.py +0 -0
- {libavalon-0.0.2 → libavalon-0.0.3}/tests/test_pipeline.py +0 -0
- {libavalon-0.0.2 → libavalon-0.0.3}/tests/test_tag_writer.py +0 -0
|
@@ -352,8 +352,12 @@ def run_watch(args: argparse.Namespace) -> int:
|
|
|
352
352
|
logger.error("Failed: %s: %s", path, result.error)
|
|
353
353
|
else:
|
|
354
354
|
logger.info("%s -> %s", path, result.output_path)
|
|
355
|
-
|
|
356
|
-
|
|
355
|
+
# --delete-original removes `path` as part of processing -- it
|
|
356
|
+
# can't recur at this location, so there's nothing to
|
|
357
|
+
# fingerprint (and doing so would crash on the now-missing file).
|
|
358
|
+
if path.exists():
|
|
359
|
+
state_module.record(state, path)
|
|
360
|
+
state_module.save(dest_root, state)
|
|
357
361
|
|
|
358
362
|
if not args.no_backfill:
|
|
359
363
|
logger.info("Backfilling existing files")
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|