Cleaned up utils

This commit is contained in:
Rhet Turnbull
2021-01-15 13:52:35 -08:00
parent 08bc8a9723
commit f662495c46

View File

@@ -1,20 +0,0 @@
""" Generate test data for test_faceinfo.py
This outputs a list of dictionaries that are passed to the test methods for testing
You must verify the data output is correct (e.g. matches the photos) before adding it to the test
"""
import sys
import osxphotos
photosdb = osxphotos.PhotosDB()
face_photos = [p for p in photosdb.photos() if p.face_info]
faces = []
for p in face_photos:
print(f"processing photo {p.uuid}", file=sys.stderr)
face_data = {p.uuid: {}}
for f in p.face_info:
face_data[p.uuid][f.uuid] = f.asdict()
faces.append(face_data)
print(faces)