0
votes
2answers
10 views

Dynamically instantiate object of the python class similar to PHP new $classname?

How to instantiated a class if its name is given as a string variable (i.e. dynamically instantiate object of the class). Or alternatively, how does the following PHP 5.3+ code <?php namespace ...
1
vote
1answer
22 views

Accessing field of Protobuf message of unknown type in Python

Let's say I have 2 Protobuf-Messages, A and B. Their overall structure is similar, but not identical. So we moved the shared stuff out into a separate message we called Common. This works beautifully. ...
18
votes
2answers
466 views

Dynamically rethrowing self-defined C++ exceptions as Python exceptions using SWIG

Situation I want to create a Python language binding for a C++ API using SWIG. Some of the API functions may throw exceptions. The C++ application has a hierarchy of self-defined exceptions, like ...
0
votes
3answers
98 views

Calling constructor without assignment; instantiate later

Let's say I have this code: models.py : class Square: def __init__(self, name, value): self._name = name self._value = value mymodule.py : from models import Square Square('hello', ...
-1
votes
2answers
40 views

Set object attributes to every variable used in a method in python

How can I set (almost) all local variables in an object's method to be attributes of that object? class Obj(object): def do_something(self): localstr = 'hello world' localnum = 1 ...
1
vote
1answer
237 views

Secure credential storage in python

The attack One possible threat model, in the context of credential storage, is an attacker which has the ability to : inspect any (user) process memory read local (user) files AFAIK, the ...
0
votes
1answer
45 views

How to get the names of attributes when classes in Python use __slots__?

When I define a new-style class in Python, I can get the defined attributes (names and values) by using the __dict__-Attribute, that contains a dictionary of the things. I'd like to use slots in my ...
0
votes
1answer
76 views

Python Decorators on Class Level Variables as Metadata for Reflection?

I have a python class (actually its a Google App Engine model) which looks like this: class MyClass(ParentClass): variable_one = PropertyClass(...) variable_two = PropertyClass(...) I ...
3
votes
1answer
37 views

change the superclass of object in Python

I was reading about reflection in Python and came across this statement: Structural Reflection. It is possible to modify the set of methods a class offers and the set of field an object has. We ...
0
votes
1answer
80 views

Is it possible to see variable scope of just called function in Python?

I have rather strange question about function variable scope and return. Is there any way to inspect the scope of called function in the caller after called function returns value? Use case is ...
0
votes
1answer
73 views

Python Introspection: Defining dynamic class methods during runtime

I'm trying to create a unit test, that checks that every function in mymodule has its own TestCase instance. To reduce boiler-plate code and manual effort I wanted to use introspection/reflection to ...
0
votes
1answer
77 views

Model by name in SQLAlchemy

Is it possible to get an ORM-mapped model class from name? Definitely SQLAlchemy has this functionality built-in somewhere. For instance in declarative style you can write things like blahs = ...
0
votes
3answers
59 views

Python: Invoke class & class methods by name with using eval

class Test: @staticmethod def call(): return def callMethod1(): return def callMethod2(): return var methodName='Method1' I want to invoke callMethod1 or callMethod2 in call() ...
5
votes
5answers
115 views

When does reflection stop being worth it?

I just refactored a script with about twelve, nearly identical, one-liners to one that uses reflection to dynamically bind static methods to a class. The refactored version can be found here. And ...
0
votes
2answers
67 views

Is there a way to detect the order of a module's globals() in python?

Some globals are used in a python module: ImFirst = 1 ImSecond = 2 AndImThird = "three" globals() gives a dict of those names and values, but unfortunately it is not an OrderedDict ...
0
votes
1answer
62 views

SqlAlchemy: Inspect/Reflect information about relationship

I have a sqlalchemy class R which implements a m:n relation between two other classes A and B. So R has two integer columns source_id and target_id which hold the ids of the referenced instances. And ...
1
vote
2answers
125 views

Can't get source code for a method “declared” through exec using inspect in Python

