vote up 6 vote down star
2

I mean, can I create them dynamically?

flag

52% accept rate

2 Answers

vote up 7 vote down check

Yes:

>>> import types
>>> m = types.ModuleType("mymod")
>>> m
<module 'mymod' (built-in)>
link|flag
Ah. That's nice. – interstar Sep 24 at 2:34
vote up 4 vote down

You can create them dynamically, with the imp.new_module method.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.