0
votes
2answers
13 views
os.kill not raising an OSError, however I do not see the given pid running
On my ubuntu server I run the following command:
python -c 'import os; os.kill(5555, 0)'
This is done so that I can see if pid 5555 is running. From my understanding this should raise an OSError …
0
votes
0answers
3 views
2 Axes Reportlab Graph
Hi,
I have managed to create a 2 axes graph in ReportLab, by overlapping a barchart and linepot. Here is the code for anyone interested in something similar:
from reportlab.graphics.shapes import …
1
vote
0answers
15 views
The best way to join two dissimilar mySQL tables — planning for django from python.
Hi all,
table a (t_a):
id name last first email state country
0 sklass klass steve sklass@foo.com in uk
1 jabid abid john abid@foo.com ny us
2 …
0
votes
4answers
46 views
Passing a list to eval()
Is there a way to pass a list as a function argument to eval() Or do I have to convert it to a string and then parse it as a list in the function?
My simple example looks like:
eval("func1(\'" + …
0
votes
4answers
26 views
Suppress linebreak on file.write
When writing to a text file, some of the file.write instances are followed by a linebreak in the output file and others aren't. I don't want linebreaks except where I tell them to occur. Code:
for …
3
votes
4answers
118 views
Python: How do I split a list into groups?
I'm looking for the best way to split a given list of arbitrary length into smaller lists of a given size.
Suppose this is the starting list.
[1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11]
... and I want to …
0
votes
1answer
32 views
Is SOAPpy the same thing as SOAPy?
I would normally read the documentation to figure that out, but the links from both websites are on sourceforge and both are 404ing.
1
vote
2answers
69 views
How much of NumPy and SciPy is in C?
Python newbie here.
Are parts of NumPy and/or SciPy programmed in C/C++?
And how does the overhead of calling C from Python compare to the overhead of calling C from Java and/or C#?
I'm just …
1
vote
0answers
16 views
django admin permissions - can edit user but can’t edit his permissons - how to do it?
I gave the editors such permissions:
auth | user | can add/change user - ON
auth | permissions | can add/change permissions - OFF
Still, when editing, they can change their permissions (and allow …
1
vote
0answers
24 views
How to pack and unpack using ctypes (Structure <-> str)
This might be a silly question but I couldn't find a good answer in the docs or anywhere.
If I use struct to define a binary structure, the struct has 2 symmetrical methods for serialization and …
0
votes
1answer
21 views
Need help with Python/BeautifulSoup
How can I combine these multiple sections into one:
for tag in soup.findAll(attrs={'class': 'noprint'}):
tag.extract()
for tag in soup.findAll(attrs={'class': 'printfooter'}):
tag.extract()
…
1
vote
1answer
39 views
Can python send text to the Mac clipboard
I'd like my python program to place some text in the Mac clipboard.
Is this possible?
0
votes
1answer
19 views
Inheriting methods from a metaclass
In the example enumeration code given in this question, reproduced below, why does TOKEN contain the implementations of __contains__ and __repr__ from the metaclass EnumerationType?
from ctypes …
2
votes
3answers
63 views
Download html page and its content
Does python have any way of downloading entire html page and its contents (images, css) to local folder given a url. And updating local html file to pick content locally.
0
votes
2answers
61 views
Using super() in nested classes.
Imagine this:
class A(object):
class B(object):
def __init__(self):
super(B, self).__init__()
This creates an error:
NameError: global name B is not defined.
I've tried …
