0
votes
2answers
19 views
Installing python packages on MacOSX
This is the first time I've ever touched python, I'm trying to use a library 'cairo', but have been unable to import it getting the message
Python 2.6.4 (r264:75821M, Oct 27 2009, …
0
votes
6answers
31 views
running an outside program (executable) in python?
Hello all,
I just started working on python and I have been trying to run an outside executable form python.
I have an executable for a program written in Fortran. Lets say the nam …
0
votes
2answers
18 views
How to pass this command to subprocess.call?
Command:
root@host:~#convert source.jpg -resize x500 -resize "500x<" -gravity center +repage target.jpg
Python code:
>> command_list = ['convert', 'source.jpg', '-resi …
0
votes
1answer
9 views
Monitor database requests in Django, tied to line number
We've got some really strange extraneous DB hits happening in our project. Is there any way to monitor where the requests are coming from, possibly by line number? The SQL printing …
0
votes
0answers
1 views
python GTK container for mjpeg stream
I have an mjpeg stream from a web-cam and would like to display it in an application written in python using pygtk.
The stream is a string of bytes from the driver.
What widget wo …
1
vote
2answers
41 views
Processing (possibly) optional arguments in Python
I am working on a series of command line tools which connect to the same server and do related but different things. I'd like users to be able to have a single configuration file …
0
votes
4answers
97 views
Does my code leak memory (python)?
links_list = char.getLinks(words)
for source_url in links_list:
try:
print 'Downloading URL: ' + source_url
urldict = hash_url(source_url)
…
0
votes
5answers
150 views
What is the best language for sockets programming?
I'd like to develop software program that communicates between clients. What is the best programming language to do this?
0
votes
4answers
33 views
How can I run redemo.py (or equivalent) on a Mac?
In the python installation on my PC there is a sweet script in c:\python26\tools\scripts called redemo.py. It's a simple tk app for testing regular expressions. I wish I could get …
0
votes
4answers
93 views
Why does my python script randomly get killed?
Basically, i have a list of 30,000 URLs.
The script goes through the URLs and downloads them (with a 3 second delay in between).
And then it stores the HTML in a database.
And it …
0
votes
2answers
20 views
Where can I find good tutorials and guides on wxPython and wxGlade?
Just out of curiosity, aside from their respective sites, have any of you guys found a better resource for figuring out wxPython/wxGlade?
I figured I'd ask while I'm chewing on so …
0
votes
0answers
4 views
Scrapy SgmlLinkExtractor is ignoring allowed links
Please take a look at this spider example in Scrapy documentation. The explanation is:
This spider would start crawling example.com’s home page, collecting category links, and …
1
vote
4answers
60 views
How can I track python imports
I have cyclical import issues adding some new code to a very large app, and I'm trying to determine which files are the most likely causes for this. It there any way to track which …
0
votes
4answers
61 views
Standard library - higher-precision floating point?
So, I'm having some precision issues in Python.
I would like to calculate functions like this:
P(x,y) = exp(-x)/(exp(-x) + exp(-y))
Where x and y might be >1000. Python's mat …
1
vote
1answer
28 views
Django: How to filter User’s that belong to a specific group
I'm looking to narrow a query set for a form field that has a foreignkey to the User's table down to the group that a user belongs to.
The groups have been previously associated b …
