Update README.md

just some typos fixes
- packge/package
- the copy then read can take => the copy read then can take
This commit is contained in:
Jean-Yves Stervinou
2020-04-11 11:34:17 +02:00
committed by GitHub
parent cde56e9d13
commit 1aa3838c38

View File

@@ -1174,7 +1174,7 @@ Testing against "real world" Photos libraries would be especially helpful. If y
## Implementation Notes ## Implementation Notes
This packge works by creating a copy of the sqlite3 database that photos uses to store data about the photos library. the class photosdb then queries this database to extract information about the photos such as persons (faces identified in the photos), albums, keywords, etc. If your library is large, the database can be hundreds of MB in size and the copy then read can take many 10s of seconds to complete. Once copied, the entire database is processed and an in-memory data structure is created meaning all subsequent accesses of the PhotosDB object occur much more quickly. This package works by creating a copy of the sqlite3 database that photos uses to store data about the photos library. the class photosdb then queries this database to extract information about the photos such as persons (faces identified in the photos), albums, keywords, etc. If your library is large, the database can be hundreds of MB in size and the copy read then can take many 10s of seconds to complete. Once copied, the entire database is processed and an in-memory data structure is created meaning all subsequent accesses of the PhotosDB object occur much more quickly.
If apple changes the database format this will likely break. If apple changes the database format this will likely break.