克隆模块并对副本进行更改
是否可以复制模块,然后对副本进行更改?换句话说,我可以继承一个模块,然后覆盖或修改它的部分内容吗?
Is it possible to copy a module, and then make changes to the copy? To phrase another way, can I inherit from a module, and then override or modify parts of it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的。
您可以使用
module
中的内容或覆盖脚本中的内容。您还可以执行此操作来创建“派生”模块。
将此称为“module_2”。
哪个进口一切。然后,您可以使用
module
中的内容或覆盖这个新模块“module_2”中的内容。然后其他脚本可以执行
并获取由 module_2 中的覆盖修改的模块中的所有内容。
Yes.
You can use stuff from
module
or override stuff in your script.You can also do this to create a "derived" module.
Call this "module_2".
Which imports everything. You can then use stuff from
module
or override stuff in this new module, "module_2".Other scripts can then do
And get all the stuff from module modified by the overrides in module_2.
Python 模块的命名空间是可写的。考虑:
您可以在导入后修改
CONST
的值:但是,只能导入模块的单个实例,因此无论如何都无法创建克隆并继续使用原始模块。如果您不需要访问原始模块,那么创建包装器模块并覆盖您想要更改的任何内容是相当简单的。
需要注意的一件事是,这样的代码不会按您的预期工作:
这实际上会在
clone
的命名空间中分配CONST
,从contrived 导入的函数
将继续引用contrive
命名空间中的CONST
:在这种情况下,您可以执行以下操作:
The namespace of a Python module is writable. Consider:
You can modify the value of
CONST
after it's been imported:However, only a single instance of a module can be imported so there is not anyway to create a clone and continue to use the original module. If you don't need access to the original module, then it's fairly straight-forward to create a wrapper module and override whatever you want to change.
One thing to look out for is that code like this will not work as you expect:
This will actually assign
CONST
inclone
's namespace, functions imported fromcontrived
will continue to reference theCONST
incontrive
's namespace:In this case you could do something like this: