First version of an archive auditing tool for BDRC
- Mac - bdrc-audit01 (zip file)
- Windows - coming soon
- Linux - coming soon
- count images in archive/images folders in folders such as: /Documents/W3G012/archive/01/image01.jpg
- open item with a double click
- save search result as a table in Excel-csv format
- Select folder to audit
- type archive, images, or archive, images
- change the folder level to see the content of child folders
", ": use a comma followed by a space to separate filter keywords
archive, images
...will match both archive and images
"*": * stands for any character or string of characters
arch*
... will match archive, architecture and archery
"?": ? stands for one or no character
image?
...will match both image and images
- order files by name/size
- audit number of files per folder
- audit folder/file names
- check that the image number matches the number in the biblio-sheet
- audit biblio-sheets
- Pillow integration
- audit image metadata
- generate archive and web bundles
- sync images to the server when ready
To build the project from source, get PyInstaller on your machine and use the following command:
pyinstaller -w -F bdrc-audit.py --icon=rc/icon-windowed.icns
In order to support retina display on Mac, locate the Info.plist directory in the bdrc-audit.app bundle and add the following string/key pair at the end of the list:
<string>NSHighResolutionCapable</string>
<key>True</key>