Quote:
Originally Posted by sona
I'm having trouble to run the program on my Mac
python .ereader2html.pyWane.pdbName/FTFLM/tst "My own name" "12345678"
|
Suppose a hypothetical python script, e2h, (nothing to do with DRM stripping) requires 4 arguments, then I would suggest:
Code:
python ./e2h.py ebook.pdb ebook 'My Name' '12345678'
Use single quotes, because some strings can get changed inside double quotes. For simplicity, I suggest the directory name (ebook) not include "/" (i.e. is just a simple subdirectory). The "./" in ./e2h.py guarantees that the local e2h.py is being used, although a simple e2h.py would probably also work.