├── .all-contributorsrc ├── .bumpversion.cfg ├── .coveragerc ├── .gitignore ├── .isort.cfg ├── CHANGELOG.md ├── LICENSE ├── MANIFEST.in ├── README.md ├── README_DEV.md ├── docs ├── index.md └── reference.md ├── docsrc ├── Makefile ├── README.md ├── make.bat └── source │ ├── conf.py │ ├── index.rst │ ├── modules.rst │ └── reference.rst ├── examples ├── example.py ├── import_photos.py ├── photos_repl.py └── photos_text.py ├── mkdocs.yml ├── photoscript.pdf ├── photoscript ├── __init__.py ├── __main__.py ├── _version.py ├── photoscript.applescript ├── script_loader.py └── utils.py ├── pyproject.toml └── tests ├── README.md ├── __init__.py ├── applescript_test.applescript ├── conftest.py ├── create_new_test_library.py ├── datetime_utils.py ├── export_photo_details.py ├── mock_photoscript.applescript ├── photoscript_config_catalina.py ├── photoscript_config_data.py ├── photoscript_config_ventura.py ├── test_0_interactive.py ├── test_1_photoslibrary.py ├── test_2_album.py ├── test_3_folder.py ├── test_4_photo.py ├── test_5_script_loader.py ├── test_6_utils.py ├── test_7_main.py ├── test_images ├── IMG_0096.jpeg ├── IMG_2242.JPG ├── IMG_2510.JPG ├── IMG_2608.JPG ├── IMG_2768.JPG └── IMG_2774.JPG ├── test_libraries ├── Test-PhotoScript-10.15.7-Single-Photo.photoslibrary │ ├── database │ │ ├── DataModelVersion.plist │ │ ├── Photos.sqlite │ │ ├── Photos.sqlite-shm │ │ ├── Photos.sqlite-wal │ │ ├── Photos.sqlite.lock │ │ ├── metaSchema.db │ │ ├── photos.db │ │ ├── protection │ │ └── search │ │ │ ├── graphDataProgress.plist │ │ │ ├── psi.sqlite │ │ │ ├── psi.sqlite-shm │ │ │ ├── psi.sqlite-wal │ │ │ ├── searchProgress.plist │ │ │ ├── searchSystemInfo.plist │ │ │ └── synonymsProcess.plist │ ├── originals │ │ └── 9 │ │ │ └── 9B96223D-4B1A-4BE8-ABD9-47476BEBFFAB.jpeg │ ├── private │ │ ├── com.apple.Photos │ │ │ └── appPrivateData.plist │ │ ├── com.apple.photoanalysisd │ │ │ └── caches │ │ │ │ └── graph │ │ │ │ ├── CLSBusinessCategoryCache.AOI.sqlite │ │ │ │ ├── CLSBusinessCategoryCache.AOI.sqlite-shm │ │ │ │ ├── CLSBusinessCategoryCache.AOI.sqlite-wal │ │ │ │ ├── CLSBusinessCategoryCache.Nature.sqlite │ │ │ │ ├── CLSBusinessCategoryCache.Nature.sqlite-shm │ │ │ │ ├── CLSBusinessCategoryCache.Nature.sqlite-wal │ │ │ │ ├── CLSBusinessCategoryCache.POI.sqlite │ │ │ │ ├── CLSBusinessCategoryCache.POI.sqlite-shm │ │ │ │ ├── CLSBusinessCategoryCache.POI.sqlite-wal │ │ │ │ ├── CLSBusinessCategoryCache.ROI.sqlite │ │ │ │ ├── CLSBusinessCategoryCache.ROI.sqlite-shm │ │ │ │ ├── CLSBusinessCategoryCache.ROI.sqlite-wal │ │ │ │ ├── CLSLocationCache.sqlite │ │ │ │ ├── CLSLocationCache.sqlite-shm │ │ │ │ ├── CLSLocationCache.sqlite-wal │ │ │ │ ├── CLSPublicEventCache.sqlite │ │ │ │ ├── CLSPublicEventCache.sqlite-shm │ │ │ │ ├── CLSPublicEventCache.sqlite-wal │ │ │ │ ├── PGCurationCache.sqlite.sqlite │ │ │ │ ├── PGCurationCache.sqlite.sqlite-shm │ │ │ │ └── PGCurationCache.sqlite.sqlite-wal │ │ └── com.apple.photolibraryd │ │ │ ├── appPrivateData.plist │ │ │ └── caches │ │ │ └── CreateDatabase_20201114-071310-08:00 │ └── resources │ │ ├── derivatives │ │ ├── 9 │ │ │ └── 9B96223D-4B1A-4BE8-ABD9-47476BEBFFAB_1_105_c.jpeg │ │ ├── masters │ │ │ └── 9 │ │ │ │ └── 9B96223D-4B1A-4BE8-ABD9-47476BEBFFAB_4_5005_c.jpeg │ │ └── thumbs │ │ │ ├── 3305.ithmb │ │ │ ├── 4031.ithmb │ │ │ ├── 4132.ithmb │ │ │ └── thumbnailConfiguration │ │ └── journals │ │ ├── Album-snapshot.plj │ │ ├── Album.plist │ │ ├── Asset-change.plj │ │ ├── Asset-snapshot.plj │ │ ├── Asset.plist │ │ ├── DeferredRebuildFace-snapshot.plj │ │ ├── DeferredRebuildFace.plist │ │ ├── DetectedFace-snapshot.plj │ │ ├── DetectedFace.plist │ │ ├── FetchingAlbum-snapshot.plj │ │ ├── FetchingAlbum.plist │ │ ├── FileSystemVolume-snapshot.plj │ │ ├── FileSystemVolume.plist │ │ ├── Folder-snapshot.plj │ │ ├── Folder.plist │ │ ├── HistoryToken.plist │ │ ├── ImportSession-change.plj │ │ ├── ImportSession-snapshot.plj │ │ ├── ImportSession.plist │ │ ├── Keyword-snapshot.plj │ │ ├── Keyword.plist │ │ ├── Memory-snapshot.plj │ │ ├── Memory.plist │ │ ├── Person-snapshot.plj │ │ ├── Person.plist │ │ ├── ProjectAlbum-snapshot.plj │ │ └── ProjectAlbum.plist ├── Test-PhotoScript-10.15.7.photoslibrary │ ├── database │ │ ├── DataModelVersion.plist │ │ ├── Photos.sqlite │ │ ├── Photos.sqlite-shm │ │ ├── Photos.sqlite-wal │ │ ├── Photos.sqlite.aside │ │ ├── Photos.sqlite.aside-wal │ │ ├── Photos.sqlite.lock │ │ ├── metaSchema.db │ │ ├── photos.db │ │ ├── protection │ │ ├── rebuildHistory │ │ └── search │ │ │ ├── graphDataProgress.plist │ │ │ ├── psi.sqlite │ │ │ ├── psi.sqlite-shm │ │ │ ├── psi.sqlite-wal │ │ │ ├── searchProgress.plist │ │ │ ├── searchSystemInfo.plist │ │ │ ├── synonymsProcess.plist │ │ │ └── zeroKeywords.data │ ├── originals │ │ ├── 1 │ │ │ └── 1CD1B172-C94B-4093-A303-EE24FE7EEF60.jpeg │ │ ├── 3 │ │ │ └── 3A71DE26-EDEF-41D3-86C1-E8328DFC9FA0.jpeg │ │ ├── B │ │ │ └── B6DB996D-8A0A-4983-AFBD-D206B7D38A23.jpeg │ │ ├── E │ │ │ └── EECD91FE-D716-48F2-A62C-A4D558ACD52E.jpeg │ │ └── F │ │ │ └── F8EFA39F-7D26-4DC2-82FE-CC9357F19F00.jpeg │ ├── private │ │ ├── com.apple.Photos │ │ │ └── appPrivateData.plist │ │ ├── com.apple.photoanalysisd │ │ │ └── caches │ │ │ │ ├── graph │ │ │ │ ├── CLSBusinessCategoryCache.AOI.sqlite │ │ │ │ ├── CLSBusinessCategoryCache.AOI.sqlite-shm │ │ │ │ ├── CLSBusinessCategoryCache.AOI.sqlite-wal │ │ │ │ ├── CLSBusinessCategoryCache.Nature.sqlite │ │ │ │ ├── CLSBusinessCategoryCache.Nature.sqlite-shm │ │ │ │ ├── CLSBusinessCategoryCache.Nature.sqlite-wal │ │ │ │ ├── CLSBusinessCategoryCache.POI.sqlite │ │ │ │ ├── CLSBusinessCategoryCache.POI.sqlite-shm │ │ │ │ ├── CLSBusinessCategoryCache.POI.sqlite-wal │ │ │ │ ├── CLSBusinessCategoryCache.ROI.sqlite │ │ │ │ ├── CLSBusinessCategoryCache.ROI.sqlite-shm │ │ │ │ ├── CLSBusinessCategoryCache.ROI.sqlite-wal │ │ │ │ ├── CLSContactCache.sqlite │ │ │ │ ├── CLSContactCache.sqlite-shm │ │ │ │ ├── CLSContactCache.sqlite-wal │ │ │ │ ├── CLSLocationCache.sqlite │ │ │ │ ├── CLSLocationCache.sqlite-shm │ │ │ │ ├── CLSLocationCache.sqlite-wal │ │ │ │ ├── CLSPublicEventCache.sqlite │ │ │ │ ├── CLSPublicEventCache.sqlite-shm │ │ │ │ ├── CLSPublicEventCache.sqlite-wal │ │ │ │ ├── PGCurationCache.sqlite.sqlite │ │ │ │ ├── PGCurationCache.sqlite.sqlite-shm │ │ │ │ ├── PGCurationCache.sqlite.sqlite-wal │ │ │ │ ├── PGSearchComputationCache.plist │ │ │ │ ├── PGSharingFeatureExtractorRecords.plist │ │ │ │ ├── PhotoAnalysisServicePreferences.plist │ │ │ │ ├── PhotosGraph │ │ │ │ │ ├── construction-photosgraph.kgdb │ │ │ │ │ ├── construction-photosgraph.kgdb-shm │ │ │ │ │ ├── construction-photosgraph.kgdb-wal │ │ │ │ │ ├── liveupdate-photosgraph.kgdb │ │ │ │ │ ├── liveupdate-photosgraph.kgdb-shm │ │ │ │ │ ├── liveupdate-photosgraph.kgdb-wal │ │ │ │ │ ├── photosgraph-tmp.kgdb │ │ │ │ │ ├── photosgraph-tmp.kgdb-shm │ │ │ │ │ ├── photosgraph-tmp.kgdb-wal │ │ │ │ │ ├── photosgraph.kgdb │ │ │ │ │ ├── photosgraph.kgdb-shm │ │ │ │ │ └── photosgraph.kgdb-wal │ │ │ │ ├── changetoken.plist │ │ │ │ └── revgeoprovider.plist │ │ │ │ └── vision │ │ │ │ ├── 42AA26AC-270D-463F-B24E-3C28297D2498.cmap │ │ │ │ ├── 517DD8B8-A25C-4AF7-8EF5-A521C61A45DC.cmap │ │ │ │ ├── AlgoFaceClusterCache.data │ │ │ │ ├── PersonPromoter │ │ │ │ ├── PhotoAnalysisServicePreferences.plist │ │ │ │ ├── clustererState.plist │ │ │ │ └── faceWorkerState.plist │ │ └── com.apple.photolibraryd │ │ │ ├── appPrivateData.plist │ │ │ ├── assetUUIDForPath.plist │ │ │ └── caches │ │ │ ├── CreateDatabase_20200907-072647-07:00 │ │ │ └── CreateDatabase_20200908-224932-07:00 │ └── resources │ │ ├── derivatives │ │ ├── 1 │ │ │ └── 1CD1B172-C94B-4093-A303-EE24FE7EEF60_1_105_c.jpeg │ │ ├── B │ │ │ └── B6DB996D-8A0A-4983-AFBD-D206B7D38A23_1_105_c.jpeg │ │ ├── E │ │ │ └── EECD91FE-D716-48F2-A62C-A4D558ACD52E_1_105_c.jpeg │ │ ├── F │ │ │ └── F8EFA39F-7D26-4DC2-82FE-CC9357F19F00_1_105_c.jpeg │ │ ├── masters │ │ │ ├── 1 │ │ │ │ └── 1CD1B172-C94B-4093-A303-EE24FE7EEF60_4_5005_c.jpeg │ │ │ ├── 3 │ │ │ │ └── 3A71DE26-EDEF-41D3-86C1-E8328DFC9FA0_4_5005_c.jpeg │ │ │ ├── B │ │ │ │ └── B6DB996D-8A0A-4983-AFBD-D206B7D38A23_4_5005_c.jpeg │ │ │ ├── E │ │ │ │ └── EECD91FE-D716-48F2-A62C-A4D558ACD52E_4_5005_c.jpeg │ │ │ └── F │ │ │ │ └── F8EFA39F-7D26-4DC2-82FE-CC9357F19F00_4_5005_c.jpeg │ │ └── thumbs │ │ │ ├── 3305.ithmb │ │ │ ├── 4031.ithmb │ │ │ ├── 4132.ithmb │ │ │ └── thumbnailConfiguration │ │ ├── journals │ │ ├── Album-change.plj │ │ ├── Album-snapshot.plj │ │ ├── Album.plist │ │ ├── Asset-change.plj │ │ ├── Asset-snapshot.plj │ │ ├── Asset.plist │ │ ├── DeferredRebuildFace-snapshot.plj │ │ ├── DeferredRebuildFace.plist │ │ ├── DetectedFace-snapshot.plj │ │ ├── DetectedFace.plist │ │ ├── FetchingAlbum-snapshot.plj │ │ ├── FetchingAlbum.plist │ │ ├── FileSystemVolume-snapshot.plj │ │ ├── FileSystemVolume.plist │ │ ├── Folder-change.plj │ │ ├── Folder-snapshot.plj │ │ ├── Folder.plist │ │ ├── HistoryToken.plist │ │ ├── ImportSession-change.plj │ │ ├── ImportSession-snapshot.plj │ │ ├── ImportSession.plist │ │ ├── Keyword-change.plj │ │ ├── Keyword-snapshot.plj │ │ ├── Keyword.plist │ │ ├── Memory-snapshot.plj │ │ ├── Memory.plist │ │ ├── Person-snapshot.plj │ │ ├── Person.plist │ │ ├── ProjectAlbum-snapshot.plj │ │ └── ProjectAlbum.plist │ │ └── renders │ │ └── 3 │ │ ├── 3A71DE26-EDEF-41D3-86C1-E8328DFC9FA0.plist │ │ └── 3A71DE26-EDEF-41D3-86C1-E8328DFC9FA0_1_201_a.jpeg ├── Test-PhotoScript-13.0.1-Single-Photo.photoslibrary │ ├── database │ │ ├── DataModelVersion.plist │ │ ├── Photos.sqlite │ │ ├── Photos.sqlite-shm │ │ ├── Photos.sqlite-wal │ │ ├── metaSchema.db │ │ ├── photos.db │ │ └── search │ │ │ ├── graphDataProgress.plist │ │ │ ├── psi.sqlite │ │ │ ├── psi.sqlite-shm │ │ │ ├── psi.sqlite-wal │ │ │ ├── searchProgress.plist │ │ │ ├── searchSystemInfo.plist │ │ │ └── synonymsProcess.plist │ ├── originals │ │ └── 9 │ │ │ └── 9B96223D-4B1A-4BE8-ABD9-47476BEBFFAB.jpeg │ ├── private │ │ ├── com.apple.Photos │ │ │ └── appPrivateData.plist │ │ ├── com.apple.mediaanalysisd │ │ │ └── caches │ │ │ │ └── vision │ │ │ │ └── mediaAnalysisVersionState.plist │ │ ├── com.apple.photoanalysisd │ │ │ └── caches │ │ │ │ └── graph │ │ │ │ ├── CLSBusinessCategoryCache.AOI.sqlite │ │ │ │ ├── CLSBusinessCategoryCache.AOI.sqlite-shm │ │ │ │ ├── CLSBusinessCategoryCache.AOI.sqlite-wal │ │ │ │ ├── CLSBusinessCategoryCache.Nature.sqlite │ │ │ │ ├── CLSBusinessCategoryCache.Nature.sqlite-shm │ │ │ │ ├── CLSBusinessCategoryCache.Nature.sqlite-wal │ │ │ │ ├── CLSBusinessCategoryCache.POI.sqlite │ │ │ │ ├── CLSBusinessCategoryCache.POI.sqlite-shm │ │ │ │ ├── CLSBusinessCategoryCache.POI.sqlite-wal │ │ │ │ ├── CLSBusinessCategoryCache.ROI.sqlite │ │ │ │ ├── CLSBusinessCategoryCache.ROI.sqlite-shm │ │ │ │ ├── CLSBusinessCategoryCache.ROI.sqlite-wal │ │ │ │ ├── CLSLocationCache.sqlite │ │ │ │ ├── CLSLocationCache.sqlite-shm │ │ │ │ ├── CLSLocationCache.sqlite-wal │ │ │ │ ├── CLSPublicEventCache.sqlite │ │ │ │ ├── CLSPublicEventCache.sqlite-shm │ │ │ │ ├── CLSPublicEventCache.sqlite-wal │ │ │ │ ├── PGCurationCache.sqlite.sqlite │ │ │ │ ├── PGCurationCache.sqlite.sqlite-shm │ │ │ │ └── PGCurationCache.sqlite.sqlite-wal │ │ └── com.apple.photolibraryd │ │ │ ├── appPrivateData.plist │ │ │ └── caches │ │ │ └── CreateDatabase_20201114-071310-08:00 │ └── resources │ │ ├── derivatives │ │ ├── 9 │ │ │ └── 9B96223D-4B1A-4BE8-ABD9-47476BEBFFAB_1_105_c.jpeg │ │ ├── masters │ │ │ └── 9 │ │ │ │ └── 9B96223D-4B1A-4BE8-ABD9-47476BEBFFAB_4_5005_c.jpeg │ │ └── thumbs │ │ │ ├── 3305.ithmb │ │ │ ├── 4031.ithmb │ │ │ ├── 4132.ithmb │ │ │ └── thumbnailConfiguration │ │ └── journals │ │ ├── Album-snapshot.plj │ │ ├── Album.plist │ │ ├── Asset-change.plj │ │ ├── Asset-snapshot.plj │ │ ├── Asset.plist │ │ ├── DeferredRebuildFace-snapshot.plj │ │ ├── DeferredRebuildFace.plist │ │ ├── DetectedFace-snapshot.plj │ │ ├── DetectedFace.plist │ │ ├── FetchingAlbum-snapshot.plj │ │ ├── FetchingAlbum.plist │ │ ├── FileSystemVolume-snapshot.plj │ │ ├── FileSystemVolume.plist │ │ ├── Folder-change.plj │ │ ├── Folder-snapshot.plj │ │ ├── Folder.plist │ │ ├── HistoryToken.plist │ │ ├── ImportSession-change.plj │ │ ├── ImportSession-snapshot.plj │ │ ├── ImportSession.plist │ │ ├── Keyword-snapshot.plj │ │ ├── Keyword.plist │ │ ├── Memory-snapshot.plj │ │ ├── Memory.plist │ │ ├── MigrationHistory-change.plj │ │ ├── MigrationHistory-snapshot.plj │ │ ├── MigrationHistory.plist │ │ ├── Person-snapshot.plj │ │ ├── Person.plist │ │ ├── ProjectAlbum-snapshot.plj │ │ └── ProjectAlbum.plist └── Test-PhotoScript-13.0.1.photoslibrary │ ├── database │ ├── DataModelVersion.plist │ ├── Photos.sqlite │ ├── Photos.sqlite-shm │ ├── Photos.sqlite-wal │ ├── metaSchema.db │ ├── photos.db │ ├── rebuildHistory │ └── search │ │ ├── graphDataProgress.plist │ │ ├── psi.sqlite │ │ ├── psi.sqlite-shm │ │ ├── psi.sqlite-wal │ │ ├── searchProgress.plist │ │ ├── searchSystemInfo.plist │ │ ├── synonymsProcess.plist │ │ └── zeroKeywords.data │ ├── originals │ ├── 1 │ │ └── 1CD1B172-C94B-4093-A303-EE24FE7EEF60.jpeg │ ├── 3 │ │ └── 3A71DE26-EDEF-41D3-86C1-E8328DFC9FA0.jpeg │ ├── B │ │ └── B6DB996D-8A0A-4983-AFBD-D206B7D38A23.jpeg │ ├── E │ │ └── EECD91FE-D716-48F2-A62C-A4D558ACD52E.jpeg │ └── F │ │ └── F8EFA39F-7D26-4DC2-82FE-CC9357F19F00.jpeg │ ├── private │ ├── com.apple.Photos │ │ └── appPrivateData.plist │ ├── com.apple.photoanalysisd │ │ └── caches │ │ │ ├── graph │ │ │ ├── CLSBusinessCategoryCache.AOI.sqlite │ │ │ ├── CLSBusinessCategoryCache.AOI.sqlite-shm │ │ │ ├── CLSBusinessCategoryCache.AOI.sqlite-wal │ │ │ ├── CLSBusinessCategoryCache.Nature.sqlite │ │ │ ├── CLSBusinessCategoryCache.Nature.sqlite-shm │ │ │ ├── CLSBusinessCategoryCache.Nature.sqlite-wal │ │ │ ├── CLSBusinessCategoryCache.POI.sqlite │ │ │ ├── CLSBusinessCategoryCache.POI.sqlite-shm │ │ │ ├── CLSBusinessCategoryCache.POI.sqlite-wal │ │ │ ├── CLSBusinessCategoryCache.ROI.sqlite │ │ │ ├── CLSBusinessCategoryCache.ROI.sqlite-shm │ │ │ ├── CLSBusinessCategoryCache.ROI.sqlite-wal │ │ │ ├── CLSContactCache.sqlite │ │ │ ├── CLSContactCache.sqlite-shm │ │ │ ├── CLSContactCache.sqlite-wal │ │ │ ├── CLSLocationCache.sqlite │ │ │ ├── CLSLocationCache.sqlite-shm │ │ │ ├── CLSLocationCache.sqlite-wal │ │ │ ├── CLSPublicEventCache.sqlite │ │ │ ├── CLSPublicEventCache.sqlite-shm │ │ │ ├── CLSPublicEventCache.sqlite-wal │ │ │ ├── PGCurationCache.sqlite.sqlite │ │ │ ├── PGCurationCache.sqlite.sqlite-shm │ │ │ ├── PGCurationCache.sqlite.sqlite-wal │ │ │ ├── PGSearchComputationCache.plist │ │ │ ├── PGSharingFeatureExtractorRecords.plist │ │ │ ├── PhotoAnalysisServiceFeaturesAnalytics.plist │ │ │ ├── PhotoAnalysisServicePreferences.plist │ │ │ ├── PhotosGraph │ │ │ │ ├── construction-photosgraph.kgdb │ │ │ │ ├── construction-photosgraph.kgdb-shm │ │ │ │ ├── construction-photosgraph.kgdb-wal │ │ │ │ ├── liveupdate-photosgraph.kgdb │ │ │ │ ├── liveupdate-photosgraph.kgdb-shm │ │ │ │ ├── liveupdate-photosgraph.kgdb-wal │ │ │ │ ├── photosgraph-tmp.kgdb │ │ │ │ ├── photosgraph-tmp.kgdb-shm │ │ │ │ ├── photosgraph-tmp.kgdb-wal │ │ │ │ ├── photosgraph.kgdb │ │ │ │ ├── photosgraph.kgdb-shm │ │ │ │ └── photosgraph.kgdb-wal │ │ │ ├── changetoken.plist │ │ │ └── revgeoprovider.plist │ │ │ └── vision │ │ │ ├── 42AA26AC-270D-463F-B24E-3C28297D2498.cmap │ │ │ ├── 517DD8B8-A25C-4AF7-8EF5-A521C61A45DC.cmap │ │ │ ├── AlgoFaceClusterCache.data │ │ │ ├── PersonPromoter │ │ │ ├── PhotoAnalysisServicePreferences.plist │ │ │ ├── clustererState.plist │ │ │ └── faceWorkerState.plist │ └── com.apple.photolibraryd │ │ ├── appPrivateData.plist │ │ ├── assetUUIDForPath.plist │ │ └── caches │ │ ├── CreateDatabase_20200907-072647-07:00 │ │ └── CreateDatabase_20200908-224932-07:00 │ └── resources │ ├── derivatives │ ├── 1 │ │ └── 1CD1B172-C94B-4093-A303-EE24FE7EEF60_1_105_c.jpeg │ ├── B │ │ └── B6DB996D-8A0A-4983-AFBD-D206B7D38A23_1_105_c.jpeg │ ├── E │ │ └── EECD91FE-D716-48F2-A62C-A4D558ACD52E_1_105_c.jpeg │ ├── F │ │ └── F8EFA39F-7D26-4DC2-82FE-CC9357F19F00_1_105_c.jpeg │ ├── masters │ │ ├── 1 │ │ │ └── 1CD1B172-C94B-4093-A303-EE24FE7EEF60_4_5005_c.jpeg │ │ ├── 3 │ │ │ └── 3A71DE26-EDEF-41D3-86C1-E8328DFC9FA0_4_5005_c.jpeg │ │ ├── B │ │ │ └── B6DB996D-8A0A-4983-AFBD-D206B7D38A23_4_5005_c.jpeg │ │ ├── E │ │ │ └── EECD91FE-D716-48F2-A62C-A4D558ACD52E_4_5005_c.jpeg │ │ └── F │ │ │ └── F8EFA39F-7D26-4DC2-82FE-CC9357F19F00_4_5005_c.jpeg │ └── thumbs │ │ ├── 3305.ithmb │ │ ├── 4031.ithmb │ │ ├── 4132.ithmb │ │ └── thumbnailConfiguration │ ├── journals │ ├── Album-change.plj │ ├── Album-snapshot.plj │ ├── Album.plist │ ├── Asset-change.plj │ ├── Asset-snapshot.plj │ ├── Asset.plist │ ├── DeferredRebuildFace-snapshot.plj │ ├── DeferredRebuildFace.plist │ ├── DetectedFace-snapshot.plj │ ├── DetectedFace.plist │ ├── FetchingAlbum-snapshot.plj │ ├── FetchingAlbum.plist │ ├── FileSystemVolume-snapshot.plj │ ├── FileSystemVolume.plist │ ├── Folder-change.plj │ ├── Folder-snapshot.plj │ ├── Folder.plist │ ├── HistoryToken.plist │ ├── ImportSession-change.plj │ ├── ImportSession-snapshot.plj │ ├── ImportSession.plist │ ├── Keyword-change.plj │ ├── Keyword-snapshot.plj │ ├── Keyword.plist │ ├── Memory-snapshot.plj │ ├── Memory.plist │ ├── MigrationHistory-change.plj │ ├── MigrationHistory-snapshot.plj │ ├── MigrationHistory.plist │ ├── Person-snapshot.plj │ ├── Person.plist │ ├── ProjectAlbum-snapshot.plj │ └── ProjectAlbum.plist │ └── renders │ └── 3 │ ├── 3A71DE26-EDEF-41D3-86C1-E8328DFC9FA0.plist │ └── 3A71DE26-EDEF-41D3-86C1-E8328DFC9FA0_1_201_a.jpeg └── utils.py /.all-contributorsrc: -------------------------------------------------------------------------------- 1 | { 2 | "files": [ 3 | "README.md" 4 | ], 5 | "imageSize": 100, 6 | "commit": false, 7 | "contributors": [ 8 | { 9 | "login": "habi", 10 | "name": "David Haberthür", 11 | "avatar_url": "https://avatars.githubusercontent.com/u/1651235?v=4", 12 | "profile": "http://davidhaberthür.ch", 13 | "contributions": [ 14 | "doc" 15 | ] 16 | }, 17 | { 18 | "login": "anjos", 19 | "name": "André Anjos", 20 | "avatar_url": "https://avatars.githubusercontent.com/u/46305?v=4", 21 | "profile": "https://anjos.ai", 22 | "contributions": [ 23 | "ideas", 24 | "bug" 25 | ] 26 | } 27 | ], 28 | "contributorsPerLine": 7, 29 | "projectName": "PhotoScript", 30 | "projectOwner": "RhetTbull", 31 | "repoType": "github", 32 | "repoHost": "https://github.com", 33 | "skipCi": true, 34 | "commitConvention": "angular" 35 | } 36 | -------------------------------------------------------------------------------- /.bumpversion.cfg: -------------------------------------------------------------------------------- 1 | [bumpversion] 2 | current_version = 0.4.0 3 | parse = (?P\d+)\.(?P\d+)\.(?P\d+) 4 | serialize = {major}.{minor}.{patch} 5 | 6 | [bumpversion:file:photoscript/_version.py] 7 | parse = __version__\s=\s\"(?P\d+)\.(?P\d+)\.(?P\d+)\" 8 | serialize = {major}.{minor}.{patch} 9 | 10 | [bumpversion:file:pyproject.toml] 11 | parse = version\s=\s\"(?P\d+)\.(?P\d+)\.(?P\d+)\" 12 | serialize = {major}.{minor}.{patch} 13 | -------------------------------------------------------------------------------- /.coveragerc: -------------------------------------------------------------------------------- 1 | [report] 2 | 3 | exclude_lines = 4 | if __name__ == "__main__": 5 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | photoscript.egg-info/ 2 | build/ 3 | dist/ 4 | .DS_Store 5 | .condaauto 6 | .vscode/ 7 | __pycache__/ 8 | working/ 9 | .coverage 10 | cov_html/ 11 | docsrc/_build/ 12 | venv/ 13 | .python-version 14 | site/ 15 | pyrightconfig.json 16 | -------------------------------------------------------------------------------- /.isort.cfg: -------------------------------------------------------------------------------- 1 | [settings] 2 | profile=black 3 | multi_line_output=3 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2019 Rhet Turnbull 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include README.md 2 | include photoscript/photoscript.applescript 3 | exclude tests/* 4 | -------------------------------------------------------------------------------- /README_DEV.md: -------------------------------------------------------------------------------- 1 | # Developer Notes for PhotoScript 2 | 3 | These notes are so that I can remember how to build and test PhotoScript. 4 | 5 | ## Setup the environment 6 | 7 | - Change to the project directory 8 | - Install [uv](https://github.com/astral-sh/uv): `curl -LsSf https://astral.sh/uv/install.sh | sh` 9 | - Create the virtual environment: `uv venv` or `uv venv --python 3.13` to specify a specific version 10 | - Activate the virtual environment: `source .venv/bin/activate` 11 | - Install package dependencies: `uv pip install -r pyproject.toml --extra dev` 12 | 13 | ## Testing 14 | 15 | Tests are written with `pytest`. You must use the `-s` flag when running tests to see the interactive prompts requireed for running the tests. 16 | To test, run `pytest -vv -s`. 17 | 18 | The test suite will copy a test Photos library to your `~/Pictures` directory. 19 | You may be prompted in Photos to allow it to switch libraries. Once the test suite is complete, 20 | you will need to manually switch back to your original library. To do this, close Photos, then hold 21 | down the `option` key while clicking on the Photos icon in the dock. You will be prompted to select 22 | a library; select your original library. 23 | 24 | ## Docs 25 | 26 | Build docs with `mkdocs build` then deploy to GitHub pages with `mkdocs gh-deploy` 27 | 28 | 29 | ## Building 30 | 31 | To build the project: 32 | 33 | - `rm -rf dist; rm -rf build` 34 | - `uv build` 35 | 36 | ## Versioning 37 | 38 | Use [bump2version](https://github.com/c4urself/bump2version): 39 | 40 | - `bump2version patch --verbose [--dry-run]` 41 | - `bump2version minor --verbose [--dry-run]` 42 | - `bump2version major --verbose [--dry-run]` 43 | 44 | ## Change Log 45 | 46 | The `CHANGELOG.md` is created with [auto-changelog](https://github.com/cookpete/auto-changelog): 47 | 48 | - `git pull` 49 | - `auto-changelog --ignore-commit-pattern CHANGELOG -l 5` 50 | - `git add CHANGELOG.md; git commit -m"Updated CHANGELOG.md [skip ci]"; git push` 51 | 52 | ## Publishing 53 | 54 | To publish to PyPI: 55 | 56 | - `uv publish` 57 | -------------------------------------------------------------------------------- /docs/reference.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | ## PhotosLibrary 4 | 5 | ::: photoscript.PhotosLibrary 6 | handler.: python 7 | 8 | ## Photo 9 | 10 | ::: photoscript.Photo 11 | handler.: python 12 | 13 | ## Album 14 | 15 | ::: photoscript.Album 16 | handler.: python 17 | 18 | ## Folder 19 | 20 | ::: photoscript.Folder 21 | handler.: python 22 | -------------------------------------------------------------------------------- /docsrc/Makefile: -------------------------------------------------------------------------------- 1 | # Minimal makefile for Sphinx documentation 2 | # 3 | 4 | # You can set these variables from the command line, and also 5 | # from the environment for the first two. 6 | SPHINXOPTS ?= 7 | SPHINXBUILD ?= sphinx-build 8 | SOURCEDIR = source 9 | BUILDDIR = _build 10 | 11 | # Put it first so that "make" without argument is like "make help". 12 | help: 13 | @$(SPHINXBUILD) -M help "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O) 14 | 15 | github: 16 | @make html 17 | @cp -a _build/html/. ../docs 18 | 19 | pdf: 20 | @make latexpdf 21 | @cp -a _build/latex/photoscript.pdf ../docs 22 | 23 | .PHONY: help Makefile 24 | 25 | # Catch-all target: route all unknown targets to Sphinx using the new 26 | # "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS). 27 | %: Makefile 28 | @$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O) 29 | -------------------------------------------------------------------------------- /docsrc/README.md: -------------------------------------------------------------------------------- 1 | # Building the documentation 2 | 3 | I'm still trying to learn sphinx and come up with a workflow for building docs. Right now it's 4 | pretty kludgy. 5 | 6 | - `brew install sphinx-doc` or `conda install sphinx` 7 | - `pip install sphinx-rtd-theme` 8 | - `pip install m2r2` 9 | - Download and install [MacTeX](https://tug.org/mactex/) 10 | - Add `/Library/TeX/texbin` to your `$PATH` 11 | - Convert README to rst. I tried using plug-ins to do this and ran into errors with LaTeX to PDF due to the black and MIT license images. 12 | - `m2r2 README.md` 13 | - Move the README.rst that's generated to `docs/source` and edit it to remove the images 14 | - `cd docs` 15 | - `make html` 16 | - `make latexpdf` 17 | - copy `docs/build/latex/photoscript.pdf` to the project root directory 18 | -------------------------------------------------------------------------------- /docsrc/make.bat: -------------------------------------------------------------------------------- 1 | @ECHO OFF 2 | 3 | pushd %~dp0 4 | 5 | REM Command file for Sphinx documentation 6 | 7 | if "%SPHINXBUILD%" == "" ( 8 | set SPHINXBUILD=sphinx-build 9 | ) 10 | set SOURCEDIR=source 11 | set BUILDDIR=build 12 | 13 | if "%1" == "" goto help 14 | 15 | %SPHINXBUILD% >NUL 2>NUL 16 | if errorlevel 9009 ( 17 | echo. 18 | echo.The 'sphinx-build' command was not found. Make sure you have Sphinx 19 | echo.installed, then set the SPHINXBUILD environment variable to point 20 | echo.to the full path of the 'sphinx-build' executable. Alternatively you 21 | echo.may add the Sphinx directory to PATH. 22 | echo. 23 | echo.If you don't have Sphinx installed, grab it from 24 | echo.http://sphinx-doc.org/ 25 | exit /b 1 26 | ) 27 | 28 | %SPHINXBUILD% -M %1 %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% %O% 29 | goto end 30 | 31 | :help 32 | %SPHINXBUILD% -M help %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% %O% 33 | 34 | :end 35 | popd 36 | -------------------------------------------------------------------------------- /docsrc/source/index.rst: -------------------------------------------------------------------------------- 1 | .. PhotoScript documentation master file, created by 2 | sphinx-quickstart on Sat Aug 15 16:29:13 2020. 3 | You can adapt this file completely to your liking, but it should at least 4 | contain the root `toctree` directive. 5 | 6 | Welcome to PhotoScript's documentation! 7 | ======================================= 8 | 9 | .. mdinclude:: ../../README.md 10 | 11 | 12 | Documentation 13 | ============= 14 | 15 | .. toctree:: 16 | :maxdepth: 3 17 | 18 | reference 19 | 20 | 21 | 22 | Indices and tables 23 | ================== 24 | 25 | * :ref:`genindex` 26 | * :ref:`modindex` 27 | * :ref:`search` 28 | -------------------------------------------------------------------------------- /docsrc/source/modules.rst: -------------------------------------------------------------------------------- 1 | photoscript 2 | =========== 3 | 4 | .. toctree:: 5 | :maxdepth: 4 6 | -------------------------------------------------------------------------------- /docsrc/source/reference.rst: -------------------------------------------------------------------------------- 1 | photoscript package 2 | =================== 3 | 4 | photoscript module 5 | ------------------------------ 6 | 7 | .. autoclass:: photoscript.PhotosLibrary 8 | :members: 9 | :undoc-members: 10 | 11 | .. autoclass:: photoscript.Album 12 | :members: 13 | :undoc-members: 14 | 15 | .. autoclass:: photoscript.Folder 16 | :members: 17 | :undoc-members: 18 | 19 | .. autoclass:: photoscript.Photo 20 | :members: 21 | :undoc-members: -------------------------------------------------------------------------------- /examples/example.py: -------------------------------------------------------------------------------- 1 | """ Simple example showing use of photoscript """ 2 | 3 | import photoscript 4 | 5 | photoslib = photoscript.PhotosLibrary() 6 | 7 | photoslib.activate() 8 | print(f"Running Photos version: {photoslib.version}") 9 | 10 | album = photoslib.album("Album1") 11 | photos = album.photos() 12 | 13 | for photo in photos: 14 | print(f"{photo.title}, {photo.description}, {photo.keywords}") 15 | 16 | new_album = photoslib.create_album("New Album") 17 | photoslib.import_photos(["/Users/rhet/Downloads/test.jpeg"], album=new_album) 18 | 19 | photoslib.quit() -------------------------------------------------------------------------------- /examples/import_photos.py: -------------------------------------------------------------------------------- 1 | """ Create new album and import photos """ 2 | 3 | import argparse 4 | import pathlib 5 | 6 | from photoscript import PhotosLibrary 7 | 8 | 9 | def is_file(path): 10 | if pathlib.Path(path).is_file(): 11 | return path 12 | else: 13 | raise argparse.ArgumentTypeError(f"is_file: {path} is not a valid file") 14 | 15 | 16 | def main(): 17 | parser = argparse.ArgumentParser( 18 | description="Import photos into Photos album. Create album if it doesn't exist. " 19 | "Does not check for duplicates." 20 | ) 21 | parser.add_argument( 22 | "album", metavar="ALBUM", type=str, nargs=1, help="Album to import into" 23 | ) 24 | parser.add_argument( 25 | "photo", 26 | metavar="PHOTO", 27 | type=is_file, 28 | nargs="+", 29 | help="Photos to import", 30 | ) 31 | 32 | args = parser.parse_args() 33 | 34 | photoslib = PhotosLibrary() 35 | albums = photoslib.album_names() 36 | album_name = args.album[0] 37 | if album_name not in albums: 38 | print(f"Album {album_name} doesn't exist, creating it.") 39 | album = photoslib.create_album(album_name) 40 | else: 41 | album = photoslib.album(album_name) 42 | 43 | print(f"Importing {len(args.photo)} photos into album {album_name}.") 44 | photoslib.import_photos(args.photo, album=album_name, skip_duplicate_check=True) 45 | 46 | print(f"Done. Album {album_name} now contains {len(album)} photos.") 47 | 48 | 49 | if __name__ == "__main__": 50 | main() 51 | -------------------------------------------------------------------------------- /examples/photos_repl.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python3 -i 2 | 3 | # Open an interactive REPL with photoslib defined as PhotosLibrary 4 | # useful for debugging or exploring the Photos database 5 | 6 | # If you run this using python from command line, do so with -i flag: 7 | # python3 -i examples/photos_repl.py 8 | 9 | from photoscript import Photo, Album, Folder, PhotosLibrary 10 | 11 | 12 | if __name__ == "__main__": 13 | photoslib = PhotosLibrary() 14 | print(f"Photos version: {photoslib.version}") 15 | print("variables defined: photoslib") 16 | -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- 1 | site_name: PhotoScript Docs 2 | site_url: https://rhettbull.github.io/photoscript/ 3 | nav: 4 | - Home: index.md 5 | - Reference: reference.md 6 | plugins: 7 | - search 8 | - mkdocstrings 9 | theme: 10 | name: material 11 | -------------------------------------------------------------------------------- /photoscript.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/photoscript.pdf -------------------------------------------------------------------------------- /photoscript/__main__.py: -------------------------------------------------------------------------------- 1 | """ If run with python -m photoscript, drops user into interactive REPL """ 2 | 3 | from .__init__ import PhotosLibrary, Album, Folder, Photo 4 | 5 | from code import InteractiveConsole 6 | 7 | photoslib = PhotosLibrary() 8 | 9 | def main(): 10 | global photoslib 11 | banner = "PhotoScript REPL\n" \ 12 | f"Photos version: {photoslib.version}\n" \ 13 | f"Variables defined: photoslib" 14 | InteractiveConsole(locals=globals()).interact(banner=banner) 15 | 16 | if __name__ == "__main__": 17 | main() -------------------------------------------------------------------------------- /photoscript/_version.py: -------------------------------------------------------------------------------- 1 | """ version info """ 2 | 3 | __version__ = "0.4.0" -------------------------------------------------------------------------------- /photoscript/script_loader.py: -------------------------------------------------------------------------------- 1 | import pathlib 2 | from applescript import AppleScript 3 | 4 | SCRIPT_PATH = pathlib.Path(__file__).parent 5 | 6 | def load_applescript(script_name): 7 | script_path = pathlib.Path(SCRIPT_PATH) / f"{script_name}.applescript" 8 | if not script_path.is_file(): 9 | raise ValueError(f"{script_path} is not a valid script") 10 | script_file = open(script_path, "r") 11 | script = script_file.read() 12 | script_file.close() 13 | return AppleScript(script) 14 | 15 | SCRIPT_OBJ = load_applescript("photoscript") 16 | 17 | def run_script(name, *args): 18 | return SCRIPT_OBJ.call(name, *args) -------------------------------------------------------------------------------- /photoscript/utils.py: -------------------------------------------------------------------------------- 1 | """ Utility functions for photoscript """ 2 | 3 | from __future__ import annotations 4 | 5 | import fnmatch 6 | import os 7 | import platform 8 | import re 9 | import subprocess 10 | 11 | 12 | def ditto(src, dest, norsrc=False): 13 | """Copies a file or directory tree from src path to dest path 14 | src: source path as string 15 | dest: destination path as string 16 | norsrc: (bool) if True, uses --norsrc flag with ditto so it will not copy 17 | resource fork or extended attributes. May be useful on volumes that 18 | don't work with extended attributes (likely only certain SMB mounts) 19 | default is False 20 | Uses ditto to perform copy; will silently overwrite dest if it exists 21 | Raises exception if copy fails or either path is None""" 22 | 23 | if src is None or dest is None: 24 | raise ValueError("src and dest must not be None", src, dest) 25 | 26 | if norsrc: 27 | command = ["/usr/bin/ditto", "--norsrc", src, dest] 28 | else: 29 | command = ["/usr/bin/ditto", src, dest] 30 | 31 | # if error on copy, subprocess will raise CalledProcessError 32 | result = subprocess.run(command, check=True, stderr=subprocess.PIPE) 33 | 34 | return result.returncode 35 | 36 | 37 | def findfiles(pattern, path_): 38 | """Returns list of filenames from path_ matched by pattern 39 | shell pattern. Matching is case-insensitive. 40 | If 'path_' is invalid/doesn't exist, returns [].""" 41 | if not os.path.isdir(path_): 42 | return [] 43 | # See: https://gist.github.com/techtonik/5694830 44 | 45 | rule = re.compile(fnmatch.translate(pattern), re.IGNORECASE) 46 | return [name for name in os.listdir(path_) if rule.match(name)] 47 | 48 | 49 | def get_os_version() -> tuple[int, int, int]: 50 | # returns tuple of str containing OS version 51 | # e.g. 10.13.6 = ("10", "13", "6") 52 | version = platform.mac_ver()[0].split(".") 53 | if len(version) == 2: 54 | (ver, major) = version 55 | minor = 0 56 | elif len(version) == 3: 57 | (ver, major, minor) = version 58 | else: 59 | raise ( 60 | ValueError( 61 | f"Could not parse version string: {platform.mac_ver()} {version}" 62 | ) 63 | ) 64 | return int(ver), int(major), int(minor) 65 | -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- 1 | [project] 2 | name = "photoscript" 3 | version = "0.4.0" 4 | description = "Python wrapper around Apple Photos applescript interface" 5 | authors = [{ name = "Rhet Turnbull", email = "rturnbull+git@gmail.com" }] 6 | license = { text = "MIT License" } 7 | readme = { file = "README.md", content-type = "text/markdown" } 8 | keywords = ["photos", "mac", "macos", "applescript", "apple"] 9 | classifiers = [ 10 | "Development Status :: 5 - Production/Stable", 11 | "Environment :: MacOS X", 12 | "Intended Audience :: Developers", 13 | "License :: OSI Approved :: MIT License", 14 | "Operating System :: MacOS :: MacOS X", 15 | "Programming Language :: Python :: 3.10", 16 | "Programming Language :: Python :: 3.11", 17 | "Programming Language :: Python :: 3.12", 18 | "Programming Language :: Python :: 3.13", 19 | "Topic :: Software Development :: Libraries :: Python Modules", 20 | ] 21 | dependencies = [ 22 | "pyobjc-core>=9.2", 23 | "pyobjc-framework-Cocoa>=9.2", 24 | "pyobjc-framework-AppleScriptKit>=9.2", 25 | "pyobjc-framework-AppleScriptObjC>=9.2", 26 | "py-applescript>=1.0.3", 27 | ] 28 | requires-python = ">=3.10,<4.0" 29 | 30 | [project.optional-dependencies] 31 | dev = [ 32 | "setuptools", 33 | "pytest>=7.1.3,<8.0", 34 | "flaky>=3.7.0,<4.0", 35 | "wheel>=0.37.1", 36 | "build>=0.8.0", 37 | "twine>=4.0.1", 38 | "bump2version>=1.0.1", 39 | "mkdocs>=1.4.2", 40 | "mkdocs-material>=9.0.13", 41 | "mkdocstrings-python>=0.8.3", 42 | ] 43 | 44 | [project.urls] 45 | Homepage = "https://github.com/RhetTbull/photoscript" 46 | Repository = "https://github.com/RhetTbull/photoscript" 47 | 48 | [tool.setuptools] 49 | packages = ["photoscript"] 50 | 51 | [build-system] 52 | requires = ["setuptools", "wheel"] 53 | build-backend = "setuptools.build_meta" 54 | -------------------------------------------------------------------------------- /tests/README.md: -------------------------------------------------------------------------------- 1 | # Running the test suite 2 | 3 | The tests use pytest and the flaky plugin so: 4 | 5 | `python3 -m pip install pytest flaky` 6 | 7 | `python3 -m pytest` 8 | 9 | **NOTE**: The test suite is currently designed only to be run on MacOS Catalina/10.15.6. Running on any other version of MacOS is likely to cause errors. I will eventually add support for running the test suite on at least Catalina and Big Sur and possibly Mojave. 10 | 11 | In order to properly test PhotoScript, the test suite must obviously interact with Photos using AppleScript. This requires some user input so the test suite **must** be run with user interaction; it cannot be run in "headless" manner. 12 | 13 | When the test suite is run, pytest will first copy a test library to the user's ~/Pictures folder (overwriting the existing test library if it is present) then tell Photos to open this library. This may require user interaction to confirm opening the library. 14 | 15 | If your Pictures folder is not in ~/Pictures, you can set the environment variable `PHOTOSCRIPT_PICTURES_FOLDER` to point to the path to your Pictures folder and the tests will use this path instead of ~/Pictures. 16 | 17 | Some of the tests will pause an wait for the user to do something. These tests will prompt the user with audio prompts and tell them what to do (e.g. select photos in Photos). 18 | 19 | You may need to run the test suite more than once to get all tests to pass due to the way AppleScript interacts with Photos during the test. For example, if the test library was not the last library opened in Photos, Photos may cause an error when the test suite tried to switch to the test library. -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/__init__.py -------------------------------------------------------------------------------- /tests/applescript_test.applescript: -------------------------------------------------------------------------------- 1 | on test_applescript() 2 | return 42 3 | end test_applescript -------------------------------------------------------------------------------- /tests/export_photo_details.py: -------------------------------------------------------------------------------- 1 | """ Use osxphotos to export details to build PHOTOS_DICT for tests """ 2 | 3 | import osxphotos 4 | 5 | photosdb = osxphotos.PhotosDB() 6 | for p in photosdb.photos(): 7 | description = f'"{p.description}"' if p.description is not None else None 8 | title = f'"{p.title}"' if p.title is not None else None 9 | print( 10 | f'{{"uuid": "{p.uuid}/L0/001", "uuid_osxphotos": "{p.uuid}", ' 11 | f'"filename": "{p.original_filename}", "favorite": {p.favorite}, ' 12 | f'"title": {title}, "description": {description}, ' 13 | f'"keywords": {p.keywords}, "height": {p.height}, "width": {p.width}, ' 14 | f'"location": {p.location}, "date": "{p.date}" }},' 15 | ) 16 | 17 | -------------------------------------------------------------------------------- /tests/mock_photoscript.applescript: -------------------------------------------------------------------------------- 1 | (* mock photoscript applescript functions for testing AppleScriptError *) 2 | 3 | on photosLibraryCreateFolder(folderName) 4 | return missing value 5 | end photosLibraryCreateFolder 6 | 7 | on photosLibraryCreateFolderAtFolder(folderName, folder_id_) 8 | return missing value 9 | end photosLibraryCreateFolderAtFolder 10 | 11 | on photosLibraryCreateAlbum(albumName) 12 | return missing value 13 | end photosLibraryCreateAlbum 14 | 15 | on photosLibraryCreateAlbumAtFolder(albumName, folder_id_) 16 | return missing value 17 | end photosLibraryCreateAlbumAtFolder -------------------------------------------------------------------------------- /tests/test_5_script_loader.py: -------------------------------------------------------------------------------- 1 | """ Test script_loader.py """ 2 | 3 | import pytest 4 | 5 | 6 | def test_script_loader(): 7 | import os 8 | 9 | from applescript import AppleScript 10 | import photoscript 11 | 12 | cwd = os.getcwd() 13 | 14 | script = photoscript.script_loader.load_applescript( 15 | os.path.join(cwd, "tests/applescript_test") 16 | ) 17 | assert isinstance(script, AppleScript) 18 | assert script.call("test_applescript") == 42 19 | 20 | 21 | def test_script_loader_bad_file(): 22 | import photoscript 23 | 24 | with pytest.raises(ValueError): 25 | photoscript.script_loader.load_applescript("BAD_FILE") 26 | 27 | 28 | def test_run_script(): 29 | import os 30 | 31 | from applescript import AppleScript 32 | import photoscript 33 | 34 | cwd = os.getcwd() 35 | 36 | script = photoscript.script_loader.load_applescript( 37 | os.path.join(cwd, "tests/applescript_test") 38 | ) 39 | old_script_obj = photoscript.script_loader.SCRIPT_OBJ 40 | photoscript.script_loader.SCRIPT_OBJ = script 41 | assert photoscript.script_loader.run_script("test_applescript") == 42 42 | photoscript.script_loader.SCRIPT_OBJ = old_script_obj 43 | 44 | -------------------------------------------------------------------------------- /tests/test_6_utils.py: -------------------------------------------------------------------------------- 1 | """ test utils.py """ 2 | import os 3 | import pathlib 4 | import tempfile 5 | 6 | import pytest 7 | 8 | from photoscript.utils import ditto, findfiles 9 | from tests.conftest import photoslib, suspend_capture 10 | from tests.photoscript_config_data import FIND_FILES 11 | 12 | 13 | def test_ditto(): 14 | tmpfile = tempfile.TemporaryDirectory(prefix="photoscript_") 15 | 16 | cwd = os.getcwd() 17 | src = pathlib.Path(cwd) / "tests/test_images/IMG_2608.JPG" 18 | ditto(src, tmpfile.name) 19 | dest = pathlib.Path(tmpfile.name) / "IMG_2608.JPG" 20 | assert dest.is_file() 21 | 22 | 23 | def test_ditto_norsrc(): 24 | tmpfile = tempfile.TemporaryDirectory(prefix="photoscript_") 25 | 26 | cwd = os.getcwd() 27 | src = pathlib.Path(cwd) / "tests/test_images/IMG_2608.JPG" 28 | ditto(src, tmpfile.name, norsrc=True) 29 | dest = pathlib.Path(tmpfile.name) / "IMG_2608.JPG" 30 | assert dest.is_file() 31 | 32 | 33 | def test_ditto_exception(): 34 | with pytest.raises(ValueError): 35 | ditto(None, None) 36 | 37 | 38 | def test_findfiles(): 39 | cwd = os.getcwd() 40 | dest = pathlib.Path(cwd) / "tests/test_images" 41 | files = findfiles("*.JPG", dest) 42 | assert sorted(files) == sorted(FIND_FILES) 43 | 44 | 45 | def test_findfiles_bad_dir(): 46 | files = findfiles("*.JPG", "BAD_DIR") 47 | assert files == [] 48 | -------------------------------------------------------------------------------- /tests/test_7_main.py: -------------------------------------------------------------------------------- 1 | """ Test __main__ """ 2 | 3 | import pytest 4 | from applescript import AppleScript 5 | 6 | from tests.conftest import photoslib, suspend_capture 7 | from tests.photoscript_config_data import PHOTOS_DICT 8 | 9 | 10 | def test_main(photoslib, monkeypatch, capsys): 11 | import io 12 | 13 | from photoscript.__main__ import main 14 | monkeypatch.setattr('sys.stdin', io.StringIO('photos = [p for p in photoslib.photos()]\nlen(photos)\n')) 15 | main() 16 | captured = capsys.readouterr() 17 | assert "Variables defined: photoslib" in captured.err 18 | assert "5" in captured.out -------------------------------------------------------------------------------- /tests/test_images/IMG_0096.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_images/IMG_0096.jpeg -------------------------------------------------------------------------------- /tests/test_images/IMG_2242.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_images/IMG_2242.JPG -------------------------------------------------------------------------------- /tests/test_images/IMG_2510.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_images/IMG_2510.JPG -------------------------------------------------------------------------------- /tests/test_images/IMG_2608.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_images/IMG_2608.JPG -------------------------------------------------------------------------------- /tests/test_images/IMG_2768.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_images/IMG_2768.JPG -------------------------------------------------------------------------------- /tests/test_images/IMG_2774.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_images/IMG_2774.JPG -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7-Single-Photo.photoslibrary/database/DataModelVersion.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | LibrarySchemaVersion 6 | 5001 7 | MetaSchemaVersion 8 | 3 9 | 10 | 11 | -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7-Single-Photo.photoslibrary/database/Photos.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-10.15.7-Single-Photo.photoslibrary/database/Photos.sqlite -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7-Single-Photo.photoslibrary/database/Photos.sqlite-shm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-10.15.7-Single-Photo.photoslibrary/database/Photos.sqlite-shm -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7-Single-Photo.photoslibrary/database/Photos.sqlite-wal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-10.15.7-Single-Photo.photoslibrary/database/Photos.sqlite-wal -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7-Single-Photo.photoslibrary/database/Photos.sqlite.lock: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | hostname 6 | Rhets-MacBook-Pro.local 7 | hostuuid 8 | 9575E48B-8D5F-5654-ABAC-4431B1167324 9 | pid 10 | 14864 11 | processname 12 | photolibraryd 13 | uid 14 | 501 15 | 16 | 17 | -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7-Single-Photo.photoslibrary/database/metaSchema.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-10.15.7-Single-Photo.photoslibrary/database/metaSchema.db -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7-Single-Photo.photoslibrary/database/photos.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-10.15.7-Single-Photo.photoslibrary/database/photos.db -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7-Single-Photo.photoslibrary/database/protection: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-10.15.7-Single-Photo.photoslibrary/database/protection -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7-Single-Photo.photoslibrary/database/search/graphDataProgress.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-10.15.7-Single-Photo.photoslibrary/database/search/graphDataProgress.plist -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7-Single-Photo.photoslibrary/database/search/psi.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-10.15.7-Single-Photo.photoslibrary/database/search/psi.sqlite -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7-Single-Photo.photoslibrary/database/search/psi.sqlite-shm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-10.15.7-Single-Photo.photoslibrary/database/search/psi.sqlite-shm -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7-Single-Photo.photoslibrary/database/search/psi.sqlite-wal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-10.15.7-Single-Photo.photoslibrary/database/search/psi.sqlite-wal -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7-Single-Photo.photoslibrary/database/search/searchProgress.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | insertAlbum 6 | 7 | insertAsset 8 | 9 | insertHighlight 10 | 11 | insertMemory 12 | 13 | insertMoment 14 | 15 | removeAlbum 16 | 17 | removeAsset 18 | 19 | removeHighlight 20 | 21 | removeMemory 22 | 23 | removeMoment 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7-Single-Photo.photoslibrary/database/search/searchSystemInfo.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | embeddingVersion 6 | 1 7 | localeIdentifier 8 | en_US 9 | sceneTaxonomySHA 10 | 87914a047c69fbe8013fad2c70fa70c6c03b08b56190fe4054c880e6b9f57cc3 11 | searchIndexVersion 12 | 10 13 | 14 | 15 | -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7-Single-Photo.photoslibrary/database/search/synonymsProcess.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-10.15.7-Single-Photo.photoslibrary/database/search/synonymsProcess.plist -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7-Single-Photo.photoslibrary/originals/9/9B96223D-4B1A-4BE8-ABD9-47476BEBFFAB.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-10.15.7-Single-Photo.photoslibrary/originals/9/9B96223D-4B1A-4BE8-ABD9-47476BEBFFAB.jpeg -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7-Single-Photo.photoslibrary/private/com.apple.Photos/appPrivateData.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CollapsedSidebarSectionIdentifiers 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7-Single-Photo.photoslibrary/private/com.apple.photoanalysisd/caches/graph/CLSBusinessCategoryCache.AOI.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-10.15.7-Single-Photo.photoslibrary/private/com.apple.photoanalysisd/caches/graph/CLSBusinessCategoryCache.AOI.sqlite -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7-Single-Photo.photoslibrary/private/com.apple.photoanalysisd/caches/graph/CLSBusinessCategoryCache.AOI.sqlite-shm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-10.15.7-Single-Photo.photoslibrary/private/com.apple.photoanalysisd/caches/graph/CLSBusinessCategoryCache.AOI.sqlite-shm -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7-Single-Photo.photoslibrary/private/com.apple.photoanalysisd/caches/graph/CLSBusinessCategoryCache.AOI.sqlite-wal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-10.15.7-Single-Photo.photoslibrary/private/com.apple.photoanalysisd/caches/graph/CLSBusinessCategoryCache.AOI.sqlite-wal -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7-Single-Photo.photoslibrary/private/com.apple.photoanalysisd/caches/graph/CLSBusinessCategoryCache.Nature.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-10.15.7-Single-Photo.photoslibrary/private/com.apple.photoanalysisd/caches/graph/CLSBusinessCategoryCache.Nature.sqlite -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7-Single-Photo.photoslibrary/private/com.apple.photoanalysisd/caches/graph/CLSBusinessCategoryCache.Nature.sqlite-shm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-10.15.7-Single-Photo.photoslibrary/private/com.apple.photoanalysisd/caches/graph/CLSBusinessCategoryCache.Nature.sqlite-shm -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7-Single-Photo.photoslibrary/private/com.apple.photoanalysisd/caches/graph/CLSBusinessCategoryCache.Nature.sqlite-wal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-10.15.7-Single-Photo.photoslibrary/private/com.apple.photoanalysisd/caches/graph/CLSBusinessCategoryCache.Nature.sqlite-wal -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7-Single-Photo.photoslibrary/private/com.apple.photoanalysisd/caches/graph/CLSBusinessCategoryCache.POI.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-10.15.7-Single-Photo.photoslibrary/private/com.apple.photoanalysisd/caches/graph/CLSBusinessCategoryCache.POI.sqlite -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7-Single-Photo.photoslibrary/private/com.apple.photoanalysisd/caches/graph/CLSBusinessCategoryCache.POI.sqlite-shm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-10.15.7-Single-Photo.photoslibrary/private/com.apple.photoanalysisd/caches/graph/CLSBusinessCategoryCache.POI.sqlite-shm -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7-Single-Photo.photoslibrary/private/com.apple.photoanalysisd/caches/graph/CLSBusinessCategoryCache.POI.sqlite-wal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-10.15.7-Single-Photo.photoslibrary/private/com.apple.photoanalysisd/caches/graph/CLSBusinessCategoryCache.POI.sqlite-wal -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7-Single-Photo.photoslibrary/private/com.apple.photoanalysisd/caches/graph/CLSBusinessCategoryCache.ROI.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-10.15.7-Single-Photo.photoslibrary/private/com.apple.photoanalysisd/caches/graph/CLSBusinessCategoryCache.ROI.sqlite -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7-Single-Photo.photoslibrary/private/com.apple.photoanalysisd/caches/graph/CLSBusinessCategoryCache.ROI.sqlite-shm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-10.15.7-Single-Photo.photoslibrary/private/com.apple.photoanalysisd/caches/graph/CLSBusinessCategoryCache.ROI.sqlite-shm -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7-Single-Photo.photoslibrary/private/com.apple.photoanalysisd/caches/graph/CLSBusinessCategoryCache.ROI.sqlite-wal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-10.15.7-Single-Photo.photoslibrary/private/com.apple.photoanalysisd/caches/graph/CLSBusinessCategoryCache.ROI.sqlite-wal -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7-Single-Photo.photoslibrary/private/com.apple.photoanalysisd/caches/graph/CLSLocationCache.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-10.15.7-Single-Photo.photoslibrary/private/com.apple.photoanalysisd/caches/graph/CLSLocationCache.sqlite -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7-Single-Photo.photoslibrary/private/com.apple.photoanalysisd/caches/graph/CLSLocationCache.sqlite-shm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-10.15.7-Single-Photo.photoslibrary/private/com.apple.photoanalysisd/caches/graph/CLSLocationCache.sqlite-shm -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7-Single-Photo.photoslibrary/private/com.apple.photoanalysisd/caches/graph/CLSLocationCache.sqlite-wal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-10.15.7-Single-Photo.photoslibrary/private/com.apple.photoanalysisd/caches/graph/CLSLocationCache.sqlite-wal -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7-Single-Photo.photoslibrary/private/com.apple.photoanalysisd/caches/graph/CLSPublicEventCache.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-10.15.7-Single-Photo.photoslibrary/private/com.apple.photoanalysisd/caches/graph/CLSPublicEventCache.sqlite -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7-Single-Photo.photoslibrary/private/com.apple.photoanalysisd/caches/graph/CLSPublicEventCache.sqlite-shm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-10.15.7-Single-Photo.photoslibrary/private/com.apple.photoanalysisd/caches/graph/CLSPublicEventCache.sqlite-shm -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7-Single-Photo.photoslibrary/private/com.apple.photoanalysisd/caches/graph/CLSPublicEventCache.sqlite-wal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-10.15.7-Single-Photo.photoslibrary/private/com.apple.photoanalysisd/caches/graph/CLSPublicEventCache.sqlite-wal -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7-Single-Photo.photoslibrary/private/com.apple.photoanalysisd/caches/graph/PGCurationCache.sqlite.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-10.15.7-Single-Photo.photoslibrary/private/com.apple.photoanalysisd/caches/graph/PGCurationCache.sqlite.sqlite -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7-Single-Photo.photoslibrary/private/com.apple.photoanalysisd/caches/graph/PGCurationCache.sqlite.sqlite-shm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-10.15.7-Single-Photo.photoslibrary/private/com.apple.photoanalysisd/caches/graph/PGCurationCache.sqlite.sqlite-shm -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7-Single-Photo.photoslibrary/private/com.apple.photoanalysisd/caches/graph/PGCurationCache.sqlite.sqlite-wal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-10.15.7-Single-Photo.photoslibrary/private/com.apple.photoanalysisd/caches/graph/PGCurationCache.sqlite.sqlite-wal -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7-Single-Photo.photoslibrary/private/com.apple.photolibraryd/appPrivateData.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | PLLibraryServicesManager.LocaleIdentifier 6 | en_US 7 | 8 | 9 | -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7-Single-Photo.photoslibrary/private/com.apple.photolibraryd/caches/CreateDatabase_20201114-071310-08:00: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-10.15.7-Single-Photo.photoslibrary/private/com.apple.photolibraryd/caches/CreateDatabase_20201114-071310-08:00 -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7-Single-Photo.photoslibrary/resources/derivatives/9/9B96223D-4B1A-4BE8-ABD9-47476BEBFFAB_1_105_c.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-10.15.7-Single-Photo.photoslibrary/resources/derivatives/9/9B96223D-4B1A-4BE8-ABD9-47476BEBFFAB_1_105_c.jpeg -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7-Single-Photo.photoslibrary/resources/derivatives/masters/9/9B96223D-4B1A-4BE8-ABD9-47476BEBFFAB_4_5005_c.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-10.15.7-Single-Photo.photoslibrary/resources/derivatives/masters/9/9B96223D-4B1A-4BE8-ABD9-47476BEBFFAB_4_5005_c.jpeg -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7-Single-Photo.photoslibrary/resources/derivatives/thumbs/3305.ithmb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-10.15.7-Single-Photo.photoslibrary/resources/derivatives/thumbs/3305.ithmb -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7-Single-Photo.photoslibrary/resources/derivatives/thumbs/4031.ithmb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-10.15.7-Single-Photo.photoslibrary/resources/derivatives/thumbs/4031.ithmb -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7-Single-Photo.photoslibrary/resources/derivatives/thumbs/4132.ithmb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-10.15.7-Single-Photo.photoslibrary/resources/derivatives/thumbs/4132.ithmb -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7-Single-Photo.photoslibrary/resources/derivatives/thumbs/thumbnailConfiguration: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | PLThumbnailManagerThumbnailFormatKey 6 | 5005 7 | PLThumbnailManagerVersionKey 8 | 28 9 | 10 | 11 | -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7-Single-Photo.photoslibrary/resources/journals/Album-snapshot.plj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-10.15.7-Single-Photo.photoslibrary/resources/journals/Album-snapshot.plj -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7-Single-Photo.photoslibrary/resources/journals/Album.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | currentPayloadVersion 6 | 1 7 | snapshotDate 8 | 2020-11-14T15:13:11Z 9 | snapshotPayloadVersion 10 | 1 11 | 12 | 13 | -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7-Single-Photo.photoslibrary/resources/journals/Asset-change.plj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-10.15.7-Single-Photo.photoslibrary/resources/journals/Asset-change.plj -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7-Single-Photo.photoslibrary/resources/journals/Asset-snapshot.plj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-10.15.7-Single-Photo.photoslibrary/resources/journals/Asset-snapshot.plj -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7-Single-Photo.photoslibrary/resources/journals/Asset.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | currentPayloadVersion 6 | 10 7 | snapshotDate 8 | 2020-11-14T15:13:11Z 9 | snapshotPayloadVersion 10 | 10 11 | 12 | 13 | -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7-Single-Photo.photoslibrary/resources/journals/DeferredRebuildFace-snapshot.plj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-10.15.7-Single-Photo.photoslibrary/resources/journals/DeferredRebuildFace-snapshot.plj -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7-Single-Photo.photoslibrary/resources/journals/DeferredRebuildFace.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | currentPayloadVersion 6 | 1 7 | snapshotDate 8 | 2020-11-14T15:13:11Z 9 | snapshotPayloadVersion 10 | 1 11 | 12 | 13 | -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7-Single-Photo.photoslibrary/resources/journals/DetectedFace-snapshot.plj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-10.15.7-Single-Photo.photoslibrary/resources/journals/DetectedFace-snapshot.plj -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7-Single-Photo.photoslibrary/resources/journals/DetectedFace.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | currentPayloadVersion 6 | 1 7 | snapshotDate 8 | 2020-11-14T15:13:11Z 9 | snapshotPayloadVersion 10 | 1 11 | 12 | 13 | -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7-Single-Photo.photoslibrary/resources/journals/FetchingAlbum-snapshot.plj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-10.15.7-Single-Photo.photoslibrary/resources/journals/FetchingAlbum-snapshot.plj -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7-Single-Photo.photoslibrary/resources/journals/FetchingAlbum.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | currentPayloadVersion 6 | 2 7 | snapshotDate 8 | 2020-11-14T15:13:11Z 9 | snapshotPayloadVersion 10 | 2 11 | 12 | 13 | -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7-Single-Photo.photoslibrary/resources/journals/FileSystemVolume-snapshot.plj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-10.15.7-Single-Photo.photoslibrary/resources/journals/FileSystemVolume-snapshot.plj -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7-Single-Photo.photoslibrary/resources/journals/FileSystemVolume.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | currentPayloadVersion 6 | 1 7 | snapshotDate 8 | 2020-11-14T15:13:11Z 9 | snapshotPayloadVersion 10 | 1 11 | 12 | 13 | -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7-Single-Photo.photoslibrary/resources/journals/Folder-snapshot.plj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-10.15.7-Single-Photo.photoslibrary/resources/journals/Folder-snapshot.plj -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7-Single-Photo.photoslibrary/resources/journals/Folder.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | currentPayloadVersion 6 | 1 7 | snapshotDate 8 | 2020-11-14T15:13:11Z 9 | snapshotPayloadVersion 10 | 1 11 | 12 | 13 | -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7-Single-Photo.photoslibrary/resources/journals/HistoryToken.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-10.15.7-Single-Photo.photoslibrary/resources/journals/HistoryToken.plist -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7-Single-Photo.photoslibrary/resources/journals/ImportSession-change.plj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-10.15.7-Single-Photo.photoslibrary/resources/journals/ImportSession-change.plj -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7-Single-Photo.photoslibrary/resources/journals/ImportSession-snapshot.plj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-10.15.7-Single-Photo.photoslibrary/resources/journals/ImportSession-snapshot.plj -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7-Single-Photo.photoslibrary/resources/journals/ImportSession.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | currentPayloadVersion 6 | 1 7 | snapshotDate 8 | 2020-11-14T15:13:11Z 9 | snapshotPayloadVersion 10 | 1 11 | 12 | 13 | -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7-Single-Photo.photoslibrary/resources/journals/Keyword-snapshot.plj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-10.15.7-Single-Photo.photoslibrary/resources/journals/Keyword-snapshot.plj -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7-Single-Photo.photoslibrary/resources/journals/Keyword.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | currentPayloadVersion 6 | 1 7 | snapshotDate 8 | 2020-11-14T15:13:11Z 9 | snapshotPayloadVersion 10 | 1 11 | 12 | 13 | -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7-Single-Photo.photoslibrary/resources/journals/Memory-snapshot.plj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-10.15.7-Single-Photo.photoslibrary/resources/journals/Memory-snapshot.plj -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7-Single-Photo.photoslibrary/resources/journals/Memory.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | currentPayloadVersion 6 | 1 7 | snapshotDate 8 | 2020-11-14T15:13:11Z 9 | snapshotPayloadVersion 10 | 1 11 | 12 | 13 | -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7-Single-Photo.photoslibrary/resources/journals/Person-snapshot.plj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-10.15.7-Single-Photo.photoslibrary/resources/journals/Person-snapshot.plj -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7-Single-Photo.photoslibrary/resources/journals/Person.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | currentPayloadVersion 6 | 1 7 | snapshotDate 8 | 2020-11-14T15:13:11Z 9 | snapshotPayloadVersion 10 | 1 11 | 12 | 13 | -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7-Single-Photo.photoslibrary/resources/journals/ProjectAlbum-snapshot.plj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-10.15.7-Single-Photo.photoslibrary/resources/journals/ProjectAlbum-snapshot.plj -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7-Single-Photo.photoslibrary/resources/journals/ProjectAlbum.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | currentPayloadVersion 6 | 1 7 | snapshotDate 8 | 2020-11-14T15:13:10Z 9 | snapshotPayloadVersion 10 | 1 11 | 12 | 13 | -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/database/DataModelVersion.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | LibrarySchemaVersion 6 | 5001 7 | MetaSchemaVersion 8 | 3 9 | 10 | 11 | -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/database/Photos.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/database/Photos.sqlite -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/database/Photos.sqlite-shm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/database/Photos.sqlite-shm -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/database/Photos.sqlite-wal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/database/Photos.sqlite-wal -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/database/Photos.sqlite.aside: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/database/Photos.sqlite.aside -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/database/Photos.sqlite.aside-wal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/database/Photos.sqlite.aside-wal -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/database/Photos.sqlite.lock: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | hostname 6 | Rhets-MacBook-Pro.local 7 | hostuuid 8 | 9575E48B-8D5F-5654-ABAC-4431B1167324 9 | pid 10 | 14864 11 | processname 12 | photolibraryd 13 | uid 14 | 501 15 | 16 | 17 | -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/database/metaSchema.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/database/metaSchema.db -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/database/photos.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/database/photos.db -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/database/protection: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/database/protection -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/database/rebuildHistory: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 2020-09-08 22:49:32.269-07:00 6 | 10 7 | 8 | 9 | -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/database/search/graphDataProgress.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/database/search/graphDataProgress.plist -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/database/search/psi.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/database/search/psi.sqlite -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/database/search/psi.sqlite-shm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/database/search/psi.sqlite-shm -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/database/search/psi.sqlite-wal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/database/search/psi.sqlite-wal -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/database/search/searchProgress.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | insertAlbum 6 | 7 | insertAsset 8 | 9 | insertHighlight 10 | 11 | insertMemory 12 | 13 | insertMoment 14 | 15 | removeAlbum 16 | 17 | removeAsset 18 | 19 | removeHighlight 20 | 21 | removeMemory 22 | 23 | removeMoment 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/database/search/searchSystemInfo.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | embeddingVersion 6 | 1 7 | localeIdentifier 8 | en_US 9 | sceneTaxonomySHA 10 | 87914a047c69fbe8013fad2c70fa70c6c03b08b56190fe4054c880e6b9f57cc3 11 | searchIndexVersion 12 | 10 13 | 14 | 15 | -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/database/search/synonymsProcess.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/database/search/synonymsProcess.plist -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/database/search/zeroKeywords.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/database/search/zeroKeywords.data -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/originals/1/1CD1B172-C94B-4093-A303-EE24FE7EEF60.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/originals/1/1CD1B172-C94B-4093-A303-EE24FE7EEF60.jpeg -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/originals/3/3A71DE26-EDEF-41D3-86C1-E8328DFC9FA0.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/originals/3/3A71DE26-EDEF-41D3-86C1-E8328DFC9FA0.jpeg -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/originals/B/B6DB996D-8A0A-4983-AFBD-D206B7D38A23.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/originals/B/B6DB996D-8A0A-4983-AFBD-D206B7D38A23.jpeg -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/originals/E/EECD91FE-D716-48F2-A62C-A4D558ACD52E.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/originals/E/EECD91FE-D716-48F2-A62C-A4D558ACD52E.jpeg -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/originals/F/F8EFA39F-7D26-4DC2-82FE-CC9357F19F00.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/originals/F/F8EFA39F-7D26-4DC2-82FE-CC9357F19F00.jpeg -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/private/com.apple.Photos/appPrivateData.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CollapsedSidebarSectionIdentifiers 6 | 7 | ExpandedSidebarItemIdentifiers 8 | 9 | CE31E463-8BB9-43D8-84AF-52509C72864A/L0/020 10 | 9BC83BEA-7598-4846-BBD7-AB14BE771825/L0/020 11 | 3205FEEF-B22D-43D6-8D31-9A4D112B67E3/L0/020 12 | 1FB9BF4B-3CF5-45DE-B4E7-C92047341196/L0/020 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/private/com.apple.photoanalysisd/caches/graph/CLSBusinessCategoryCache.AOI.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/private/com.apple.photoanalysisd/caches/graph/CLSBusinessCategoryCache.AOI.sqlite -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/private/com.apple.photoanalysisd/caches/graph/CLSBusinessCategoryCache.AOI.sqlite-shm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/private/com.apple.photoanalysisd/caches/graph/CLSBusinessCategoryCache.AOI.sqlite-shm -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/private/com.apple.photoanalysisd/caches/graph/CLSBusinessCategoryCache.AOI.sqlite-wal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/private/com.apple.photoanalysisd/caches/graph/CLSBusinessCategoryCache.AOI.sqlite-wal -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/private/com.apple.photoanalysisd/caches/graph/CLSBusinessCategoryCache.Nature.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/private/com.apple.photoanalysisd/caches/graph/CLSBusinessCategoryCache.Nature.sqlite -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/private/com.apple.photoanalysisd/caches/graph/CLSBusinessCategoryCache.Nature.sqlite-shm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/private/com.apple.photoanalysisd/caches/graph/CLSBusinessCategoryCache.Nature.sqlite-shm -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/private/com.apple.photoanalysisd/caches/graph/CLSBusinessCategoryCache.Nature.sqlite-wal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/private/com.apple.photoanalysisd/caches/graph/CLSBusinessCategoryCache.Nature.sqlite-wal -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/private/com.apple.photoanalysisd/caches/graph/CLSBusinessCategoryCache.POI.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/private/com.apple.photoanalysisd/caches/graph/CLSBusinessCategoryCache.POI.sqlite -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/private/com.apple.photoanalysisd/caches/graph/CLSBusinessCategoryCache.POI.sqlite-shm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/private/com.apple.photoanalysisd/caches/graph/CLSBusinessCategoryCache.POI.sqlite-shm -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/private/com.apple.photoanalysisd/caches/graph/CLSBusinessCategoryCache.POI.sqlite-wal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/private/com.apple.photoanalysisd/caches/graph/CLSBusinessCategoryCache.POI.sqlite-wal -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/private/com.apple.photoanalysisd/caches/graph/CLSBusinessCategoryCache.ROI.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/private/com.apple.photoanalysisd/caches/graph/CLSBusinessCategoryCache.ROI.sqlite -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/private/com.apple.photoanalysisd/caches/graph/CLSBusinessCategoryCache.ROI.sqlite-shm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/private/com.apple.photoanalysisd/caches/graph/CLSBusinessCategoryCache.ROI.sqlite-shm -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/private/com.apple.photoanalysisd/caches/graph/CLSBusinessCategoryCache.ROI.sqlite-wal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/private/com.apple.photoanalysisd/caches/graph/CLSBusinessCategoryCache.ROI.sqlite-wal -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/private/com.apple.photoanalysisd/caches/graph/CLSContactCache.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/private/com.apple.photoanalysisd/caches/graph/CLSContactCache.sqlite -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/private/com.apple.photoanalysisd/caches/graph/CLSContactCache.sqlite-shm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/private/com.apple.photoanalysisd/caches/graph/CLSContactCache.sqlite-shm -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/private/com.apple.photoanalysisd/caches/graph/CLSContactCache.sqlite-wal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/private/com.apple.photoanalysisd/caches/graph/CLSContactCache.sqlite-wal -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/private/com.apple.photoanalysisd/caches/graph/CLSLocationCache.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/private/com.apple.photoanalysisd/caches/graph/CLSLocationCache.sqlite -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/private/com.apple.photoanalysisd/caches/graph/CLSLocationCache.sqlite-shm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/private/com.apple.photoanalysisd/caches/graph/CLSLocationCache.sqlite-shm -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/private/com.apple.photoanalysisd/caches/graph/CLSLocationCache.sqlite-wal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/private/com.apple.photoanalysisd/caches/graph/CLSLocationCache.sqlite-wal -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/private/com.apple.photoanalysisd/caches/graph/CLSPublicEventCache.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/private/com.apple.photoanalysisd/caches/graph/CLSPublicEventCache.sqlite -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/private/com.apple.photoanalysisd/caches/graph/CLSPublicEventCache.sqlite-shm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/private/com.apple.photoanalysisd/caches/graph/CLSPublicEventCache.sqlite-shm -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/private/com.apple.photoanalysisd/caches/graph/CLSPublicEventCache.sqlite-wal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/private/com.apple.photoanalysisd/caches/graph/CLSPublicEventCache.sqlite-wal -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/private/com.apple.photoanalysisd/caches/graph/PGCurationCache.sqlite.sqlite-shm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/private/com.apple.photoanalysisd/caches/graph/PGCurationCache.sqlite.sqlite-shm -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/private/com.apple.photoanalysisd/caches/graph/PGCurationCache.sqlite.sqlite-wal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/private/com.apple.photoanalysisd/caches/graph/PGCurationCache.sqlite.sqlite-wal -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/private/com.apple.photoanalysisd/caches/graph/PGSearchComputationCache.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/private/com.apple.photoanalysisd/caches/graph/PGSearchComputationCache.plist -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/private/com.apple.photoanalysisd/caches/graph/PGSharingFeatureExtractorRecords.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/private/com.apple.photoanalysisd/caches/graph/PGSharingFeatureExtractorRecords.plist -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/private/com.apple.photoanalysisd/caches/graph/PhotoAnalysisServicePreferences.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BackgroundHighlightCollection 6 | 2020-09-07T14:37:47Z 7 | BackgroundHighlightEnrichment 8 | 2020-09-07T14:37:47Z 9 | BackgroundJobAssetRevGeocode 10 | 2020-09-07T15:38:03Z 11 | BackgroundJobSearch 12 | 2020-09-07T14:37:47Z 13 | BackgroundPeopleSuggestion 14 | 2020-09-07T14:37:46Z 15 | BackgroundUserBehaviorProcessor 16 | 2020-09-07T14:37:47Z 17 | PhotoAnalysisGraphLastBackgroundGraphConsistencyUpdateJobDateKey 18 | 2020-09-07T15:32:45Z 19 | PhotoAnalysisGraphLastBackgroundGraphRebuildJobDate 20 | 2020-09-07T14:37:45Z 21 | PhotoAnalysisGraphLastBackgroundMemoryGenerationJobDate 22 | 2020-09-07T14:48:04Z 23 | SiriPortraitDonation 24 | 2020-09-07T14:37:47Z 25 | 26 | 27 | -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/private/com.apple.photoanalysisd/caches/graph/PhotosGraph/construction-photosgraph.kgdb-shm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/private/com.apple.photoanalysisd/caches/graph/PhotosGraph/construction-photosgraph.kgdb-shm -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/private/com.apple.photoanalysisd/caches/graph/PhotosGraph/construction-photosgraph.kgdb-wal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/private/com.apple.photoanalysisd/caches/graph/PhotosGraph/construction-photosgraph.kgdb-wal -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/private/com.apple.photoanalysisd/caches/graph/PhotosGraph/liveupdate-photosgraph.kgdb-shm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/private/com.apple.photoanalysisd/caches/graph/PhotosGraph/liveupdate-photosgraph.kgdb-shm -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/private/com.apple.photoanalysisd/caches/graph/PhotosGraph/liveupdate-photosgraph.kgdb-wal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/private/com.apple.photoanalysisd/caches/graph/PhotosGraph/liveupdate-photosgraph.kgdb-wal -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/private/com.apple.photoanalysisd/caches/graph/PhotosGraph/photosgraph-tmp.kgdb-shm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/private/com.apple.photoanalysisd/caches/graph/PhotosGraph/photosgraph-tmp.kgdb-shm -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/private/com.apple.photoanalysisd/caches/graph/PhotosGraph/photosgraph-tmp.kgdb-wal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/private/com.apple.photoanalysisd/caches/graph/PhotosGraph/photosgraph-tmp.kgdb-wal -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/private/com.apple.photoanalysisd/caches/graph/PhotosGraph/photosgraph.kgdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/private/com.apple.photoanalysisd/caches/graph/PhotosGraph/photosgraph.kgdb -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/private/com.apple.photoanalysisd/caches/graph/PhotosGraph/photosgraph.kgdb-shm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/private/com.apple.photoanalysisd/caches/graph/PhotosGraph/photosgraph.kgdb-shm -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/private/com.apple.photoanalysisd/caches/graph/PhotosGraph/photosgraph.kgdb-wal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/private/com.apple.photoanalysisd/caches/graph/PhotosGraph/photosgraph.kgdb-wal -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/private/com.apple.photoanalysisd/caches/graph/changetoken.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/private/com.apple.photoanalysisd/caches/graph/changetoken.plist -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/private/com.apple.photoanalysisd/caches/graph/revgeoprovider.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | revgeoprovider 6 | 7618 7 | 8 | 9 | -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/private/com.apple.photoanalysisd/caches/vision/42AA26AC-270D-463F-B24E-3C28297D2498.cmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/private/com.apple.photoanalysisd/caches/vision/42AA26AC-270D-463F-B24E-3C28297D2498.cmap -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/private/com.apple.photoanalysisd/caches/vision/517DD8B8-A25C-4AF7-8EF5-A521C61A45DC.cmap: -------------------------------------------------------------------------------- 1 | )42AA26AC-270D-463F-B24E-3C28297D2498.cmap -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/private/com.apple.photoanalysisd/caches/vision/AlgoFaceClusterCache.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/private/com.apple.photoanalysisd/caches/vision/AlgoFaceClusterCache.data -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/private/com.apple.photoanalysisd/caches/vision/PersonPromoter: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | NumberOfFacesProcessedOnLastRun 6 | 1 7 | ProcessedInQuiescentState 8 | 9 | Version 10 | 4 11 | 12 | 13 | -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/private/com.apple.photoanalysisd/caches/vision/PhotoAnalysisServicePreferences.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | LastContactClassificationKey 6 | 2020-09-07T14:48:28Z 7 | 8 | 9 | -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/private/com.apple.photoanalysisd/caches/vision/clustererState.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | PVClustererBringUpState 6 | 50 7 | 8 | 9 | -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/private/com.apple.photoanalysisd/caches/vision/faceWorkerState.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IncrementalPersonProcessingStage 6 | 0 7 | PersonBuilderLastMinimumFaceGroupSizeForCreatingMergeCandidates 8 | 15 9 | PersonBuilderMergeCandidatesEnabled 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/private/com.apple.photolibraryd/appPrivateData.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | PLLibraryServicesManager.LocaleIdentifier 6 | en_US 7 | 8 | 9 | -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/private/com.apple.photolibraryd/assetUUIDForPath.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 1/1CD1B172-C94B-4093-A303-EE24FE7EEF60.jpeg 6 | 1CD1B172-C94B-4093-A303-EE24FE7EEF60 7 | 3/3A71DE26-EDEF-41D3-86C1-E8328DFC9FA0.jpeg 8 | 3A71DE26-EDEF-41D3-86C1-E8328DFC9FA0 9 | B/B6DB996D-8A0A-4983-AFBD-D206B7D38A23.jpeg 10 | B6DB996D-8A0A-4983-AFBD-D206B7D38A23 11 | E/EECD91FE-D716-48F2-A62C-A4D558ACD52E.jpeg 12 | EECD91FE-D716-48F2-A62C-A4D558ACD52E 13 | F/F8EFA39F-7D26-4DC2-82FE-CC9357F19F00.jpeg 14 | F8EFA39F-7D26-4DC2-82FE-CC9357F19F00 15 | storeUUID 16 | 662FB267-F8D9-4A1D-8E67-7DC3A422E847 17 | 18 | 19 | -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/private/com.apple.photolibraryd/caches/CreateDatabase_20200907-072647-07:00: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/private/com.apple.photolibraryd/caches/CreateDatabase_20200907-072647-07:00 -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/private/com.apple.photolibraryd/caches/CreateDatabase_20200908-224932-07:00: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/private/com.apple.photolibraryd/caches/CreateDatabase_20200908-224932-07:00 -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/resources/derivatives/1/1CD1B172-C94B-4093-A303-EE24FE7EEF60_1_105_c.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/resources/derivatives/1/1CD1B172-C94B-4093-A303-EE24FE7EEF60_1_105_c.jpeg -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/resources/derivatives/B/B6DB996D-8A0A-4983-AFBD-D206B7D38A23_1_105_c.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/resources/derivatives/B/B6DB996D-8A0A-4983-AFBD-D206B7D38A23_1_105_c.jpeg -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/resources/derivatives/E/EECD91FE-D716-48F2-A62C-A4D558ACD52E_1_105_c.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/resources/derivatives/E/EECD91FE-D716-48F2-A62C-A4D558ACD52E_1_105_c.jpeg -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/resources/derivatives/F/F8EFA39F-7D26-4DC2-82FE-CC9357F19F00_1_105_c.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/resources/derivatives/F/F8EFA39F-7D26-4DC2-82FE-CC9357F19F00_1_105_c.jpeg -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/resources/derivatives/masters/1/1CD1B172-C94B-4093-A303-EE24FE7EEF60_4_5005_c.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/resources/derivatives/masters/1/1CD1B172-C94B-4093-A303-EE24FE7EEF60_4_5005_c.jpeg -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/resources/derivatives/masters/3/3A71DE26-EDEF-41D3-86C1-E8328DFC9FA0_4_5005_c.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/resources/derivatives/masters/3/3A71DE26-EDEF-41D3-86C1-E8328DFC9FA0_4_5005_c.jpeg -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/resources/derivatives/masters/B/B6DB996D-8A0A-4983-AFBD-D206B7D38A23_4_5005_c.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/resources/derivatives/masters/B/B6DB996D-8A0A-4983-AFBD-D206B7D38A23_4_5005_c.jpeg -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/resources/derivatives/masters/E/EECD91FE-D716-48F2-A62C-A4D558ACD52E_4_5005_c.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/resources/derivatives/masters/E/EECD91FE-D716-48F2-A62C-A4D558ACD52E_4_5005_c.jpeg -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/resources/derivatives/masters/F/F8EFA39F-7D26-4DC2-82FE-CC9357F19F00_4_5005_c.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/resources/derivatives/masters/F/F8EFA39F-7D26-4DC2-82FE-CC9357F19F00_4_5005_c.jpeg -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/resources/derivatives/thumbs/3305.ithmb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/resources/derivatives/thumbs/3305.ithmb -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/resources/derivatives/thumbs/4031.ithmb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/resources/derivatives/thumbs/4031.ithmb -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/resources/derivatives/thumbs/4132.ithmb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/resources/derivatives/thumbs/4132.ithmb -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/resources/derivatives/thumbs/thumbnailConfiguration: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | PLThumbnailManagerThumbnailFormatKey 6 | 5005 7 | PLThumbnailManagerVersionKey 8 | 28 9 | 10 | 11 | -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/resources/journals/Album-change.plj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/resources/journals/Album-change.plj -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/resources/journals/Album-snapshot.plj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/resources/journals/Album-snapshot.plj -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/resources/journals/Album.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | currentPayloadVersion 6 | 1 7 | snapshotDate 8 | 2020-09-07T14:26:48Z 9 | snapshotPayloadVersion 10 | 1 11 | 12 | 13 | -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/resources/journals/Asset-change.plj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/resources/journals/Asset-change.plj -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/resources/journals/Asset-snapshot.plj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/resources/journals/Asset-snapshot.plj -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/resources/journals/Asset.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | currentPayloadVersion 6 | 10 7 | snapshotDate 8 | 2020-09-07T14:26:48Z 9 | snapshotPayloadVersion 10 | 10 11 | 12 | 13 | -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/resources/journals/DeferredRebuildFace-snapshot.plj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/resources/journals/DeferredRebuildFace-snapshot.plj -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/resources/journals/DeferredRebuildFace.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | currentPayloadVersion 6 | 1 7 | snapshotDate 8 | 2020-09-07T14:26:48Z 9 | snapshotPayloadVersion 10 | 1 11 | 12 | 13 | -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/resources/journals/DetectedFace-snapshot.plj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/resources/journals/DetectedFace-snapshot.plj -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/resources/journals/DetectedFace.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | currentPayloadVersion 6 | 1 7 | snapshotDate 8 | 2020-09-07T14:26:48Z 9 | snapshotPayloadVersion 10 | 1 11 | 12 | 13 | -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/resources/journals/FetchingAlbum-snapshot.plj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/resources/journals/FetchingAlbum-snapshot.plj -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/resources/journals/FetchingAlbum.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | currentPayloadVersion 6 | 2 7 | snapshotDate 8 | 2020-09-07T14:26:48Z 9 | snapshotPayloadVersion 10 | 2 11 | 12 | 13 | -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/resources/journals/FileSystemVolume-snapshot.plj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/resources/journals/FileSystemVolume-snapshot.plj -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/resources/journals/FileSystemVolume.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | currentPayloadVersion 6 | 1 7 | snapshotDate 8 | 2020-09-07T14:26:48Z 9 | snapshotPayloadVersion 10 | 1 11 | 12 | 13 | -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/resources/journals/Folder-change.plj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/resources/journals/Folder-change.plj -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/resources/journals/Folder-snapshot.plj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/resources/journals/Folder-snapshot.plj -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/resources/journals/Folder.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | currentPayloadVersion 6 | 1 7 | snapshotDate 8 | 2020-09-07T14:26:48Z 9 | snapshotPayloadVersion 10 | 1 11 | 12 | 13 | -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/resources/journals/HistoryToken.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/resources/journals/HistoryToken.plist -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/resources/journals/ImportSession-change.plj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/resources/journals/ImportSession-change.plj -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/resources/journals/ImportSession-snapshot.plj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/resources/journals/ImportSession-snapshot.plj -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/resources/journals/ImportSession.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | currentPayloadVersion 6 | 1 7 | snapshotDate 8 | 2020-09-07T14:26:48Z 9 | snapshotPayloadVersion 10 | 1 11 | 12 | 13 | -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/resources/journals/Keyword-change.plj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/resources/journals/Keyword-change.plj -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/resources/journals/Keyword-snapshot.plj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/resources/journals/Keyword-snapshot.plj -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/resources/journals/Keyword.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | currentPayloadVersion 6 | 1 7 | snapshotDate 8 | 2020-09-07T14:26:48Z 9 | snapshotPayloadVersion 10 | 1 11 | 12 | 13 | -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/resources/journals/Memory-snapshot.plj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/resources/journals/Memory-snapshot.plj -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/resources/journals/Memory.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | currentPayloadVersion 6 | 1 7 | snapshotDate 8 | 2020-09-07T14:26:48Z 9 | snapshotPayloadVersion 10 | 1 11 | 12 | 13 | -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/resources/journals/Person-snapshot.plj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/resources/journals/Person-snapshot.plj -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/resources/journals/Person.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | currentPayloadVersion 6 | 1 7 | snapshotDate 8 | 2020-09-07T14:26:48Z 9 | snapshotPayloadVersion 10 | 1 11 | 12 | 13 | -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/resources/journals/ProjectAlbum-snapshot.plj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/resources/journals/ProjectAlbum-snapshot.plj -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/resources/journals/ProjectAlbum.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | currentPayloadVersion 6 | 1 7 | snapshotDate 8 | 2020-09-07T14:26:48Z 9 | snapshotPayloadVersion 10 | 1 11 | 12 | 13 | -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/resources/renders/3/3A71DE26-EDEF-41D3-86C1-E8328DFC9FA0_1_201_a.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-10.15.7.photoslibrary/resources/renders/3/3A71DE26-EDEF-41D3-86C1-E8328DFC9FA0_1_201_a.jpeg -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1-Single-Photo.photoslibrary/database/DataModelVersion.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | LibrarySchemaVersion 6 | 5001 7 | MetaSchemaVersion 8 | 3 9 | 10 | 11 | -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1-Single-Photo.photoslibrary/database/Photos.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-13.0.1-Single-Photo.photoslibrary/database/Photos.sqlite -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1-Single-Photo.photoslibrary/database/Photos.sqlite-shm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-13.0.1-Single-Photo.photoslibrary/database/Photos.sqlite-shm -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1-Single-Photo.photoslibrary/database/Photos.sqlite-wal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-13.0.1-Single-Photo.photoslibrary/database/Photos.sqlite-wal -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1-Single-Photo.photoslibrary/database/metaSchema.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-13.0.1-Single-Photo.photoslibrary/database/metaSchema.db -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1-Single-Photo.photoslibrary/database/photos.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-13.0.1-Single-Photo.photoslibrary/database/photos.db -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1-Single-Photo.photoslibrary/database/search/graphDataProgress.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-13.0.1-Single-Photo.photoslibrary/database/search/graphDataProgress.plist -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1-Single-Photo.photoslibrary/database/search/psi.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-13.0.1-Single-Photo.photoslibrary/database/search/psi.sqlite -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1-Single-Photo.photoslibrary/database/search/psi.sqlite-shm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-13.0.1-Single-Photo.photoslibrary/database/search/psi.sqlite-shm -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1-Single-Photo.photoslibrary/database/search/psi.sqlite-wal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-13.0.1-Single-Photo.photoslibrary/database/search/psi.sqlite-wal -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1-Single-Photo.photoslibrary/database/search/searchProgress.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | insertAlbum 6 | 7 | insertAsset 8 | 9 | insertHighlight 10 | 11 | insertMemory 12 | 13 | insertMoment 14 | 15 | removeAlbum 16 | 17 | removeAsset 18 | 19 | removeHighlight 20 | 21 | removeMemory 22 | 23 | removeMoment 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1-Single-Photo.photoslibrary/database/search/searchSystemInfo.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | embeddingVersion 6 | 1 7 | localeIdentifier 8 | en_US 9 | sceneTaxonomySHA 10 | 87914a047c69fbe8013fad2c70fa70c6c03b08b56190fe4054c880e6b9f57cc3 11 | searchIndexVersion 12 | 10 13 | 14 | 15 | -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1-Single-Photo.photoslibrary/database/search/synonymsProcess.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-13.0.1-Single-Photo.photoslibrary/database/search/synonymsProcess.plist -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1-Single-Photo.photoslibrary/originals/9/9B96223D-4B1A-4BE8-ABD9-47476BEBFFAB.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-13.0.1-Single-Photo.photoslibrary/originals/9/9B96223D-4B1A-4BE8-ABD9-47476BEBFFAB.jpeg -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1-Single-Photo.photoslibrary/private/com.apple.Photos/appPrivateData.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CollapsedSidebarSectionIdentifiers 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1-Single-Photo.photoslibrary/private/com.apple.mediaanalysisd/caches/vision/mediaAnalysisVersionState.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | FaceProcessingInternalVersion 6 | 11 7 | 8 | 9 | -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1-Single-Photo.photoslibrary/private/com.apple.photoanalysisd/caches/graph/CLSBusinessCategoryCache.AOI.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-13.0.1-Single-Photo.photoslibrary/private/com.apple.photoanalysisd/caches/graph/CLSBusinessCategoryCache.AOI.sqlite -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1-Single-Photo.photoslibrary/private/com.apple.photoanalysisd/caches/graph/CLSBusinessCategoryCache.AOI.sqlite-shm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-13.0.1-Single-Photo.photoslibrary/private/com.apple.photoanalysisd/caches/graph/CLSBusinessCategoryCache.AOI.sqlite-shm -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1-Single-Photo.photoslibrary/private/com.apple.photoanalysisd/caches/graph/CLSBusinessCategoryCache.AOI.sqlite-wal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-13.0.1-Single-Photo.photoslibrary/private/com.apple.photoanalysisd/caches/graph/CLSBusinessCategoryCache.AOI.sqlite-wal -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1-Single-Photo.photoslibrary/private/com.apple.photoanalysisd/caches/graph/CLSBusinessCategoryCache.Nature.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-13.0.1-Single-Photo.photoslibrary/private/com.apple.photoanalysisd/caches/graph/CLSBusinessCategoryCache.Nature.sqlite -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1-Single-Photo.photoslibrary/private/com.apple.photoanalysisd/caches/graph/CLSBusinessCategoryCache.Nature.sqlite-shm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-13.0.1-Single-Photo.photoslibrary/private/com.apple.photoanalysisd/caches/graph/CLSBusinessCategoryCache.Nature.sqlite-shm -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1-Single-Photo.photoslibrary/private/com.apple.photoanalysisd/caches/graph/CLSBusinessCategoryCache.Nature.sqlite-wal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-13.0.1-Single-Photo.photoslibrary/private/com.apple.photoanalysisd/caches/graph/CLSBusinessCategoryCache.Nature.sqlite-wal -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1-Single-Photo.photoslibrary/private/com.apple.photoanalysisd/caches/graph/CLSBusinessCategoryCache.POI.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-13.0.1-Single-Photo.photoslibrary/private/com.apple.photoanalysisd/caches/graph/CLSBusinessCategoryCache.POI.sqlite -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1-Single-Photo.photoslibrary/private/com.apple.photoanalysisd/caches/graph/CLSBusinessCategoryCache.POI.sqlite-shm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-13.0.1-Single-Photo.photoslibrary/private/com.apple.photoanalysisd/caches/graph/CLSBusinessCategoryCache.POI.sqlite-shm -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1-Single-Photo.photoslibrary/private/com.apple.photoanalysisd/caches/graph/CLSBusinessCategoryCache.POI.sqlite-wal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-13.0.1-Single-Photo.photoslibrary/private/com.apple.photoanalysisd/caches/graph/CLSBusinessCategoryCache.POI.sqlite-wal -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1-Single-Photo.photoslibrary/private/com.apple.photoanalysisd/caches/graph/CLSBusinessCategoryCache.ROI.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-13.0.1-Single-Photo.photoslibrary/private/com.apple.photoanalysisd/caches/graph/CLSBusinessCategoryCache.ROI.sqlite -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1-Single-Photo.photoslibrary/private/com.apple.photoanalysisd/caches/graph/CLSBusinessCategoryCache.ROI.sqlite-shm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-13.0.1-Single-Photo.photoslibrary/private/com.apple.photoanalysisd/caches/graph/CLSBusinessCategoryCache.ROI.sqlite-shm -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1-Single-Photo.photoslibrary/private/com.apple.photoanalysisd/caches/graph/CLSBusinessCategoryCache.ROI.sqlite-wal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-13.0.1-Single-Photo.photoslibrary/private/com.apple.photoanalysisd/caches/graph/CLSBusinessCategoryCache.ROI.sqlite-wal -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1-Single-Photo.photoslibrary/private/com.apple.photoanalysisd/caches/graph/CLSLocationCache.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-13.0.1-Single-Photo.photoslibrary/private/com.apple.photoanalysisd/caches/graph/CLSLocationCache.sqlite -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1-Single-Photo.photoslibrary/private/com.apple.photoanalysisd/caches/graph/CLSLocationCache.sqlite-shm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-13.0.1-Single-Photo.photoslibrary/private/com.apple.photoanalysisd/caches/graph/CLSLocationCache.sqlite-shm -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1-Single-Photo.photoslibrary/private/com.apple.photoanalysisd/caches/graph/CLSLocationCache.sqlite-wal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-13.0.1-Single-Photo.photoslibrary/private/com.apple.photoanalysisd/caches/graph/CLSLocationCache.sqlite-wal -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1-Single-Photo.photoslibrary/private/com.apple.photoanalysisd/caches/graph/CLSPublicEventCache.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-13.0.1-Single-Photo.photoslibrary/private/com.apple.photoanalysisd/caches/graph/CLSPublicEventCache.sqlite -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1-Single-Photo.photoslibrary/private/com.apple.photoanalysisd/caches/graph/CLSPublicEventCache.sqlite-shm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-13.0.1-Single-Photo.photoslibrary/private/com.apple.photoanalysisd/caches/graph/CLSPublicEventCache.sqlite-shm -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1-Single-Photo.photoslibrary/private/com.apple.photoanalysisd/caches/graph/CLSPublicEventCache.sqlite-wal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-13.0.1-Single-Photo.photoslibrary/private/com.apple.photoanalysisd/caches/graph/CLSPublicEventCache.sqlite-wal -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1-Single-Photo.photoslibrary/private/com.apple.photoanalysisd/caches/graph/PGCurationCache.sqlite.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-13.0.1-Single-Photo.photoslibrary/private/com.apple.photoanalysisd/caches/graph/PGCurationCache.sqlite.sqlite -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1-Single-Photo.photoslibrary/private/com.apple.photoanalysisd/caches/graph/PGCurationCache.sqlite.sqlite-shm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-13.0.1-Single-Photo.photoslibrary/private/com.apple.photoanalysisd/caches/graph/PGCurationCache.sqlite.sqlite-shm -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1-Single-Photo.photoslibrary/private/com.apple.photoanalysisd/caches/graph/PGCurationCache.sqlite.sqlite-wal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-13.0.1-Single-Photo.photoslibrary/private/com.apple.photoanalysisd/caches/graph/PGCurationCache.sqlite.sqlite-wal -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1-Single-Photo.photoslibrary/private/com.apple.photolibraryd/appPrivateData.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | PLLibraryServicesManager.LocaleIdentifier 6 | en_US 7 | 8 | 9 | -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1-Single-Photo.photoslibrary/private/com.apple.photolibraryd/caches/CreateDatabase_20201114-071310-08:00: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-13.0.1-Single-Photo.photoslibrary/private/com.apple.photolibraryd/caches/CreateDatabase_20201114-071310-08:00 -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1-Single-Photo.photoslibrary/resources/derivatives/9/9B96223D-4B1A-4BE8-ABD9-47476BEBFFAB_1_105_c.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-13.0.1-Single-Photo.photoslibrary/resources/derivatives/9/9B96223D-4B1A-4BE8-ABD9-47476BEBFFAB_1_105_c.jpeg -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1-Single-Photo.photoslibrary/resources/derivatives/masters/9/9B96223D-4B1A-4BE8-ABD9-47476BEBFFAB_4_5005_c.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-13.0.1-Single-Photo.photoslibrary/resources/derivatives/masters/9/9B96223D-4B1A-4BE8-ABD9-47476BEBFFAB_4_5005_c.jpeg -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1-Single-Photo.photoslibrary/resources/derivatives/thumbs/3305.ithmb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-13.0.1-Single-Photo.photoslibrary/resources/derivatives/thumbs/3305.ithmb -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1-Single-Photo.photoslibrary/resources/derivatives/thumbs/4031.ithmb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-13.0.1-Single-Photo.photoslibrary/resources/derivatives/thumbs/4031.ithmb -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1-Single-Photo.photoslibrary/resources/derivatives/thumbs/4132.ithmb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-13.0.1-Single-Photo.photoslibrary/resources/derivatives/thumbs/4132.ithmb -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1-Single-Photo.photoslibrary/resources/derivatives/thumbs/thumbnailConfiguration: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | PLThumbnailManagerThumbnailFormatKey 6 | 5005 7 | PLThumbnailManagerVersionKey 8 | 28 9 | 10 | 11 | -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1-Single-Photo.photoslibrary/resources/journals/Album-snapshot.plj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-13.0.1-Single-Photo.photoslibrary/resources/journals/Album-snapshot.plj -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1-Single-Photo.photoslibrary/resources/journals/Album.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | currentPayloadVersion 6 | 1 7 | snapshotDate 8 | 2020-11-14T15:13:11Z 9 | snapshotPayloadVersion 10 | 1 11 | 12 | 13 | -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1-Single-Photo.photoslibrary/resources/journals/Asset-change.plj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-13.0.1-Single-Photo.photoslibrary/resources/journals/Asset-change.plj -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1-Single-Photo.photoslibrary/resources/journals/Asset-snapshot.plj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-13.0.1-Single-Photo.photoslibrary/resources/journals/Asset-snapshot.plj -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1-Single-Photo.photoslibrary/resources/journals/Asset.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | currentPayloadVersion 6 | 103 7 | snapshotDate 8 | 2020-11-14T15:13:11Z 9 | snapshotPayloadVersion 10 | 10 11 | 12 | 13 | -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1-Single-Photo.photoslibrary/resources/journals/DeferredRebuildFace-snapshot.plj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-13.0.1-Single-Photo.photoslibrary/resources/journals/DeferredRebuildFace-snapshot.plj -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1-Single-Photo.photoslibrary/resources/journals/DeferredRebuildFace.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | currentPayloadVersion 6 | 1 7 | snapshotDate 8 | 2020-11-14T15:13:11Z 9 | snapshotPayloadVersion 10 | 1 11 | 12 | 13 | -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1-Single-Photo.photoslibrary/resources/journals/DetectedFace-snapshot.plj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-13.0.1-Single-Photo.photoslibrary/resources/journals/DetectedFace-snapshot.plj -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1-Single-Photo.photoslibrary/resources/journals/DetectedFace.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | currentPayloadVersion 6 | 1 7 | snapshotDate 8 | 2020-11-14T15:13:11Z 9 | snapshotPayloadVersion 10 | 1 11 | 12 | 13 | -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1-Single-Photo.photoslibrary/resources/journals/FetchingAlbum-snapshot.plj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-13.0.1-Single-Photo.photoslibrary/resources/journals/FetchingAlbum-snapshot.plj -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1-Single-Photo.photoslibrary/resources/journals/FetchingAlbum.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | currentPayloadVersion 6 | 2 7 | snapshotDate 8 | 2020-11-14T15:13:11Z 9 | snapshotPayloadVersion 10 | 2 11 | 12 | 13 | -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1-Single-Photo.photoslibrary/resources/journals/FileSystemVolume-snapshot.plj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-13.0.1-Single-Photo.photoslibrary/resources/journals/FileSystemVolume-snapshot.plj -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1-Single-Photo.photoslibrary/resources/journals/FileSystemVolume.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | currentPayloadVersion 6 | 1 7 | snapshotDate 8 | 2020-11-14T15:13:11Z 9 | snapshotPayloadVersion 10 | 1 11 | 12 | 13 | -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1-Single-Photo.photoslibrary/resources/journals/Folder-change.plj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-13.0.1-Single-Photo.photoslibrary/resources/journals/Folder-change.plj -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1-Single-Photo.photoslibrary/resources/journals/Folder-snapshot.plj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-13.0.1-Single-Photo.photoslibrary/resources/journals/Folder-snapshot.plj -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1-Single-Photo.photoslibrary/resources/journals/Folder.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | currentPayloadVersion 6 | 1 7 | snapshotDate 8 | 2020-11-14T15:13:11Z 9 | snapshotPayloadVersion 10 | 1 11 | 12 | 13 | -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1-Single-Photo.photoslibrary/resources/journals/HistoryToken.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-13.0.1-Single-Photo.photoslibrary/resources/journals/HistoryToken.plist -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1-Single-Photo.photoslibrary/resources/journals/ImportSession-change.plj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-13.0.1-Single-Photo.photoslibrary/resources/journals/ImportSession-change.plj -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1-Single-Photo.photoslibrary/resources/journals/ImportSession-snapshot.plj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-13.0.1-Single-Photo.photoslibrary/resources/journals/ImportSession-snapshot.plj -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1-Single-Photo.photoslibrary/resources/journals/ImportSession.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | currentPayloadVersion 6 | 1 7 | snapshotDate 8 | 2020-11-14T15:13:11Z 9 | snapshotPayloadVersion 10 | 1 11 | 12 | 13 | -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1-Single-Photo.photoslibrary/resources/journals/Keyword-snapshot.plj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-13.0.1-Single-Photo.photoslibrary/resources/journals/Keyword-snapshot.plj -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1-Single-Photo.photoslibrary/resources/journals/Keyword.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | currentPayloadVersion 6 | 1 7 | snapshotDate 8 | 2020-11-14T15:13:11Z 9 | snapshotPayloadVersion 10 | 1 11 | 12 | 13 | -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1-Single-Photo.photoslibrary/resources/journals/Memory-snapshot.plj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-13.0.1-Single-Photo.photoslibrary/resources/journals/Memory-snapshot.plj -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1-Single-Photo.photoslibrary/resources/journals/Memory.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | currentPayloadVersion 6 | 1 7 | snapshotDate 8 | 2020-11-14T15:13:11Z 9 | snapshotPayloadVersion 10 | 1 11 | 12 | 13 | -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1-Single-Photo.photoslibrary/resources/journals/MigrationHistory-change.plj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-13.0.1-Single-Photo.photoslibrary/resources/journals/MigrationHistory-change.plj -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1-Single-Photo.photoslibrary/resources/journals/MigrationHistory-snapshot.plj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-13.0.1-Single-Photo.photoslibrary/resources/journals/MigrationHistory-snapshot.plj -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1-Single-Photo.photoslibrary/resources/journals/MigrationHistory.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | currentPayloadVersion 6 | 1 7 | snapshotDate 8 | 2022-12-05T06:11:25Z 9 | snapshotPayloadVersion 10 | 1 11 | 12 | 13 | -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1-Single-Photo.photoslibrary/resources/journals/Person-snapshot.plj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-13.0.1-Single-Photo.photoslibrary/resources/journals/Person-snapshot.plj -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1-Single-Photo.photoslibrary/resources/journals/Person.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | currentPayloadVersion 6 | 1 7 | snapshotDate 8 | 2020-11-14T15:13:11Z 9 | snapshotPayloadVersion 10 | 1 11 | 12 | 13 | -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1-Single-Photo.photoslibrary/resources/journals/ProjectAlbum-snapshot.plj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-13.0.1-Single-Photo.photoslibrary/resources/journals/ProjectAlbum-snapshot.plj -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1-Single-Photo.photoslibrary/resources/journals/ProjectAlbum.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | currentPayloadVersion 6 | 1 7 | snapshotDate 8 | 2020-11-14T15:13:10Z 9 | snapshotPayloadVersion 10 | 1 11 | 12 | 13 | -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/database/DataModelVersion.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | LibrarySchemaVersion 6 | 5001 7 | MetaSchemaVersion 8 | 3 9 | 10 | 11 | -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/database/Photos.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/database/Photos.sqlite -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/database/Photos.sqlite-shm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/database/Photos.sqlite-shm -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/database/Photos.sqlite-wal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/database/Photos.sqlite-wal -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/database/metaSchema.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/database/metaSchema.db -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/database/photos.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/database/photos.db -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/database/rebuildHistory: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 2020-09-08 22:49:32.269-07:00 6 | 10 7 | 8 | 9 | -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/database/search/graphDataProgress.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/database/search/graphDataProgress.plist -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/database/search/psi.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/database/search/psi.sqlite -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/database/search/psi.sqlite-shm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/database/search/psi.sqlite-shm -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/database/search/psi.sqlite-wal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/database/search/psi.sqlite-wal -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/database/search/searchProgress.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | insertAlbum 6 | 7 | insertAsset 8 | 9 | insertHighlight 10 | 11 | insertMemory 12 | 13 | insertMoment 14 | 15 | removeAlbum 16 | 17 | removeAsset 18 | 19 | removeHighlight 20 | 21 | removeMemory 22 | 23 | removeMoment 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/database/search/searchSystemInfo.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | embeddingVersion 6 | 1 7 | localeIdentifier 8 | en_US 9 | sceneTaxonomySHA 10 | 87914a047c69fbe8013fad2c70fa70c6c03b08b56190fe4054c880e6b9f57cc3 11 | searchIndexVersion 12 | 10 13 | 14 | 15 | -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/database/search/synonymsProcess.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/database/search/synonymsProcess.plist -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/database/search/zeroKeywords.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/database/search/zeroKeywords.data -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/originals/1/1CD1B172-C94B-4093-A303-EE24FE7EEF60.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/originals/1/1CD1B172-C94B-4093-A303-EE24FE7EEF60.jpeg -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/originals/3/3A71DE26-EDEF-41D3-86C1-E8328DFC9FA0.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/originals/3/3A71DE26-EDEF-41D3-86C1-E8328DFC9FA0.jpeg -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/originals/B/B6DB996D-8A0A-4983-AFBD-D206B7D38A23.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/originals/B/B6DB996D-8A0A-4983-AFBD-D206B7D38A23.jpeg -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/originals/E/EECD91FE-D716-48F2-A62C-A4D558ACD52E.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/originals/E/EECD91FE-D716-48F2-A62C-A4D558ACD52E.jpeg -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/originals/F/F8EFA39F-7D26-4DC2-82FE-CC9357F19F00.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/originals/F/F8EFA39F-7D26-4DC2-82FE-CC9357F19F00.jpeg -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/private/com.apple.Photos/appPrivateData.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CollapsedSidebarSectionIdentifiers 6 | 7 | ExpandedSidebarItemIdentifiers 8 | 9 | F2E6B48D-3678-4694-B32A-DE4FCDDBB49C/L0/020 10 | CE31E463-8BB9-43D8-84AF-52509C72864A/L0/020 11 | 9BC83BEA-7598-4846-BBD7-AB14BE771825/L0/020 12 | 3205FEEF-B22D-43D6-8D31-9A4D112B67E3/L0/020 13 | 1FB9BF4B-3CF5-45DE-B4E7-C92047341196/L0/020 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/private/com.apple.photoanalysisd/caches/graph/CLSBusinessCategoryCache.AOI.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/private/com.apple.photoanalysisd/caches/graph/CLSBusinessCategoryCache.AOI.sqlite -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/private/com.apple.photoanalysisd/caches/graph/CLSBusinessCategoryCache.AOI.sqlite-shm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/private/com.apple.photoanalysisd/caches/graph/CLSBusinessCategoryCache.AOI.sqlite-shm -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/private/com.apple.photoanalysisd/caches/graph/CLSBusinessCategoryCache.AOI.sqlite-wal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/private/com.apple.photoanalysisd/caches/graph/CLSBusinessCategoryCache.AOI.sqlite-wal -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/private/com.apple.photoanalysisd/caches/graph/CLSBusinessCategoryCache.Nature.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/private/com.apple.photoanalysisd/caches/graph/CLSBusinessCategoryCache.Nature.sqlite -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/private/com.apple.photoanalysisd/caches/graph/CLSBusinessCategoryCache.Nature.sqlite-shm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/private/com.apple.photoanalysisd/caches/graph/CLSBusinessCategoryCache.Nature.sqlite-shm -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/private/com.apple.photoanalysisd/caches/graph/CLSBusinessCategoryCache.Nature.sqlite-wal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/private/com.apple.photoanalysisd/caches/graph/CLSBusinessCategoryCache.Nature.sqlite-wal -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/private/com.apple.photoanalysisd/caches/graph/CLSBusinessCategoryCache.POI.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/private/com.apple.photoanalysisd/caches/graph/CLSBusinessCategoryCache.POI.sqlite -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/private/com.apple.photoanalysisd/caches/graph/CLSBusinessCategoryCache.POI.sqlite-shm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/private/com.apple.photoanalysisd/caches/graph/CLSBusinessCategoryCache.POI.sqlite-shm -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/private/com.apple.photoanalysisd/caches/graph/CLSBusinessCategoryCache.POI.sqlite-wal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/private/com.apple.photoanalysisd/caches/graph/CLSBusinessCategoryCache.POI.sqlite-wal -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/private/com.apple.photoanalysisd/caches/graph/CLSBusinessCategoryCache.ROI.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/private/com.apple.photoanalysisd/caches/graph/CLSBusinessCategoryCache.ROI.sqlite -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/private/com.apple.photoanalysisd/caches/graph/CLSBusinessCategoryCache.ROI.sqlite-shm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/private/com.apple.photoanalysisd/caches/graph/CLSBusinessCategoryCache.ROI.sqlite-shm -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/private/com.apple.photoanalysisd/caches/graph/CLSBusinessCategoryCache.ROI.sqlite-wal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/private/com.apple.photoanalysisd/caches/graph/CLSBusinessCategoryCache.ROI.sqlite-wal -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/private/com.apple.photoanalysisd/caches/graph/CLSContactCache.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/private/com.apple.photoanalysisd/caches/graph/CLSContactCache.sqlite -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/private/com.apple.photoanalysisd/caches/graph/CLSContactCache.sqlite-shm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/private/com.apple.photoanalysisd/caches/graph/CLSContactCache.sqlite-shm -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/private/com.apple.photoanalysisd/caches/graph/CLSContactCache.sqlite-wal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/private/com.apple.photoanalysisd/caches/graph/CLSContactCache.sqlite-wal -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/private/com.apple.photoanalysisd/caches/graph/CLSLocationCache.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/private/com.apple.photoanalysisd/caches/graph/CLSLocationCache.sqlite -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/private/com.apple.photoanalysisd/caches/graph/CLSLocationCache.sqlite-shm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/private/com.apple.photoanalysisd/caches/graph/CLSLocationCache.sqlite-shm -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/private/com.apple.photoanalysisd/caches/graph/CLSLocationCache.sqlite-wal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/private/com.apple.photoanalysisd/caches/graph/CLSLocationCache.sqlite-wal -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/private/com.apple.photoanalysisd/caches/graph/CLSPublicEventCache.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/private/com.apple.photoanalysisd/caches/graph/CLSPublicEventCache.sqlite -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/private/com.apple.photoanalysisd/caches/graph/CLSPublicEventCache.sqlite-shm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/private/com.apple.photoanalysisd/caches/graph/CLSPublicEventCache.sqlite-shm -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/private/com.apple.photoanalysisd/caches/graph/CLSPublicEventCache.sqlite-wal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/private/com.apple.photoanalysisd/caches/graph/CLSPublicEventCache.sqlite-wal -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/private/com.apple.photoanalysisd/caches/graph/PGCurationCache.sqlite.sqlite-shm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/private/com.apple.photoanalysisd/caches/graph/PGCurationCache.sqlite.sqlite-shm -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/private/com.apple.photoanalysisd/caches/graph/PGCurationCache.sqlite.sqlite-wal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/private/com.apple.photoanalysisd/caches/graph/PGCurationCache.sqlite.sqlite-wal -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/private/com.apple.photoanalysisd/caches/graph/PGSearchComputationCache.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/private/com.apple.photoanalysisd/caches/graph/PGSearchComputationCache.plist -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/private/com.apple.photoanalysisd/caches/graph/PGSharingFeatureExtractorRecords.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/private/com.apple.photoanalysisd/caches/graph/PGSharingFeatureExtractorRecords.plist -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/private/com.apple.photoanalysisd/caches/graph/PhotoAnalysisServicePreferences.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BackgroundHighlightCollection 6 | 2020-09-07T14:37:47Z 7 | BackgroundHighlightEnrichment 8 | 2020-09-07T14:37:47Z 9 | BackgroundJobAssetRevGeocode 10 | 2020-09-07T15:38:03Z 11 | BackgroundJobSearch 12 | 2020-09-07T14:37:47Z 13 | BackgroundPeopleSuggestion 14 | 2020-09-07T14:37:46Z 15 | BackgroundUserBehaviorProcessor 16 | 2020-09-07T14:37:47Z 17 | PhotoAnalysisGraphLastBackgroundGraphConsistencyUpdateJobDateKey 18 | 2020-09-07T15:32:45Z 19 | PhotoAnalysisGraphLastBackgroundGraphRebuildJobDate 20 | 2020-09-07T14:37:45Z 21 | PhotoAnalysisGraphLastBackgroundMemoryGenerationJobDate 22 | 2020-09-07T14:48:04Z 23 | SiriPortraitDonation 24 | 2020-09-07T14:37:47Z 25 | 26 | 27 | -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/private/com.apple.photoanalysisd/caches/graph/PhotosGraph/construction-photosgraph.kgdb-shm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/private/com.apple.photoanalysisd/caches/graph/PhotosGraph/construction-photosgraph.kgdb-shm -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/private/com.apple.photoanalysisd/caches/graph/PhotosGraph/construction-photosgraph.kgdb-wal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/private/com.apple.photoanalysisd/caches/graph/PhotosGraph/construction-photosgraph.kgdb-wal -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/private/com.apple.photoanalysisd/caches/graph/PhotosGraph/liveupdate-photosgraph.kgdb-shm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/private/com.apple.photoanalysisd/caches/graph/PhotosGraph/liveupdate-photosgraph.kgdb-shm -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/private/com.apple.photoanalysisd/caches/graph/PhotosGraph/liveupdate-photosgraph.kgdb-wal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/private/com.apple.photoanalysisd/caches/graph/PhotosGraph/liveupdate-photosgraph.kgdb-wal -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/private/com.apple.photoanalysisd/caches/graph/PhotosGraph/photosgraph-tmp.kgdb-shm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/private/com.apple.photoanalysisd/caches/graph/PhotosGraph/photosgraph-tmp.kgdb-shm -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/private/com.apple.photoanalysisd/caches/graph/PhotosGraph/photosgraph-tmp.kgdb-wal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/private/com.apple.photoanalysisd/caches/graph/PhotosGraph/photosgraph-tmp.kgdb-wal -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/private/com.apple.photoanalysisd/caches/graph/PhotosGraph/photosgraph.kgdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/private/com.apple.photoanalysisd/caches/graph/PhotosGraph/photosgraph.kgdb -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/private/com.apple.photoanalysisd/caches/graph/PhotosGraph/photosgraph.kgdb-shm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/private/com.apple.photoanalysisd/caches/graph/PhotosGraph/photosgraph.kgdb-shm -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/private/com.apple.photoanalysisd/caches/graph/PhotosGraph/photosgraph.kgdb-wal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/private/com.apple.photoanalysisd/caches/graph/PhotosGraph/photosgraph.kgdb-wal -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/private/com.apple.photoanalysisd/caches/graph/changetoken.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/private/com.apple.photoanalysisd/caches/graph/changetoken.plist -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/private/com.apple.photoanalysisd/caches/graph/revgeoprovider.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | revgeoprovider 6 | 7618 7 | 8 | 9 | -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/private/com.apple.photoanalysisd/caches/vision/42AA26AC-270D-463F-B24E-3C28297D2498.cmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/private/com.apple.photoanalysisd/caches/vision/42AA26AC-270D-463F-B24E-3C28297D2498.cmap -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/private/com.apple.photoanalysisd/caches/vision/517DD8B8-A25C-4AF7-8EF5-A521C61A45DC.cmap: -------------------------------------------------------------------------------- 1 | )42AA26AC-270D-463F-B24E-3C28297D2498.cmap -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/private/com.apple.photoanalysisd/caches/vision/AlgoFaceClusterCache.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/private/com.apple.photoanalysisd/caches/vision/AlgoFaceClusterCache.data -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/private/com.apple.photoanalysisd/caches/vision/PersonPromoter: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | NumberOfFacesProcessedOnLastRun 6 | 1 7 | ProcessedInQuiescentState 8 | 9 | Version 10 | 4 11 | 12 | 13 | -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/private/com.apple.photoanalysisd/caches/vision/PhotoAnalysisServicePreferences.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | LastContactClassificationKey 6 | 2020-09-07T14:48:28Z 7 | 8 | 9 | -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/private/com.apple.photoanalysisd/caches/vision/clustererState.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | PVClustererBringUpState 6 | 50 7 | 8 | 9 | -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/private/com.apple.photoanalysisd/caches/vision/faceWorkerState.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IncrementalPersonProcessingStage 6 | 0 7 | PersonBuilderLastMinimumFaceGroupSizeForCreatingMergeCandidates 8 | 15 9 | PersonBuilderMergeCandidatesEnabled 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/private/com.apple.photolibraryd/appPrivateData.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | PLLibraryServicesManager.LocaleIdentifier 6 | en_US 7 | 8 | 9 | -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/private/com.apple.photolibraryd/assetUUIDForPath.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 1/1CD1B172-C94B-4093-A303-EE24FE7EEF60.jpeg 6 | 1CD1B172-C94B-4093-A303-EE24FE7EEF60 7 | 3/3A71DE26-EDEF-41D3-86C1-E8328DFC9FA0.jpeg 8 | 3A71DE26-EDEF-41D3-86C1-E8328DFC9FA0 9 | B/B6DB996D-8A0A-4983-AFBD-D206B7D38A23.jpeg 10 | B6DB996D-8A0A-4983-AFBD-D206B7D38A23 11 | E/EECD91FE-D716-48F2-A62C-A4D558ACD52E.jpeg 12 | EECD91FE-D716-48F2-A62C-A4D558ACD52E 13 | F/F8EFA39F-7D26-4DC2-82FE-CC9357F19F00.jpeg 14 | F8EFA39F-7D26-4DC2-82FE-CC9357F19F00 15 | storeUUID 16 | 662FB267-F8D9-4A1D-8E67-7DC3A422E847 17 | 18 | 19 | -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/private/com.apple.photolibraryd/caches/CreateDatabase_20200907-072647-07:00: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/private/com.apple.photolibraryd/caches/CreateDatabase_20200907-072647-07:00 -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/private/com.apple.photolibraryd/caches/CreateDatabase_20200908-224932-07:00: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/private/com.apple.photolibraryd/caches/CreateDatabase_20200908-224932-07:00 -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/resources/derivatives/1/1CD1B172-C94B-4093-A303-EE24FE7EEF60_1_105_c.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/resources/derivatives/1/1CD1B172-C94B-4093-A303-EE24FE7EEF60_1_105_c.jpeg -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/resources/derivatives/B/B6DB996D-8A0A-4983-AFBD-D206B7D38A23_1_105_c.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/resources/derivatives/B/B6DB996D-8A0A-4983-AFBD-D206B7D38A23_1_105_c.jpeg -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/resources/derivatives/E/EECD91FE-D716-48F2-A62C-A4D558ACD52E_1_105_c.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/resources/derivatives/E/EECD91FE-D716-48F2-A62C-A4D558ACD52E_1_105_c.jpeg -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/resources/derivatives/F/F8EFA39F-7D26-4DC2-82FE-CC9357F19F00_1_105_c.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/resources/derivatives/F/F8EFA39F-7D26-4DC2-82FE-CC9357F19F00_1_105_c.jpeg -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/resources/derivatives/masters/1/1CD1B172-C94B-4093-A303-EE24FE7EEF60_4_5005_c.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/resources/derivatives/masters/1/1CD1B172-C94B-4093-A303-EE24FE7EEF60_4_5005_c.jpeg -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/resources/derivatives/masters/3/3A71DE26-EDEF-41D3-86C1-E8328DFC9FA0_4_5005_c.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/resources/derivatives/masters/3/3A71DE26-EDEF-41D3-86C1-E8328DFC9FA0_4_5005_c.jpeg -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/resources/derivatives/masters/B/B6DB996D-8A0A-4983-AFBD-D206B7D38A23_4_5005_c.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/resources/derivatives/masters/B/B6DB996D-8A0A-4983-AFBD-D206B7D38A23_4_5005_c.jpeg -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/resources/derivatives/masters/E/EECD91FE-D716-48F2-A62C-A4D558ACD52E_4_5005_c.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/resources/derivatives/masters/E/EECD91FE-D716-48F2-A62C-A4D558ACD52E_4_5005_c.jpeg -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/resources/derivatives/masters/F/F8EFA39F-7D26-4DC2-82FE-CC9357F19F00_4_5005_c.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/resources/derivatives/masters/F/F8EFA39F-7D26-4DC2-82FE-CC9357F19F00_4_5005_c.jpeg -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/resources/derivatives/thumbs/3305.ithmb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/resources/derivatives/thumbs/3305.ithmb -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/resources/derivatives/thumbs/4031.ithmb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/resources/derivatives/thumbs/4031.ithmb -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/resources/derivatives/thumbs/4132.ithmb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/resources/derivatives/thumbs/4132.ithmb -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/resources/derivatives/thumbs/thumbnailConfiguration: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | PLThumbnailManagerThumbnailFormatKey 6 | 5005 7 | PLThumbnailManagerVersionKey 8 | 28 9 | 10 | 11 | -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/resources/journals/Album-change.plj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/resources/journals/Album-change.plj -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/resources/journals/Album-snapshot.plj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/resources/journals/Album-snapshot.plj -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/resources/journals/Album.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | currentPayloadVersion 6 | 1 7 | snapshotDate 8 | 2020-09-07T14:26:48Z 9 | snapshotPayloadVersion 10 | 1 11 | 12 | 13 | -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/resources/journals/Asset-change.plj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/resources/journals/Asset-change.plj -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/resources/journals/Asset-snapshot.plj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/resources/journals/Asset-snapshot.plj -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/resources/journals/Asset.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | currentPayloadVersion 6 | 103 7 | snapshotDate 8 | 2020-09-07T14:26:48Z 9 | snapshotPayloadVersion 10 | 10 11 | 12 | 13 | -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/resources/journals/DeferredRebuildFace-snapshot.plj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/resources/journals/DeferredRebuildFace-snapshot.plj -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/resources/journals/DeferredRebuildFace.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | currentPayloadVersion 6 | 1 7 | snapshotDate 8 | 2020-09-07T14:26:48Z 9 | snapshotPayloadVersion 10 | 1 11 | 12 | 13 | -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/resources/journals/DetectedFace-snapshot.plj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/resources/journals/DetectedFace-snapshot.plj -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/resources/journals/DetectedFace.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | currentPayloadVersion 6 | 1 7 | snapshotDate 8 | 2020-09-07T14:26:48Z 9 | snapshotPayloadVersion 10 | 1 11 | 12 | 13 | -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/resources/journals/FetchingAlbum-snapshot.plj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/resources/journals/FetchingAlbum-snapshot.plj -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/resources/journals/FetchingAlbum.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | currentPayloadVersion 6 | 2 7 | snapshotDate 8 | 2020-09-07T14:26:48Z 9 | snapshotPayloadVersion 10 | 2 11 | 12 | 13 | -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/resources/journals/FileSystemVolume-snapshot.plj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/resources/journals/FileSystemVolume-snapshot.plj -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/resources/journals/FileSystemVolume.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | currentPayloadVersion 6 | 1 7 | snapshotDate 8 | 2020-09-07T14:26:48Z 9 | snapshotPayloadVersion 10 | 1 11 | 12 | 13 | -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/resources/journals/Folder-change.plj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/resources/journals/Folder-change.plj -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/resources/journals/Folder-snapshot.plj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/resources/journals/Folder-snapshot.plj -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/resources/journals/Folder.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | currentPayloadVersion 6 | 1 7 | snapshotDate 8 | 2020-09-07T14:26:48Z 9 | snapshotPayloadVersion 10 | 1 11 | 12 | 13 | -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/resources/journals/HistoryToken.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/resources/journals/HistoryToken.plist -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/resources/journals/ImportSession-change.plj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/resources/journals/ImportSession-change.plj -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/resources/journals/ImportSession-snapshot.plj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/resources/journals/ImportSession-snapshot.plj -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/resources/journals/ImportSession.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | currentPayloadVersion 6 | 1 7 | snapshotDate 8 | 2020-09-07T14:26:48Z 9 | snapshotPayloadVersion 10 | 1 11 | 12 | 13 | -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/resources/journals/Keyword-change.plj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/resources/journals/Keyword-change.plj -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/resources/journals/Keyword-snapshot.plj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/resources/journals/Keyword-snapshot.plj -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/resources/journals/Keyword.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | currentPayloadVersion 6 | 1 7 | snapshotDate 8 | 2020-09-07T14:26:48Z 9 | snapshotPayloadVersion 10 | 1 11 | 12 | 13 | -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/resources/journals/Memory-snapshot.plj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/resources/journals/Memory-snapshot.plj -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/resources/journals/Memory.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | currentPayloadVersion 6 | 1 7 | snapshotDate 8 | 2020-09-07T14:26:48Z 9 | snapshotPayloadVersion 10 | 1 11 | 12 | 13 | -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/resources/journals/MigrationHistory-change.plj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/resources/journals/MigrationHistory-change.plj -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/resources/journals/MigrationHistory-snapshot.plj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/resources/journals/MigrationHistory-snapshot.plj -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/resources/journals/MigrationHistory.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | currentPayloadVersion 6 | 1 7 | snapshotDate 8 | 2022-12-05T06:11:17Z 9 | snapshotPayloadVersion 10 | 1 11 | 12 | 13 | -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/resources/journals/Person-snapshot.plj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/resources/journals/Person-snapshot.plj -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/resources/journals/Person.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | currentPayloadVersion 6 | 1 7 | snapshotDate 8 | 2020-09-07T14:26:48Z 9 | snapshotPayloadVersion 10 | 1 11 | 12 | 13 | -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/resources/journals/ProjectAlbum-snapshot.plj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/resources/journals/ProjectAlbum-snapshot.plj -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/resources/journals/ProjectAlbum.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | currentPayloadVersion 6 | 1 7 | snapshotDate 8 | 2020-09-07T14:26:48Z 9 | snapshotPayloadVersion 10 | 1 11 | 12 | 13 | -------------------------------------------------------------------------------- /tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/resources/renders/3/3A71DE26-EDEF-41D3-86C1-E8328DFC9FA0_1_201_a.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RhetTbull/PhotoScript/0501c48d9e56a1bdd840abf8166d3cd9da120953/tests/test_libraries/Test-PhotoScript-13.0.1.photoslibrary/resources/renders/3/3A71DE26-EDEF-41D3-86C1-E8328DFC9FA0_1_201_a.jpeg -------------------------------------------------------------------------------- /tests/utils.py: -------------------------------------------------------------------------------- 1 | """Utility functions for tests""" 2 | 3 | from __future__ import annotations 4 | 5 | import pathlib 6 | 7 | 8 | def stemset(filepaths: list[str]) -> set[str]: 9 | """ "Return set of filename stems of filepaths""" 10 | # return set instead of list for easier comparison regardless of order 11 | return {pathlib.Path(filepath).stem for filepath in filepaths} 12 | --------------------------------------------------------------------------------