Quantcast
Channel: Koopman.ME » Python
Viewing all articles
Browse latest Browse all 3

How to import python files with hyphens

$
0
0
Not a good idea to name python files with hyphens. If you can, rename. Use underscores, not hyphens. Sometimes it’s not feasible to rename and you just want to import. Can’t use “from some-package import some_method”. Instead you load the whole file as a named object, like this:

Viewing all articles
Browse latest Browse all 3

Trending Articles