METADATA 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. Metadata-Version: 2.1
  2. Name: pexpect
  3. Version: 4.9.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. Project-URL: Bug Tracker, https://github.com/pexpect/pexpect/issues
  10. Project-URL: Documentation, https://pexpect.readthedocs.io/
  11. Project-URL: Source Code, https://github.com/pexpect/pexpect
  12. Project-URL: History, https://pexpect.readthedocs.io/en/stable/history.html
  13. Platform: UNIX
  14. Classifier: Development Status :: 5 - Production/Stable
  15. Classifier: Environment :: Console
  16. Classifier: Intended Audience :: Developers
  17. Classifier: Intended Audience :: System Administrators
  18. Classifier: License :: OSI Approved :: ISC License (ISCL)
  19. Classifier: Operating System :: POSIX
  20. Classifier: Operating System :: MacOS :: MacOS X
  21. Classifier: Programming Language :: Python
  22. Classifier: Programming Language :: Python :: 2.7
  23. Classifier: Programming Language :: Python :: 3
  24. Classifier: Topic :: Software Development
  25. Classifier: Topic :: Software Development :: Libraries :: Python Modules
  26. Classifier: Topic :: Software Development :: Quality Assurance
  27. Classifier: Topic :: Software Development :: Testing
  28. Classifier: Topic :: System
  29. Classifier: Topic :: System :: Archiving :: Packaging
  30. Classifier: Topic :: System :: Installation/Setup
  31. Classifier: Topic :: System :: Shells
  32. Classifier: Topic :: System :: Software Distribution
  33. Classifier: Topic :: Terminals
  34. License-File: LICENSE
  35. Requires-Dist: ptyprocess (>=0.5)
  36. Pexpect is a pure Python module for spawning child applications; controlling
  37. them; and responding to expected patterns in their output. Pexpect works like
  38. Don Libes' Expect. Pexpect allows your script to spawn a child application and
  39. control it as if a human were typing commands.
  40. Pexpect can be used for automating interactive applications such as ssh, ftp,
  41. passwd, telnet, etc. It can be used to automate setup scripts for duplicating
  42. software package installations on different servers. It can be used for
  43. automated software testing. Pexpect is in the spirit of Don Libes' Expect, but
  44. Pexpect is pure Python.
  45. The main features of Pexpect require the pty module in the Python standard
  46. library, which is only available on Unix-like systems. Some features—waiting
  47. for patterns from file descriptors or subprocesses—are also available on
  48. Windows.