View Single Post
Old 01-23-2012, 11:32 PM   #16
Iņigo
Guru
Iņigo did not drink the Kool Aid.Iņigo did not drink the Kool Aid.Iņigo did not drink the Kool Aid.Iņigo did not drink the Kool Aid.Iņigo did not drink the Kool Aid.Iņigo did not drink the Kool Aid.Iņigo did not drink the Kool Aid.Iņigo did not drink the Kool Aid.Iņigo did not drink the Kool Aid.Iņigo did not drink the Kool Aid.Iņigo did not drink the Kool Aid.
 
Posts: 730
Karma: 72743
Join Date: Feb 2008
Location: Here or there
Device: iRex iLiad, iRex DR800S. K4NT. Kobo Aura, Aura One, Libra 2.
Hi Mackx,

I quick note as I will comment deeper in another message.

In the apps "python" launchers in version 3a you write "import appcalc.py". That's not correct python, it should be "import appcalc", without the extension.
You use the syntax "import module.submodule" to import some submodules from a big package, as in "import books.epub", where you have a module books with different submodules:
Code:
python26/
    lib/
        site-packages/
            books/
                __init.py__
                epub.py
                pdf.py
                ...
Anyway, good work.

Last edited by Iņigo; 01-23-2012 at 11:35 PM.
Iņigo is offline   Reply With Quote