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:
↧