Dynamic/runtime code introspection/compilation
- From: "Thomas W" <thomas.weholt@xxxxxxxxx>
- Date: 28 Nov 2006 04:35:23 -0800
Maybe a stupid subject, but this is what I want to do :
I got some python code stored in a string:
somecode = """
from somemodule import ISomeInterface
class Foo(ISomeInterface):
param1 = ...
param2 = ....
"""
and I want to compile that code so that I can use the Foo-class and
check what class it extends, in this case ISomeInterface etc. I've
tried eval, codeop etc. but it doesn't work. Something like this would
be nice :
from somemodule import ISomeInteface
d = compile(sourcecode)
myfoo = d.Foo()
print ISomeInterface in myfoo.__bases__
Any hints?
.
- Follow-Ups:
- Re: Dynamic/runtime code introspection/compilation
- From: Leo Kislov
- Re: Dynamic/runtime code introspection/compilation
- From: Fredrik Lundh
- Re: Dynamic/runtime code introspection/compilation
- Prev by Date: Re: Modifying every alternate element of a sequence
- Next by Date: Re: Accessing file metadata on windows XP
- Previous by thread: os.walk return hex excapes
- Next by thread: Re: Dynamic/runtime code introspection/compilation
- Index(es):
Relevant Pages
|