[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.lang.python

stdin, stdout, redmon

Bernard Desnoues

1/21/2008 2:02:00 PM

Hi,

I've got a problem with the use of Redmon (redirection port monitor). I
intend to develop a virtual printer so that I can modify data sent to
the printer.
Redmon send the data flow to the standard input and lauchs the Python
program which send modified data to the standard output (Windows XP and
Python 2.5 context).
I can manipulate the standard output.

"import sys
sys.stdout.write(data)"

it works.
But how to manipulate standard input so that I can store data in a
string or in an object file ? There's no "read" method.

"a = sys.stdin.read()" doesn't work.
"f = open(sys.stdin)" doesn't work.

I don't find anything in the documentation. How to do that ?
Thanks in advance.

Bernard Desnoues
Librarian
Bibliothèque de géographie - Sorbonne
11 Answers

Rolf van de Krol

1/21/2008 2:15:00 PM

0

According to various tutorials this should work.

<code>
|import sys
data = sys.stdin.readlines()
print "Counted", len(data), "lines."|
</code>

Please use google before asking such questions. This was found with only
one search for the terms 'python read stdin'

Rolf

Bernard Desnoues wrote:
> Hi,
>
> I've got a problem with the use of Redmon (redirection port monitor). I
> intend to develop a virtual printer so that I can modify data sent to
> the printer.
> Redmon send the data flow to the standard input and lauchs the Python
> program which send modified data to the standard output (Windows XP and
> Python 2.5 context).
> I can manipulate the standard output.
>
> "import sys
> sys.stdout.write(data)"
>
> it works.
> But how to manipulate standard input so that I can store data in a
> string or in an object file ? There's no "read" method.
>
> "a = sys.stdin.read()" doesn't work.
> "f = open(sys.stdin)" doesn't work.
>
> I don't find anything in the documentation. How to do that ?
> Thanks in advance.
>
> Bernard Desnoues
> Librarian
> Bibliothèque de géographie - Sorbonne

Bernard Desnoues

1/21/2008 2:25:00 PM

0

Rolf van de Krol a écrit :
> According to various tutorials this should work.
>
> <code>
> |import sys
> data = sys.stdin.readlines()
> print "Counted", len(data), "lines."|
> </code>
>
> Please use google before asking such questions. This was found with only
> one search for the terms 'python read stdin'
>
> Rolf
>
> Bernard Desnoues wrote:
>> Hi,
>>
>> I've got a problem with the use of Redmon (redirection port monitor).
>> I intend to develop a virtual printer so that I can modify data sent
>> to the printer.
>> Redmon send the data flow to the standard input and lauchs the Python
>> program which send modified data to the standard output (Windows XP
>> and Python 2.5 context).
>> I can manipulate the standard output.
>>
>> "import sys
>> sys.stdout.write(data)"
>>
>> it works.
>> But how to manipulate standard input so that I can store data in a
>> string or in an object file ? There's no "read" method.
>>
>> "a = sys.stdin.read()" doesn't work.
>> "f = open(sys.stdin)" doesn't work.
>>
>> I don't find anything in the documentation. How to do that ?
>> Thanks in advance.
>>
>> Bernard Desnoues
>> Librarian
>> Bibliothèque de géographie - Sorbonne

Hello Rolf,

I know this code because I have search a solution !
Your google code doesn't work ! No attribute "readlines".

>>> import sys
>>> data = sys.stdin.readlines()

Traceback (most recent call last):
File "<pyshell#1>", line 1, in <module>
data = sys.stdin.readlines()
AttributeError: readlines

Rolf van de Krol

1/21/2008 2:53:00 PM

0

I don't know what you did with your Python installation, but for me this
works perfectly.

test3.py contains:
<code>
import sys

print sys.stdin.readlines()
</code>

test.txt contains:
<code>
Testline1
Testline2
</code>

Output of 'python test3.py < test.txt' is:
<code>
['Testline1\n', 'Testline2']
</code>

Just plain simple and just works.

Rolf



Bernard Desnoues wrote:
> Rolf van de Krol a écrit :
>
>> According to various tutorials this should work.
>>
>> <code>
>> |import sys
>> data = sys.stdin.readlines()
>> print "Counted", len(data), "lines."|
>> </code>
>>
>> Please use google before asking such questions. This was found with only
>> one search for the terms 'python read stdin'
>>
>> Rolf
>>
>> Bernard Desnoues wrote:
>>
>>> Hi,
>>>
>>> I've got a problem with the use of Redmon (redirection port monitor).
>>> I intend to develop a virtual printer so that I can modify data sent
>>> to the printer.
>>> Redmon send the data flow to the standard input and lauchs the Python
>>> program which send modified data to the standard output (Windows XP
>>> and Python 2.5 context).
>>> I can manipulate the standard output.
>>>
>>> "import sys
>>> sys.stdout.write(data)"
>>>
>>> it works.
>>> But how to manipulate standard input so that I can store data in a
>>> string or in an object file ? There's no "read" method.
>>>
>>> "a = sys.stdin.read()" doesn't work.
>>> "f = open(sys.stdin)" doesn't work.
>>>
>>> I don't find anything in the documentation. How to do that ?
>>> Thanks in advance.
>>>
>>> Bernard Desnoues
>>> Librarian
>>> Bibliothèque de géographie - Sorbonne
>>>
>
> Hello Rolf,
>
> I know this code because I have search a solution !
> Your google code doesn't work ! No attribute "readlines".
>
> >>> import sys
> >>> data = sys.stdin.readlines()
>
> Traceback (most recent call last):
> File "<pyshell#1>", line 1, in <module>
> data = sys.stdin.readlines()
> AttributeError: readlines
>

Bernard Desnoues

1/22/2008 9:42:00 AM

0

Hello,

I checked under linux and it works :
text.txt :
"first line of the text file
second line of the text file"

test.py :
"import sys
a = sys.stdin.readlines()
x = ''.join(a)
x = x.upper()
sys.stdout.write(x)"

>cat text.txt | python test.py

But I reinstalled Python 2.5 under Windows XP and it doesn't work
anyway. Can you confirm that your script works with Win XP and Python 2.5 ?

Regards

Rolf van de Krol a écrit :
> I don't know what you did with your Python installation, but for me this
> works perfectly.
>
> test3.py contains:
> <code>
> import sys
>
> print sys.stdin.readlines()
> </code>
>
> test.txt contains:
> <code>
> Testline1
> Testline2
> </code>
>
> Output of 'python test3.py < test.txt' is:
> <code>
> ['Testline1\n', 'Testline2']
> </code>
>
> Just plain simple and just works.
>
> Rolf
>
>
>
> Bernard Desnoues wrote:
>> Rolf van de Krol a écrit :
>>
>>> According to various tutorials this should work.
>>>
>>> <code>
>>> |import sys
>>> data = sys.stdin.readlines()
>>> print "Counted", len(data), "lines."|
>>> </code>
>>>
>>> Please use google before asking such questions. This was found with
>>> only one search for the terms 'python read stdin'
>>>
>>> Rolf
>>>
>>> Bernard Desnoues wrote:
>>>
>>>> Hi,
>>>>
>>>> I've got a problem with the use of Redmon (redirection port
>>>> monitor). I intend to develop a virtual printer so that I can modify
>>>> data sent to the printer.
>>>> Redmon send the data flow to the standard input and lauchs the
>>>> Python program which send modified data to the standard output
>>>> (Windows XP and Python 2.5 context).
>>>> I can manipulate the standard output.
>>>>
>>>> "import sys
>>>> sys.stdout.write(data)"
>>>>
>>>> it works.
>>>> But how to manipulate standard input so that I can store data in a
>>>> string or in an object file ? There's no "read" method.
>>>>
>>>> "a = sys.stdin.read()" doesn't work.
>>>> "f = open(sys.stdin)" doesn't work.
>>>>
>>>> I don't find anything in the documentation. How to do that ?
>>>> Thanks in advance.
>>>>
>>>> Bernard Desnoues
>>>> Librarian
>>>> Bibliothèque de géographie - Sorbonne
>>>>
>>
>> Hello Rolf,
>>
>> I know this code because I have search a solution !
>> Your google code doesn't work ! No attribute "readlines".
>>
>> >>> import sys
>> >>> data = sys.stdin.readlines()
>>
>> Traceback (most recent call last):
>> File "<pyshell#1>", line 1, in <module>
>> data = sys.stdin.readlines()
>> AttributeError: readlines

