0
votes
3answers
37 views

How to parse a python Loops using a python script?

My main objective is to parse python loops such that i can insert few statements for my analysis. Normal code: #A.py [code Starts] . . . while [condition]: [statements] [statements] ...
1
vote
2answers
50 views

How to differentiate between “a string” and “a actual code” in python?

My works relates to instrumentation of code fragments in python code. So in my work i would be writing a script in python such that I take another python file as input and insert any necessary code in ...
0
votes
0answers
21 views

data recognition using python [duplicate]

I Have been given a assignment where i need to instrument a given application and generate a trace file and later on from the trace file a sequence diagram needs to be generated. The application is ...
0
votes
0answers
34 views

How to use debugger to generate a trace file?

My work is to instrument a python application such that it generates a trace file consisting of the necessary dynamic information. I am using a python script to instrument the source code. I have ...
0
votes
1answer
86 views

stopping instrumentation in callgrind

I'm spawning multiple processes and starting the instrumentation in each of them. When I try to stop the instrumentation just before the process exits, the instrumentation program seems to hang in ...
7
votes
2answers
667 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 ...
10
votes
3answers
1k views

Measuring performance in Python

I'm writing a web-application in Python, I haven't decided if I want to use Flask, web.py or something else yet, and I want to be able to do profile on the live application. There seems to be very ...
0
votes
2answers
895 views

Python interface to dynamic binary instrumentaton framework PIN

I work in analyzing binary files, using Python. I have been using debuggers to do a dynamic analysis (i.e running the application and using breakpoints to get runtime execution). however, results can ...
2
votes
2answers
415 views

Instrumentation for numerical linear algebra in Python

I use numpy for numerical linear algebra. I suspect that I can get much better performance if I make small modifications in how I carry out certain computations so that they are more memory efficient, ...
3
votes
1answer
2k views

How to discover table properties from SQLAlchemy mapped object

I have a class mapped with a table, in my case in a declarative way, and I want to "discover" table properties, columns, names, relations, from this class: engine = create_engine('sqlite:///' + ...