The following code throws an exception: import inspect def work(): my_function_code = """def print_hello(): print('Hi!') """ ...
1
vote
2answers
255 views

Passing arguments to functions in Python using inspect

I have a Python script which creates a dictionary of its own functions and I'd like it to execute them by reading in a function name and arguments using YARP (knowledge of YARP is irrelevant to this ...
2
votes
2answers
157 views

Python: How to get information from a variable [closed]

Ok, this is maybe a difficult question. And I don't want you to do all the hard work for me. I'm just tring to get some good advices and points where I should start. I'm writing a couple of python ...
0
votes
3answers
278 views

Python: Remove member from instance

Im adding callable objects to a instance of a class A at runtime using the __dict__ property. At some point though I want to remove all added objects from my instance. I thought about storing the ...
1
vote
0answers
44 views

Function decorator(Python) like behaviour in PHP [duplicate]

Possible Duplicate: PHP equivalent for a python decorator? I'd like to achieve the same behaviour in PHP, that I can do with Python decorators. So instead of writing my class like this: ...
2
votes
2answers
100 views

Java reflection: create a instance using params from a treemap like python

I am a python dev , now i want to create a Java instance using params from a treemap just like create a python instance which params from a dict...i try to do it through java reflection. but i can't ...
0
votes
3answers
145 views

How to (re-) arrange this python code without breaking sqlalchemy relevant dependencies?

I have a little problem regarding "arranging of code, which depends on each other" when setting an sqlalchemy mapping to a sqlite database in python. The goal is to write a script, whcih satisfies ...
0
votes
2answers
78 views

“Analyse” the Python language to dissect a Scons build script?

I'm thinking about trying to convert a Scons (Python) script to another build system but was wondering if there was a Python-analysis library available in order to 'interrogate' the Scons/Python ...
2
votes
1answer
233 views

How to copy a member function of another class into myclass in python?

I have a utility class from which I want to use one of the member function in another class. I don't want to inherit from that class. I just want to re-use the code from one of the member function of ...
2
votes
6answers
487 views

Dynamically reload a class definition in Python

I've written an IRC bot using Twisted and now I've gotten to the point where I want to be able to dynamically reload functionality. In my main program, I do from bots.google import GoogleBot and I've ...
0
votes
1answer
56 views

Way to alter behavior based on caller using property getter without reflection or making caller a member in Python

So I'm writing a test framework for a large website, and am currently working on modeling the UI driver. I have a UI Session that abstracts a number of emulators and drivers for browsers and mobile ...
0
votes
1answer
106 views

Python: Using reflection to invoke class members from the class name

If suppose i have a class name as a string, how can i use reflection to invoke its static member known before-hand? Some like this: someInspectionMechanism("FooClass").staticMethod()
3
votes
2answers
312 views

How to access properties of Python super classes e.g. via __class__.__dict__?

How can I get all property names of a python class including those properties inherited from super classes? class A(object): def getX(self): return "X" x = property(getX) a = A() a.x 'X' ...
-2
votes
2answers
235 views

python reflection to find referencing object

If I have the following code class One: scope = 'first_scope' class Two: scope = 'second_scope' contained_object = One() Is it possible for me given a reference to contained_object to ...
1
vote
2answers
78 views

Get a list of the names of all functions in a Python module in the order they appear in the file?

The globals function returns a dictionary that contains the functions in a module, and the dir function returns a list that contains the names of the functions in a module, but they are in ...
1
vote
1answer
98 views

Getting function containing a line in Python

I wish to do some kind of reflection thing where given a line number and a module, I get back the name of the function in that module containing that line. Is this possible in Python?
3
votes
3answers
326 views

Is there a way to inspect incoming args from within __getattr__ or to somehow otherwise redirect a call based upon incoming arguments?

Some background: We have a system for transactions where we devide the flow based upon the country the transaction bills to. We have a logging table that exists in 2 instances, one DB logging ...
3
votes
1answer
73 views