Tim Golden

1/22/2008 9:59:00 AM

0

Bernard Desnoues wrote:
> Hello,
>
> I checked under linux and it works :
> text.txt :
> "first line of the text file
> second line of the text file"
>
> test.py :
> "import sys
> a = sys.stdin.readlines()
> x = ''.join(a)
> x = x.upper()
> sys.stdout.write(x)"
>
> >cat text.txt | python test.py
>
> But I reinstalled Python 2.5 under Windows XP and it doesn't work
> anyway. Can you confirm that your script works with Win XP and Python 2.5 ?

How are you invoking the script under WinXP? If you're
using the standard file associations then stdin/stdout
won't work correctly. However, they produce a specific
error message:

<dump>
C:\temp>type test3.py
import sys

print sys.stdin.readlines ()
C:\temp>
C:\temp>type test3.py | test3.py
Traceback (most recent call last):
File "C:\temp\test3.py", line 3, in <module>
print sys.stdin.readlines ()
IOError: [Errno 9] Bad file descriptor

C:\temp>type test3.py | python test3.py
['import sys\n', '\n', 'print sys.stdin.readlines ()']

</dump>

TJG

John Machin

1/22/2008 10:02:00 AM

0

On Jan 22, 8:42 pm, Bernard Desnoues <bernard.desno...@univ-paris1.fr>
wrote:
> Hello,
>
> I checked under linux and it works :
> text.txt :
> "first line of the text file
> second line of the text file"
>
> test.py :
> "import sys
> a = sys.stdin.readlines()
> x = ''.join(a)
> x = x.upper()
> sys.stdout.write(x)"
>
> >cat text.txt | python test.py
>
> But I reinstalled Python 2.5 under Windows XP and it doesn't work
> anyway. Can you confirm that your script works with Win XP and Python 2.5 ?
>
> Regards
>
> Rolf van de Krol a écrit :
>
> > I don't know what you did with your Python installation, but for me this
> > works perfectly.
>
> > test3.py contains:
> > <code>
> > import sys
>
> > print sys.stdin.readlines()
> > </code>
>
> > test.txt contains:
> > <code>
> > Testline1
> > Testline2
> > </code>
>
> > Output of 'python test3.py < test.txt' is:
> > <code>
> > ['Testline1\n', 'Testline2']
> > </code>
>
> > Just plain simple and just works.
>
> > Rolf
>
> > Bernard Desnoues wrote:
> >> Rolf van de Krol a écrit :
>
> >>> According to various tutorials this should work.
>
> >>> <code>
> >>> |import sys
> >>> data = sys.stdin.readlines()
> >>> print "Counted", len(data), "lines."|
> >>> </code>
>
> >>> Please use google before asking such questions. This was found with
> >>> only one search for the terms 'python read stdin'
>
> >>> Rolf
>
> >>> Bernard Desnoues wrote:
>
> >>>> Hi,
>
> >>>> I've got a problem with the use of Redmon (redirection port
> >>>> monitor). I intend to develop a virtual printer so that I can modify
> >>>> data sent to the printer.
> >>>> Redmon send the data flow to the standard input and lauchs the
> >>>> Python program which send modified data to the standard output
> >>>> (Windows XP and Python 2.5 context).
> >>>> I can manipulate the standard output.
>
> >>>> "import sys
> >>>> sys.stdout.write(data)"
>
> >>>> it works.
> >>>> But how to manipulate standard input so that I can store data in a
> >>>> string or in an object file ? There's no "read" method.
>
> >>>> "a = sys.stdin.read()" doesn't work.
> >>>> "f = open(sys.stdin)" doesn't work.
>
> >>>> I don't find anything in the documentation. How to do that ?
> >>>> Thanks in advance.
>
> >>>> Bernard Desnoues
> >>>> Librarian
> >>>> Bibliothèque de géographie - Sorbonne
>
> >> Hello Rolf,
>
> >> I know this code because I have search a solution !
> >> Your google code doesn't work ! No attribute "readlines".
>
> >> >>> import sys
> >> >>> data = sys.stdin.readlines()
>
> >> Traceback (most recent call last):
> >> File "<pyshell#1>", line 1, in <module>
> >> data = sys.stdin.readlines()
> >> AttributeError: readlines

