GooglePhotosStorage
GooglePhotosStorage copied to clipboard
Nothing happens
$ python photos.py ENG.pdf
$ ls *.png
ls: cannot access '*.png': No such file or directory
Am I using this incorrectly? I cannot make the script do anything, no matter what I type.
Have you tried a txt file?
Just. Still doesn't do anything.
This code is pretty old and not great, but if you're determined to make it work:
Running photos.py directly does nothing, instead you need to import it as a library and call either getImages or getMessage. For example:
import photos
photos.getImages("ENG.pdf")
and
import photos
photos.getMessage("ENG.pdf")