Attribute added with setattr not showing up in help()

I've got a class that I'm adding a help-function to with setattr. The function is a properly created instancemethod and works like a charm. import new def add_helpfunc(obj): def helpfunc(self): ...
7
votes
2answers
632 views

How to create a Python class decorator that is able to wrap instance, class and static methods?

I'd like to create a Python class decorator (*) that would be able to seamlessly wrap all method types the class might have: instance, class and static. This is the code I have for now, with the ...
3
votes
4answers
484 views

Model Creation by SQLAlchemy database reflection

I am currently working on a pyramid system that uses sqlalchemy. This system will include a model (let's call it Base) that is stored in a database table. This model should be extensible by the user ...
2
votes
1answer
62 views

Python: detect redefinition?

I'm looking for a way to somehow detect if a python function or class is being redefined or even only if it is defined twice and one definition erases the other. Can this be done with reflection ...
3
votes
2answers
644 views

How to get arguments list of a built-in Python class constructor?

I'm trying to use the inspect module, however it seems I can't use it on a built-in (native?) class, or else I misunderstood. I'm using Python 2.7 and tried with Python 3.2. This is working: ...
2
votes
3answers
230 views

Python introspection: Automatic wrapping of methods

object of type A and Is there a way to programatically wrap a class object? Given class A(object): def __init__(self): ## .. def f0(self, a): ## ... def f1(self, a, b): ...
1
vote
1answer
281 views

Trying to dynaimcally create properties at runtime with Python using reflected data

So I'm trying to figure out if what I want to do is even possible. I am writing some test code for an application, and I have objects that contain properties representing some of the elements we have ...
0
votes
3answers
178 views

Why does MyClass.__class__ return a different value than MyClass().__class__?

I want to be able to call 'person.Person.class' and get back 'class person.Person', like it does for a person object: >>> p = person.Person() >>> p.__class__ <class ...
5
votes
3answers
1k views

Python equivalent of Java's getClass().getFields()

i'm converting a peace of code from Java to python and I don't know how to translate the follow: Field[] fields = getClass().getFields(); for (int i = 0; i < fields.length; i++ ) { if ...
2
votes
3answers
972 views

Getting field names reflectively with Python

Is it possible to get the name of a field reflectively in Python (3.2)? See the following example: class Something: def __init__(self): self.x = 1 def validate(): return ...
0
votes
4answers
3k views

Python Reflection

suppose we have many objects in memory. Each one has a distinct id. How can I iterate the memory to find a specific object that is compared to some id ? In order to grab it and use it through getattr ...
0
votes
1answer
128 views

Unable utilize a methodname(from webservice)present in the form of a string.I tried utilizing getattr,but then not unable to extend it for suds

from suds.client import Client #@UnresolvedImport from suds.transport.https import HttpAuthenticated #@UnresolvedImport import urllib2 class methodinvokeclass(): def ...
2
votes
2answers
292 views

Python: Getting static properties via a property name

I have a python class with "emulated" static properties via a metaclass: class MyMeta(type): @property def x(self): return 'abc' @property def y(self): return 'xyz' class My: ...
2
votes
2answers
1k views

Call a method of an object with arguments in Python

I want to be able to call different methods on a Python class with dynamic function name, e.g. class Obj(object): def A(self, x): print "A %s" % x def B(self, x): print "B ...
1
vote
3answers
271 views

Rewrite python function without inspect module

How would I write this introspective function without using the inspect module. import inspect def trace(cls): for name, m in inspect.getmembers(cls, inspect.ismethod): ...
11
votes
3answers
10k views

Convert a python 'type' object to a string

I'm wondering how to convert a python 'type' object into a string using python's reflective capabilities. For example, I'd like to print the type of an object print "My type is " + type(someObject) ...
2
votes
3answers
404 views

Querying Python Functions by Signature

What's the best way to document/decorate your Python functions/methods so that you're able to easily query them by signature (e.g. argument count, argument type, and return type)? I'm playing around ...

1 2