pipe tutorial

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Gigs_

    #1

    pipe tutorial

    does anyone know some good tutorial on pipes in python?

    thx
  • Larry Bates

    #2
    Re: pipe tutorial

    Gigs_ wrote:
    does anyone know some good tutorial on pipes in python?
    >
    thx
    Pipes is specific only to Windows (you can use sockets
    on Windows/Linux/mac). The only specific treatment of
    pipes I've seen is in Python Programming for Win32 by
    Mark Hammond/Andy Robinson.

    -Larry

    Comment

    • Gabriel Genellina

      #3
      Re: pipe tutorial

      En Tue, 22 May 2007 11:11:45 -0300, Larry Bates <larry.bates@we bsafe.com>
      escribió:
      Gigs_ wrote:
      >does anyone know some good tutorial on pipes in python?
      >
      Pipes is specific only to Windows (you can use sockets
      on Windows/Linux/mac). The only specific treatment of
      pipes I've seen is in Python Programming for Win32 by
      Mark Hammond/Andy Robinson.
      There are pipes in Unix too, named and anonymous, and I think they predate
      its introduction in Windows (first on NT4 I believe). "Pipes" used to
      redirect standard input/output are certainly much older.
      To the OP: what do you want to do, exactly?

      --
      Gabriel Genellina

      Comment

      • Larry Bates

        #4
        Re: pipe tutorial

        Gabriel Genellina wrote:
        En Tue, 22 May 2007 11:11:45 -0300, Larry Bates
        <larry.bates@we bsafe.comescrib ió:
        >
        >Gigs_ wrote:
        >>does anyone know some good tutorial on pipes in python?
        >>
        >Pipes is specific only to Windows (you can use sockets
        >on Windows/Linux/mac). The only specific treatment of
        >pipes I've seen is in Python Programming for Win32 by
        >Mark Hammond/Andy Robinson.
        >
        There are pipes in Unix too, named and anonymous, and I think they
        predate its introduction in Windows (first on NT4 I believe). "Pipes"
        used to redirect standard input/output are certainly much older.
        To the OP: what do you want to do, exactly?
        >
        --Gabriel Genellina
        >
        You are right. I didn't think about piping of commands since that
        wouldn't really be a Python question. I thought user wanted pipes
        for interprocess communication that is prevalent in Windows. I
        guess the OP can chime in and we can answer the question better.

        -Larry

        Comment

        • Walter Bumes

          #5
          Re: pipe tutorial

          Larry Bates schrieb:
          Gabriel Genellina wrote:
          >En Tue, 22 May 2007 11:11:45 -0300, Larry Bates
          ><larry.bates@w ebsafe.comescri bió:
          >>
          >>Gigs_ wrote:
          >>>does anyone know some good tutorial on pipes in python?
          >>Pipes is specific only to Windows (you can use sockets
          >>on Windows/Linux/mac). The only specific treatment of
          >>pipes I've seen is in Python Programming for Win32 by
          >>Mark Hammond/Andy Robinson.
          >There are pipes in Unix too, named and anonymous, and I think they
          >predate its introduction in Windows (first on NT4 I believe). "Pipes"
          >used to redirect standard input/output are certainly much older.
          >To the OP: what do you want to do, exactly?
          >>
          >--Gabriel Genellina
          >>
          You are right. I didn't think about piping of commands since that
          wouldn't really be a Python question. I thought user wanted pipes
          for interprocess communication that is prevalent in Windows. I
          guess the OP can chime in and we can answer the question better.
          >
          -Larry
          Hello Larry,
          i have programmed pipes with Windows NT for about 8-9 years ago and have
          made an update of the program two years ago under Windows XP. There
          are differences in the security settings. Under XP it's not allowed to
          connect to the pc by network! You have to set security options when you
          create the pipe on the local machine to allow external access to the pipe.

          Afterwards, i would prefer a standard TCP or UDP connection, because
          it's available on every system and i do not see any advantage for using
          the pipes.

          In actual projects i use only TCP or UDP - depending what i have to to.

          Walter

          Comment

          Working...