473,382 Members | 1,639 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,382 software developers and data experts.

don't understand popen2

Hi all,

I was doing some popen2 tests so that I'm more comfortable using it.
I wrote a little python script to help me test that (testia.py):

---------------------------------
someline = raw_input("something:")

if someline == 'test':
print("yup")
else:
print("nope")
---------------------------------

And another little thing that does it's popen2 stuff:

---------------------------------
import popen2

std_out, std_in = popen2.popen2("testia.py")

x=std_out.readline()
print(x)

std_in.writelines("notgood")

x=std_out.readline()
print(x)
---------------------------------

Now what I expected was that I got the return one the first line:
"something:" and on the second "nope", but instead of that I got:
something:
Traceback (most recent call last):
File "F:\coding\pwSync\popen_test\popen_test.py", line 8, in ?
std_in.writelines("notgood")
IOError: [Errno 22] Invalid argument


I played around a bit with flush, write and the order of first writing
and then reading, the best I can get is no error but still not the
expected output. I googled a bit copied some examples that also worked
on my machine, reread the manual and the only conclusion I have is that
I don't even understand what I'm doing wrong.

Would you please be so kind to explain my wrong doing?
(python 2.4 + win32 extensions on XPProSP2)

Thanks in advance!

--
mph
Mar 23 '06 #1
9 1818
gry

Martin P. Hellwig wrote:
Hi all,

I was doing some popen2 tests so that I'm more comfortable using it.
I wrote a little python script to help me test that (testia.py):

---------------------------------
someline = raw_input("something:")

if someline == 'test':
print("yup")
else:
print("nope")
---------------------------------

And another little thing that does it's popen2 stuff:

---------------------------------
import popen2

std_out, std_in = popen2.popen2("testia.py")

x=std_out.readline()
print(x)

std_in.writelines("notgood")

x=std_out.readline()
print(x)
---------------------------------

Now what I expected was that I got the return one the first line:
"something:" and on the second "nope", but instead of that I got:
>>> something:
Traceback (most recent call last):
File "F:\coding\pwSync\popen_test\popen_test.py", line 8, in ?
std_in.writelines("notgood")
IOError: [Errno 22] Invalid argument >>>
I played around a bit with flush, write and the order of first writing
and then reading, the best I can get is no error but still not the
expected output. I googled a bit copied some examples that also worked
on my machine, reread the manual and the only conclusion I have is that
I don't even understand what I'm doing wrong.

Would you please be so kind to explain my wrong doing?
(python 2.4 + win32 extensions on XPProSP2)

help(sys.stdin.writelines)

Help on built-in function writelines:

writelines(...)
writelines(sequence_of_strings) -> None. Write the strings to the
file.

Note that newlines are not added. The sequence can be any iterable
object
producing strings. This is equivalent to calling write() for each
string>

You gave it a single string, not a list(sequence) of strings. Try
something like:
std_in.writelines(["notgood"])

Mar 23 '06 #2
Quoth gr*@ll.mit.edu:
| Martin P. Hellwig wrote:
....
|> import popen2
|>
|> std_out, std_in = popen2.popen2("testia.py")
|>
|> x=std_out.readline()
|> print(x)
|>
|> std_in.writelines("notgood")
|>
|> x=std_out.readline()
|> print(x)
....
|> Traceback (most recent call last):
|> File "F:\coding\pwSync\popen_test\popen_test.py", line 8, in ?
|> std_in.writelines("notgood")
|> IOError: [Errno 22] Invalid argument
|> >>>
....

| You gave it a single string, not a list(sequence) of strings. Try
| something like:
| std_in.writelines(["notgood"])

Did you try it? For me, writelines(string) works fine. Since in
Python, a string is in a sense a sequence of strings, this doesn't
even really contradict the documentation -

| ... The sequence can be any iterable object producing strings.

Anyway, it seems unlikely he would get that INVARG error for this
reason. That's an error from the host operating system, not the
interpreter, and it mostly likely refers to the file descriptor.
Since it works for me, I guess his problem is basically this:

|> (python 2.4 + win32 extensions on XPProSP2)

Donn Cave, do**@drizzle.com
Mar 23 '06 #3
gr*@ll.mit.edu wrote:
<cut>

You gave it a single string, not a list(sequence) of strings. Try
something like:
std_in.writelines(["notgood"])


I got this output then:
something:
Traceback (most recent call last):
File "F:\coding\pwSync\popen_test\popen_test.py", line 8, in ?
std_in.writelines(["notgood"])
IOError: [Errno 22] Invalid argument something:
Traceback (most recent call last):
File "F:\coding\pwSync\popen_test\popen_test.py", line 8, in ?
std_in.write("notgood")
IOError: [Errno 22] Invalid argument


It seems that it doesn't matter.

--
mph
Mar 23 '06 #4
Donn Cave wrote:
<cut>

Anyway, it seems unlikely he would get that INVARG error for this
reason. That's an error from the host operating system, not the
interpreter, and it mostly likely refers to the file descriptor.
Since it works for me, I guess his problem is basically this:

|> (python 2.4 + win32 extensions on XPProSP2)

Donn Cave, do**@drizzle.com


Thank you for your suggestion.

I shuffled it a bit around and executed it on my BSD box and there
indeed it works, if I use that exactly program (well not the path var of
course) on NT it has no error but it still not gives the expected
results. So I guess that pipes,std-in, std-out & std-err work that
different on NT then on other POSIX systems.

The lucky thing is that the code where I am exercising for must run on a
BSD system so my immediately problem is dealt with, but I'm still
curious how to get this working on NT.

I posted my new code and the results under my sep.

--
mph

popen_test.py------------------------------------
#! /usr/local/bin/python
import popen2

