GooglePhotosStorage icon indicating copy to clipboard operation
GooglePhotosStorage copied to clipboard

Nothing happens

Open KenSharp opened this issue 8 years ago • 3 comments

$ 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.

KenSharp avatar Nov 24 '17 10:11 KenSharp

Have you tried a txt file?

ajayyy avatar Nov 24 '17 13:11 ajayyy

Just. Still doesn't do anything.

KenSharp avatar Nov 24 '17 14:11 KenSharp

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")

ddworken avatar Nov 26 '17 03:11 ddworken