Excuse me, gentlemen, may I be your referee *before* you resort to
pistols at dawn?

===== IDLE =====
IDLE 1.2.1
>>> import sys
>>> sys.stdin.readlines

Traceback (most recent call last):
File "<pyshell#1>", line 1, in <module>
sys.stdin.readlines
AttributeError: readlines
>>>

===== Command Prompt =====
C:\junk>python
Python 2.5.1 (r251:54863, Apr 18 2007, 08:51:08) [MSC v.1310 32 bit
(Intel)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> import sys
>>> sys.stdin.readlines
<built-in method readlines of file object at 0x00B1F020>
>>>

HTH,
John

Rolf van de Krol

1/22/2008 1:02:00 PM

0

Well, that's at least weird. I did test my code with Python 2.5 on Win
XP, using the command prompt. But testing it with IDLE gives exactly the
same error Bernard has. So apparently STDIN can't be accessed with IDLE.

Rolf

John Machin wrote:
>
> Excuse me, gentlemen, may I be your referee *before* you resort to
> pistols at dawn?
>
> ===== IDLE =====
> IDLE 1.2.1
>
>>>> import sys
>>>> sys.stdin.readlines
>>>>
>
> Traceback (most recent call last):
> File "<pyshell#1>", line 1, in <module>
> sys.stdin.readlines
> AttributeError: readlines
>
>
> ===== Command Prompt =====
> C:\junk>python
> Python 2.5.1 (r251:54863, Apr 18 2007, 08:51:08) [MSC v.1310 32 bit
> (Intel)] on win32
> Type "help", "copyright", "credits" or "license" for more information.
>
>>>> import sys
>>>> sys.stdin.readlines
>>>>
> <built-in method readlines of file object at 0x00B1F020>
>
>
> HTH,
> John
>

Konstantin Shaposhnikov

1/22/2008 1:55:00 PM

0

Hi,

This is Windows bug that is described here: http://support.microsoft.com/default.aspx?k...

This article also contains solution: you need to add registry value:

HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Policies
\Explorer
InheritConsoleHandles = 1 (REG_DWORD type)

Do not forget to launch new console (cmd.exe) after editing registry.

Alternatively you can use following command

cat file | python script.py

instead of

cat file | python script.py

Regards,
Konstantin

On Jan 22, 1:02 pm, Rolf van de Krol <pyt...@rolfvandekrol.nl> wrote:
> Well, that's at least weird. I did test my code with Python 2.5 on Win
> XP, using the command prompt. But testing it with IDLE gives exactly the
> same error Bernard has. So apparently STDIN can't be accessed with IDLE.
>
> Rolf
>
> John Machin wrote:
>
> > Excuse me, gentlemen, may I be your referee *before* you resort to
> > pistols at dawn?
>
> > ===== IDLE =====
> > IDLE 1.2.1
>
> >>>> import sys
> >>>> sys.stdin.readlines
>
> > Traceback (most recent call last):
> > File "<pyshell#1>", line 1, in <module>
> > sys.stdin.readlines
> > AttributeError: readlines
>
> > ===== Command Prompt =====
> > C:\junk>python
> > Python 2.5.1 (r251:54863, Apr 18 2007, 08:51:08) [MSC v.1310 32 bit
> > (Intel)] on win32
> > Type "help", "copyright", "credits" or "license" for more information.
>
> >>>> import sys
> >>>> sys.stdin.readlines
>
> > <built-in method readlines of file object at 0x00B1F020>
>
> > HTH,
> > John

Konstantin Shaposhnikov

1/22/2008 2:11:00 PM

0

Sorry, I meant:

Alternatively you can use following command

cat file | python script.py

instead of

cat file | script.py




On Jan 22, 1:54 pm, Konstantin Shaposhnikov <k.shaposhni...@gmail.com>
wrote:
> Hi,
>
> This is Windows bug that is described here:http://support.microsoft.com/default.aspx?k...
>
> This article also contains solution: you need to add registry value:
>
> HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Policies
> \Explorer
> InheritConsoleHandles = 1 (REG_DWORD type)
>
> Do not forget to launch new console (cmd.exe) after editing registry.
>
> Alternatively you can use following command
>
> cat file | python script.py
>
> instead of
>
> cat file | python script.py
>
> Regards,
> Konstantin
>
> On Jan 22, 1:02 pm, Rolf van de Krol <pyt...@rolfvandekrol.nl> wrote:
>
> > Well, that's at least weird. I did test my code with Python 2.5 on Win
> > XP, using the command prompt. But testing it with IDLE gives exactly the
> > same error Bernard has. So apparently STDIN can't be accessed with IDLE.
>
> > Rolf
>
> > John Machin wrote:
>
> > > Excuse me, gentlemen, may I be your referee *before* you resort to
> > > pistols at dawn?
>
> > > ===== IDLE =====
> > > IDLE 1.2.1
>
> > >>>> import sys
> > >>>> sys.stdin.readlines
>
> > > Traceback (most recent call last):
> > > File "<pyshell#1>", line 1, in <module>
> > > sys.stdin.readlines
> > > AttributeError: readlines
>
> > > ===== Command Prompt =====
> > > C:\junk>python
> > > Python 2.5.1 (r251:54863, Apr 18 2007, 08:51:08) [MSC v.1310 32 bit
> > > (Intel)] on win32
> > > Type "help", "copyright", "credits" or "license" for more information.
>
> > >>>> import sys
> > >>>> sys.stdin.readlines
>
> > > <built-in method readlines of file object at 0x00B1F020>
>
> > > HTH,
> > > John

Thynnus

1/22/2008 4:34:00 PM

0

On 1/22/2008 8:54 AM, Konstantin Shaposhnikov wrote:
> Hi,
>
> This is Windows bug that is described here: http://support.microsoft.com/default.aspx?k...
>
> This article also contains solution: you need to add registry value:
>
> HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Policies
> \Explorer
> InheritConsoleHandles = 1 (REG_DWORD type)
>
> Do not forget to launch new console (cmd.exe) after editing registry.
>
> Alternatively you can use following command
>
> cat file | python script.py
>
> instead of
>
> cat file | python script.py
>
> Regards,
> Konstantin

Nice one, Konstantin!

I can confirm that adding the registry key solves the problem on XPsp2:

-----After adding InheritConsoleHandles DWORD 1 key-----
Microsoft Windows XP [Version 5.1.2600]
(C) Copyright 1985-2001 Microsoft Corp.

D:\temp>type test3.py | test3.py
['import sys\n', '\n', 'print sys.stdin.readlines ()\n']

D:\temp>

The KB article is quite poorly written. Even though it seems to state that
issue was 'solved for win2k with sp4, for XP with sp1', and gives no indication
that the key is needed after the sp's are applied *even though* it is in fact
necessary to the solution.

Questions:
-Any side effects to look out for?
-If the change is relatively benign, should it be part of the install?
-Is this worth a documentation patch? If yes to where, and I'll give it a
shot.

-Thynnus