How to handle '-' in the 'from' part in a "from import" statement?

DL Neil PythonList at DancesWithMice.info
Mon Oct 7 23:01:55 EDT 2019


On 8/10/19 3:45 PM, jfong at ms4.hinet.net wrote:
> For example:
> from my-dir import test
> 
> I know it can be solved by renaming, but any alternative?


The manual is your friend:
- import
- importlib

(the latter allows modules to be identified by strings)

However, Pythons has naming rules. If you try to get around them, sooner 
or later you'll 'forget' and trip yourself up. Recommend your first idea!
-- 
Regards =dn



More information about the Python-list mailing list