Is it only possible if I rename the file? Or is there a __module__ variable to the file to define what's its name?
|
|
|||||
|
|
|
Yes, you should rename the file. Best would be after you have done that to remove the |
||
|
|
|
|
Every class has an If it is possible, it would probably involve using setattr to insert the methods or class into the desired module, although you run the risk of making your code very confusing to your future peers. Your best bet is to rename the file. |
||
|
|
|
|
Where would you like to have this So, you have to rename the file, then remove the |
||
|
|
|
|
If you really want to import the file 'oldname.py' with the statement 'import newname', there is a trick that makes it possible: Import the module somewhere with the old name, then inject it into
Usage:
Now you can everywhere your module with |
||
|
|
|
You can change the name used for a module when importing by using as:
|
||
|
|
|
|
When you do
or even
Useful eg. for writing DB code.
And then to switch eg. |
||
|
|
