Skip to main content

Pseudo terminal support for Windows from Python.

Project description

PyWinpty: Pseudoterminals for Windows in Python

Project License - MIT pypi version conda version download count Downloads PyPI status Windows tests

Copyright © 2017–2022 Spyder Project Contributors Copyright © 2022– Edgar Andrés Margffoy Tuay

Overview

PyWinpty allows creating and communicating with Windows processes that receive input and print outputs via console input and output pipes. PyWinpty supports both the native ConPTY interface and the previous, fallback winpty library.

Dependencies

To compile pywinpty sources, you must have Rust installed. Optionally, you can also have Winpty's C header and library files available on your include path.

Installation

You can install this library by using conda or pip package managers, as it follows:

Using conda (Recommended):

conda install pywinpty

Using pip:

pip install pywinpty

Building from source

To build from sources, you will require both a working stable or nightly Rust toolchain with target x86_64-pc-windows-msvc, which can be installed using rustup.

Optionally, this library can be linked against winpty library, which you can install using conda-forge:

conda install winpty -c conda-forge

If you don't want to use conda, you will need to have the winpty binaries and headers available on your PATH.

Finally, pywinpty uses Maturin as the build backend, which can be installed using pip:

pip install maturin

To test your compilation environment settings, you can build pywinpty sources locally, by executing:

maturin develop

This package depends on the following Rust crates:

  • PyO3: Library used to produce Python bindings from Rust code.
  • WinPTY-rs: Create and spawn processes inside a pseudoterminal in Windows from Rust.
  • Maturin: Build system to build and publish Rust-based Python packages.

Package usage

Pywinpty offers a single python wrapper around winpty library functions. This implies that using a single object (winpty.PTY) it is possible to access to all functionality, as it follows:

# High level usage using `spawn`
from winpty import PtyProcess

proc = PtyProcess.spawn('python')
proc.write('print("hello, world!")\r\n')
proc.write('exit()\r\n')
while proc.isalive():
	print(proc.readline())

# Low level usage using the raw `PTY` object
from winpty import PTY

# Start a new winpty-agent process of size (cols, rows)
cols, rows = 80, 25
process = PTY(cols, rows)

# Spawn a new console process, e.g., CMD
process.spawn(br'C:\windows\system32\cmd.exe')

# Read console output (Unicode)
process.read()

# Write input to console (Unicode)
process.write(b'Text')

# Resize console size
new_cols, new_rows = 90, 30
process.set_size(new_cols, new_rows)

# Know if the process is alive
alive = process.isalive()

# End winpty-agent process
del process

Running tests

We use pytest to run tests as it follows (after calling maturin develop), the test suite depends on pytest-lazy-fixture, which can be installed via pip:

pip install pytest pytest-lazy-fixture flaky

All the tests can be exceuted using the following command

python runtests.py

Changelog

Visit our CHANGELOG file to learn more about our new features and improvements.

Contribution guidelines

We follow PEP8 and PEP257 for pure python packages and Rust to compile extensions. We use MyPy type annotations for all functions and classes declared on this package. Feel free to send a PR or create an issue if you have any problem/question.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pywinpty-2.0.13.tar.gz (28.2 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

pywinpty-2.0.13-cp312-none-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.12Windows x86-64

pywinpty-2.0.13-cp311-none-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.11Windows x86-64

pywinpty-2.0.13-cp310-none-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.10Windows x86-64

pywinpty-2.0.13-cp39-none-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.9Windows x86-64

pywinpty-2.0.13-cp38-none-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.8Windows x86-64

File details

Details for the file pywinpty-2.0.13.tar.gz.

File metadata

  • Download URL: pywinpty-2.0.13.tar.gz
  • Upload date:
  • Size: 28.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.11.8

File hashes

Hashes for pywinpty-2.0.13.tar.gz
Algorithm Hash digest
SHA256 c34e32351a3313ddd0d7da23d27f835c860d32fe4ac814d372a3ea9594f41dde
MD5 1b2f03312f6ca91a894c35cea8bc6e3b
BLAKE2b-256 33d993956af389ab7d4ef2f558b1cc6c5cb48885d254ac882f212964c30a1e4f

See more details on using hashes here.

File details

Details for the file pywinpty-2.0.13-cp312-none-win_amd64.whl.

File metadata

File hashes

Hashes for pywinpty-2.0.13-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 2fd876b82ca750bb1333236ce98488c1be96b08f4f7647cfdf4129dfad83c2d4
MD5 c56e0ec491125b5debf540bdd71627a4
BLAKE2b-256 4937c0dcb1dca094af3605dd22c0528839a65bc4e1e78bb91eb12841d18fa3f1

See more details on using hashes here.

File details

Details for the file pywinpty-2.0.13-cp311-none-win_amd64.whl.

File metadata

File hashes

Hashes for pywinpty-2.0.13-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 b96fb14698db1284db84ca38c79f15b4cfdc3172065b5137383910567591fa99
MD5 04ccc82dfedc294228ec21d13917cfed
BLAKE2b-256 02f02004a0c907eb74155b6fafa5801931d9e15d55905db6811f146cc2d145cd

See more details on using hashes here.

File details

Details for the file pywinpty-2.0.13-cp310-none-win_amd64.whl.

File metadata

File hashes

Hashes for pywinpty-2.0.13-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 697bff211fb5a6508fee2dc6ff174ce03f34a9a233df9d8b5fe9c8ce4d5eaf56
MD5 caeeea405dee7ec78a3ebb9cefbb8103
BLAKE2b-256 37c4940928b15435d56f7af38c0fab36cd00413f185721fcef4265d06bd543c9

See more details on using hashes here.

File details

Details for the file pywinpty-2.0.13-cp39-none-win_amd64.whl.

File metadata

File hashes

Hashes for pywinpty-2.0.13-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 71cb613a9ee24174730ac7ae439fd179ca34ccb8c5349e8d7b72ab5dea2c6f4b
MD5 5ddffcb3590c0d5c9c884e7865dd4dd4
BLAKE2b-256 c9f220ee2f6aab76ddd10abfab7dfb98c024c6beb471d2990f35eee41684b123

See more details on using hashes here.

File details

Details for the file pywinpty-2.0.13-cp38-none-win_amd64.whl.

File metadata

File hashes

Hashes for pywinpty-2.0.13-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 61d420c2116c0212808d31625611b51caf621fe67f8a6377e2e8b617ea1c1f7d
MD5 f2b282d7318205a931e9dd891a814587
BLAKE2b-256 e284b27efd41c14e3a62ce768b14928fb3c6134ba4b1dcdbf40264f279f92b37

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page