You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

50 lines
2.2 KiB

4 years ago
  1. Metadata-Version: 2.0
  2. Name: pexpect
  3. Version: 4.6.0
  4. Summary: Pexpect allows easy control of interactive console applications.
  5. Home-page: https://pexpect.readthedocs.io/
  6. Author: Noah Spurrier; Thomas Kluyver; Jeff Quast
  7. Author-email: noah@noah.org, thomas@kluyver.me.uk, contact@jeffquast.com
  8. License: ISC license
  9. Description-Content-Type: UNKNOWN
  10. Platform: UNIX
  11. Classifier: Development Status :: 5 - Production/Stable
  12. Classifier: Environment :: Console
  13. Classifier: Intended Audience :: Developers
  14. Classifier: Intended Audience :: System Administrators
  15. Classifier: License :: OSI Approved :: ISC License (ISCL)
  16. Classifier: Operating System :: POSIX
  17. Classifier: Operating System :: MacOS :: MacOS X
  18. Classifier: Programming Language :: Python
  19. Classifier: Programming Language :: Python :: 2.7
  20. Classifier: Programming Language :: Python :: 3
  21. Classifier: Topic :: Software Development
  22. Classifier: Topic :: Software Development :: Libraries :: Python Modules
  23. Classifier: Topic :: Software Development :: Quality Assurance
  24. Classifier: Topic :: Software Development :: Testing
  25. Classifier: Topic :: System
  26. Classifier: Topic :: System :: Archiving :: Packaging
  27. Classifier: Topic :: System :: Installation/Setup
  28. Classifier: Topic :: System :: Shells
  29. Classifier: Topic :: System :: Software Distribution
  30. Classifier: Topic :: Terminals
  31. Requires-Dist: ptyprocess (>=0.5)
  32. Pexpect is a pure Python module for spawning child applications; controlling
  33. them; and responding to expected patterns in their output. Pexpect works like
  34. Don Libes' Expect. Pexpect allows your script to spawn a child application and
  35. control it as if a human were typing commands.
  36. Pexpect can be used for automating interactive applications such as ssh, ftp,
  37. passwd, telnet, etc. It can be used to a automate setup scripts for duplicating
  38. software package installations on different servers. It can be used for
  39. automated software testing. Pexpect is in the spirit of Don Libes' Expect, but
  40. Pexpect is pure Python.
  41. The main features of Pexpect require the pty module in the Python standard
  42. library, which is only available on Unix-like systems. Some features—waiting
  43. for patterns from file descriptors or subprocesses—are also available on
  44. Windows.