This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/python | |
| """ | |
| [ ] List out if there are images which have been missed. (ie, image was there, but no json file) | |
| [ ] Put the images in various directories. | |
| [ ] Add EXIF tags to each of the photos. | |
| """ | |
| import json | |
| import os | |
| import sys |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "users": [ | |
| { | |
| "_id": "user1", | |
| "email": "user1@example.com", | |
| "name": "User One", | |
| "gender": "male", | |
| "friends": [ | |
| { | |
| "_id": "user2", |
OlderNewer