std_out, std_in = popen2.popen2("F:\coding\pwSync\popen_test\testia. py")
std_in.writelines("test\n")
std_in.flush()
std_in.close()
x=std_out.readlines()
print(x)
-------------------------------------------------

testia.py----------------------------------------
#! /usr/local/bin/python
someline = raw_input("something:")

if someline == 'test':
print("yup")
else:
print("nope")
-------------------------------------------------
results on NT:
F:\coding\pwSync\popen_test>popen_test.py
[]
results on BSD:
%./popen_test.py
['something:yup\n']
%
Mar 23 '06 #5
Martin P. Hellwig <mh******@xs4all.nl> wrote:
std_out, std_in = popen2.popen2("F:\coding\pwSync\popen_test\testia. py")

^^
Your problem is, I suspect, nothing to do with popen2(), which is
supported by the fact that the only thing other than OS different
between this and your working BSD version is the path:
"F:\coding\pwSync\popen_test\testia.py"

'F:\\coding\\pwSync\\popen_test\testia.py'

Try:
std_out, std_in = popen2.popen2("F:/coding/pwSync/popen_test/testia.py")
or:
std_out, std_in = popen2.popen2("F:\\coding\\pwSync\\popen_test\\tes tia.py")
(and please avoid the abuse of raw strings for Windows paths).

--
\S -- si***@chiark.greenend.org.uk -- http://www.chaos.org.uk/~sion/
___ | "Frankly I have no feelings towards penguins one way or the other"
\X/ | -- Arthur C. Clarke
her nu becomež se bera eadward ofdun hlęddre heafdes bęce bump bump bump
Mar 23 '06 #6
Sion Arrowsmith wrote:
"F:\coding\pwSync\popen_test\testia.py" 'F:\\coding\\pwSync\\popen_test\testia.py'


this might make it more obvious that something's not quite right with that
string literal:
print "F:\coding\pwSync\popen_test\testia.py"

F:\coding\pwSync\popen_test estia.py

</F>

Mar 23 '06 #7
Sion Arrowsmith wrote:
Try:
std_out, std_in = popen2.popen2("F:/coding/pwSync/popen_test/testia.py")
or:
std_out, std_in = popen2.popen2("F:\\coding\\pwSync\\popen_test\\tes tia.py")
(and please avoid the abuse of raw strings for Windows paths).


Why do you consider that abuse of raw strings? It's very easy and
convenient to copy a path from Windows Explorer and paste it directly
into a raw string, no editing required.

Kent
Mar 23 '06 #8
Kent Johnson <ke**@kentsjohnson.com> wrote:
Sion Arrowsmith wrote:
(and please avoid the abuse of raw strings for Windows paths).

Why do you consider that abuse of raw strings?


I consider it abuse because it's not what they were invented for.
I consider discouraging it to be a good thing in order to reduce
the chances of people being bitten by, for instance:
os.listdir(r"C:\")

File "<stdin>", line 1
os.listdir(r"C:\")
^
SyntaxError: EOL while scanning single-quoted string

and getting all confused on this group.

--
\S -- si***@chiark.greenend.org.uk -- http://www.chaos.org.uk/~sion/
___ | "Frankly I have no feelings towards penguins one way or the other"
\X/ | -- Arthur C. Clarke
her nu becomež se bera eadward ofdun hlęddre heafdes bęce bump bump bump
Mar 24 '06 #9
Sion Arrowsmith wrote:
Kent Johnson <ke**@kentsjohnson.com> wrote:
Sion Arrowsmith wrote:
(and please avoid the abuse of raw strings for Windows paths).


Why do you consider that abuse of raw strings?


I consider it abuse because it's not what they were invented for.
I consider discouraging it to be a good thing in order to reduce
the chances of people being bitten by, for instance:
os.listdir(r"C:\")


File "<stdin>", line 1
os.listdir(r"C:\")
^
SyntaxError: EOL while scanning single-quoted string

and getting all confused on this group.


Judging from the traffic here, people are far more often bitten by *not*
using raw strings for paths containing \ than they are by using them for
paths ending with \. So perhaps we should encourage raw strings for
Windows paths. ;)

Kent
Mar 25 '06 #10

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
by: cherico | last post by:
from popen2 import popen2 r, w = popen2 ( 'tr "" ""' ) w.write ( t ) # t is a text file of around 30k bytes w.close () text = r.readlines () print text r.close () This simple script halted...
1
by: | last post by:
This could possibly be a bug, but I don't understand it fully so I'm posting here first. Searching the list told me other people are having this problem too. I have created a class which...
4
by: P | last post by:
I've written a couple of apps that required running a command and grabbing the output, and I've found the existing interfaces problematic for this. I think the proliferation of functions and...
1
by: Vivien Mallet | last post by:
Hello, I use popen2.Popen4 and I experienced problems with it. Let me show you with an example. The following script is called "lines" (it prints lines of 'X'): ---------------------...
2
by: Mage | last post by:
Hello, maybe my question is about linux and not about python. I tried to write a proxy script for "psql" command. I need some query log. I failed to read from the file object. I have...
1
by: Magnus Lycka | last post by:
I'm trying to read standard out in a process started with popen2 in a non-blocking way. (Other good ways of doing this than the one I tried are appreciated.) I've tried to dumb down my code to...
1
by: mikem76 | last post by:
Is there a way to get the process id when starting a process using os.popen2 or os.popen3 on linux? Mike
3
by: Daniel Klein | last post by:
Here's a c routine that prints a single line : #include <stdio.h> main() { printf ("Hello World!\n"); } And now the Python program (called 'po.py') that uses 'popen2' :
5
by: flupke | last post by:
Hi, i made a backup script to backup my postgres database. Problem is that it prompts for a password. It thought i could solve this by using popen2. I tested popen2 with dir (i'm on windows...
1
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.