|
SmugFind
Search for albums by querying metadata with Python expressions.
IntroductionSmugFind provides a simple means for querying SmugMug albums and returning metadata fields. DetailsSome examples: To list all the possible fields available in queries and responses: $ smugfind -l | sort (u'Backprinting', None) (u'CanRank', None) (u'Category', (u'id', u'Name')) ... (u'X2Larges', None) (u'X3Larges', None) (u'XLarges', None) (u'id', None) To find the titles of all the public albums without square thumbnails: $ smugfind -f Title -p "Public and not SquareThumbs" | sort
[('Title', u"Chinese New Year's Parade 2008")]
[('Title', u'Avalanche Awareness')]
[('Title', u'Battle of Port Gamble')]
[('Title', u'Beautiful Day Ride')]To find all share groups: $ smugfind -s
([('ShareKey', u'000'), ('ShareGroupID', 12345), ('ShareName', u'SomeGroup')], [(u'Family', u'Foo', u'Bar')])
([('ShareKey', u'000'), ('ShareGroupID', 12345), ('ShareName', u'SomeGroup')], [(u'Family', u'Foo', u'Baz')])
|
► Sign in to add a comment