Skip to content

Instantly share code, notes, and snippets.

@dizballanze
Last active August 29, 2015 14:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dizballanze/f5fe7bd955dad4bf0911 to your computer and use it in GitHub Desktop.
Save dizballanze/f5fe7bd955dad4bf0911 to your computer and use it in GitHub Desktop.
$ cat my.py
import Lib.csv2html as csv2html
print csv2html.csv2html.__doc__
$ python my.py
csv 2 html convertation
$ rm Lib/__init__*
$ python my.py
Traceback (most recent call last):
File "my.py", line 1, in <module>
import Lib.csv2html as csv2html
ImportError: No module named Lib.csv2html
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment