~ubuntu-branches/ubuntu/saucy/pexpect/saucy

« back to all changes in this revision

Viewing changes to README.txt

  • Committer: Bazaar Package Importer
  • Author(s): Ganesan Rajagopal
  • Date: 2004-07-09 09:45:36 UTC
  • Revision ID: james.westby@ubuntu.com-20040709094536-4bwaves00b2h2gog
Tags: upstream-0.999
ImportĀ upstreamĀ versionĀ 0.999

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
Pexpect
 
2
a Pure Python Expect-like module
 
3
 
 
4
Pexpect makes Python a better tool for controlling other applications.
 
5
 
 
6
Pexpect is a pure Python module for spawning child applications; controlling
 
7
them; and responding to expected patterns in their output. Pexpect works like
 
8
Don Libes' Expect. Pexpect allows your script to spawn a child application and
 
9
control it as if a human were typing commands.
 
10
 
 
11
Pexpect can be used for automating interactive applications such as ssh, ftp,
 
12
passwd, telnet, etc. It can be used to a automate setup scripts for
 
13
duplicating software package installations on different servers. It can be
 
14
used for automated software testing. Pexpect is in the spirit of Don Libes'
 
15
Expect, but Pexpect is pure Python. Unlike other Expect-like modules for
 
16
Python, Pexpect does not require TCL or Expect nor does it require C
 
17
extensions to be compiled. It should work on any platform that supports the
 
18
standard Python pty module. The Pexpect interface was designed to be easy to use.
 
19
 
 
20
License: Python Software Foundation License
 
21
 
 
22
Noah Spurrier
 
23
http://pexpect.sourceforge.net/
 
24