2
votes
2answers
283 views
Library/tool for drawing ternary/triangle plots
I need to draw ternary/triangle plots representing mole fractions (x, y, z) of various substances …
0
votes
Is there a benefit to defining a class inside another class in Python?
No, composition does not mean nesting.
It would make sense to have a nested class if you want to hide it more in the namespace of the outer class.
Anyway, I don't see any practical use for …
2
votes
i need to write code in python for comparing text of two documents uning fingerprint techniques
If you want message digests (cryptographic hashes), use the …
1
vote
How do I loop through all files in a folder using Python?
If you want to find all the files, including the ones in subdirectories use os.walk:
import os
…
0
votes
Pretty graphs and charts in Python
PLplot is a cross-platform software package for creating scientific plots. They aren't very pretty (eye catching), but they look good eno …
1
vote
How to design multi-threaded GUI-network application?
I think that you could use a Queue for passing messages between the GUI and the network threads.
As for GUI and thread …
0
votes
python windows directory mtime: how to detect package directory new file?
Maybe this will help you http://tgolden.sc.sabren.com/python/win32_how_do_i/watch_direct …
1
vote
How can I read a python pickle database/file from C?
You can embed a Python interpreter in a C program, but I think that the easiest solution is to write a Python script that converts "pickles" in another format, e.g. an SQLite database.
…
3
votes
Call a function from a running process
Parent code:
import signal
def my_callback(signal, frame):
print "Signal %d received" % (signal,)
signal.signal(signal.SIGUSR1, my_callback)
# start child
Child …
0
votes
Downloading file using IE from python.
If you can't control Internet Explorer using its COM interface, I suggest using the AutoIt COM to control its GUI from Python.
…
3
votes
Why use **kwargs in python? What are some real world advantages over using named arguments?
**kwargs are good if you don't know in advance the name of the parameters. For example the dict constructor uses them to initialize the keys of the new dictionary.
…
0
votes
Multiple Tuple to Two-Pair Tuple in Python?
Using itertools.groupby:
import itertools
def generate_keyfunc(n):
"""Returns a key …
2
votes
Python __init__ setattr on arguments?
Try inspect.getargspec:
In [31]: inspect.getargspec(C.__init__)
Out[31]: ArgSpec(args=[' …
