Updated doc strings

This commit is contained in:
Rhet Turnbull
2019-12-21 08:12:34 -08:00
parent b794e226e3
commit 4ac9c1a7a8
3 changed files with 15 additions and 0 deletions

View File

@@ -1,3 +1,7 @@
"""
Constants used by osxphotos
"""
# which Photos library database versions have been tested
# Photos 2.0 (10.12.6) == 2622
# Photos 3.0 (10.13.6) == 3301

View File

@@ -1,3 +1,9 @@
"""
PhotoInfo class
Represents a single photo in the Photos library and provides access to the photo's attributes
PhotosDB.photos() returns a list of PhotoInfo objects
"""
import json
import logging
import os.path

View File

@@ -1,3 +1,8 @@
"""
PhotosDB class
Processes a Photos.app library database to extract information about photos
"""
import logging
import os.path
import pathlib