5
votes
5answers
2k views
Non-blocking read on a stream in python.
Hi,
I'm using the subprocess module to start a subprocess and connect to it's output stream (stdout). I want to be able to execute non-blocking reads on its stdout. Is there a way …
0
votes
1answer
32 views
Handling the different results from parsedatetime
I'm trying to learn python after spending the last 15 or so years working only in Perl and only occasionally.
I can't understand how to handle the two different kinds of results f …
0
votes
3answers
22 views
configuring file path in python
how to configure the file path, input and output?
in different directories to the folder for python, thanks for any response
0
votes
1answer
47 views
Python/OpenCV: Converting images taken from capture
Hello. I'm trying to convert images taken from a capture (webcam) and do some processing on them with OpenCV, but I'm having a difficult time..
When trying to convert the image to …
5
votes
9answers
2k views
C++ string parsing (python style)
I love how in python I can do something like:
points = []
for line in open("data.txt"):
a,b,c = map(float, line.split(','))
points += [(a,b,c)]
Basically it's reading a …
0
votes
0answers
19 views
Open a second window in PyQt
I'm trying to use pyqt to show a custom QDialog window when a button on a QMainWindow is clicked. I keep getting the following error:
$ python main.py
DEBUG: Launch edit window
…
0
votes
1answer
25 views
Python regular expression matching a multiline block of text but not replacing it
Ok so i have this piece of code:
def findNReplaceRegExp(file_name, regexp, replaceString, verbose=True, confirmationNeeded=True):
'''Replaces the oldString with the replaceString …
0
votes
0answers
31 views
A simple spider question
Hello spider experts:
I am a newbie trying to achive this simple task by using Scrapy with no luck so far. I am asking your advice about how to do this with Scrapy or with any oth …
0
votes
2answers
29 views
Python: Calling a method of an instance’s member by name using __getattribute__
I have a class that contains a member object. I would like to call the member's methods as if they were methods of the container class.
The following example illustrates (however …
0
votes
1answer
7 views
Hide console for Tkinter app on OSX
I'm trying to hide the Terminal when I launch a GUI Tkinter based app, but when I double click the app.py file on OSX, the Terminal window appears. I've tried changing the extensi …
2
votes
2answers
24 views
Dynamically binding Python methods to an instance correctly binds the method names, but not the method
I'm writing a client for a group of RESTful services. The body of the REST calls have the same XML structure, given parameters. There are several dozen calls, and I will not be imp …
0
votes
4answers
122 views
python: conditionally execute code in a “with” block
I guess this is kinda abusing the feature, but I'm still curious whether it could be done -
I want to do something like:
with conditional(a):
print 1
so that the print 1 par …
0
votes
2answers
28 views
Creating hierarchy tree from dictionary of pages’ contents
The following key:value pairs are 'page' and 'page contents'.
{
'section-a.html':{'contents':'section-b.html section-c.html section-d.html'},
'section-b.html':{'contents':'sec …
0
votes
2answers
19 views
How can I create a script that manufactures MLA citations?
I have a folder full of Windows .URL files. I'd like to translate them into a list of MLA citations for my paper.
Is this a good application of Python? How can I get the page titl …
0
votes
2answers
13 views
Scrapy SgmlLinkExtractor question
Hello,
I am trying to make the SgmlLinkExtractor to work.
This is the signature:
SgmlLinkExtractor(allow=(), deny=(), allow_domains=(), deny_domains=(), restrict_xpaths(), tags= …
