pywinpty


Namepywinpty JSON
Version 2.0.13 PyPI version JSON
download
home_page
SummaryPseudo terminal support for Windows from Python.
upload_time2024-02-26 17:19:34
maintainer
docs_urlNone
authorEdgar Andrés Margffoy Tuay <andfoy@gmail.com>
requires_python>=3.8
licenseMIT
keywords pty pseudo-terminal conpty windows winpty
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # PyWinpty: Pseudoterminals for Windows in Python

[![Project License - MIT](https://img.shields.io/pypi/l/pywinpty.svg)](./LICENSE.txt)
[![pypi version](https://img.shields.io/pypi/v/pywinpty.svg)](https://pypi.org/project/pywinpty/)
[![conda version](https://img.shields.io/conda/vn/conda-forge/pywinpty.svg)](https://www.anaconda.com/download/)
[![download count](https://img.shields.io/conda/dn/conda-forge/pywinpty.svg)](https://www.anaconda.com/download/)
[![Downloads](https://pepy.tech/badge/pywinpty)](https://pepy.tech/project/pywinpty)
[![PyPI status](https://img.shields.io/pypi/status/pywinpty.svg)](https://github.com/spyder-ide/pywinpty)
[![Windows tests](https://github.com/andfoy/pywinpty/actions/workflows/windows_build.yml/badge.svg)](https://github.com/andfoy/pywinpty/actions/workflows/windows_build.yml)

*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](https://devblogs.microsoft.com/commandline/windows-command-line-introducing-the-windows-pseudo-console-conpty/) interface and the previous, fallback [winpty](https://github.com/rprichard/winpty) library.


## Dependencies
To compile pywinpty sources, you must have [Rust](https://rustup.rs/) 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):
```bash
conda install pywinpty
```

Using pip:
```bash
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](https://rustup.rs/).

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

```batch
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](https://github.com/PyO3/maturin) as the build backend, which can be installed using `pip`:

```batch
pip install maturin
```

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

```bash
maturin develop
```

This package depends on the following Rust crates:

* [PyO3](https://github.com/PyO3/pyo3): Library used to produce Python bindings from Rust code.
* [WinPTY-rs](https://github.com/andfoy/winpty-rs): Create and spawn processes inside a pseudoterminal in Windows from Rust.
* [Maturin](https://github.com/PyO3/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:

```python
# 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:

```batch
pip install pytest pytest-lazy-fixture flaky
```

All the tests can be exceuted using the following command

```bash
python runtests.py
```


## Changelog
Visit our [CHANGELOG](CHANGELOG.md) 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.


            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "pywinpty",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": "",
    "keywords": "pty,pseudo-terminal,conpty,windows,winpty",
    "author": "Edgar Andr\u00e9s Margffoy Tuay <andfoy@gmail.com>",
    "author_email": "Edgar Andr\u00e9s Margffoy Tuay <andfoy@gmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/33/d9/93956af389ab7d4ef2f558b1cc6c5cb48885d254ac882f212964c30a1e4f/pywinpty-2.0.13.tar.gz",
    "platform": null,
    "description": "# PyWinpty: Pseudoterminals for Windows in Python\n\n[![Project License - MIT](https://img.shields.io/pypi/l/pywinpty.svg)](./LICENSE.txt)\n[![pypi version](https://img.shields.io/pypi/v/pywinpty.svg)](https://pypi.org/project/pywinpty/)\n[![conda version](https://img.shields.io/conda/vn/conda-forge/pywinpty.svg)](https://www.anaconda.com/download/)\n[![download count](https://img.shields.io/conda/dn/conda-forge/pywinpty.svg)](https://www.anaconda.com/download/)\n[![Downloads](https://pepy.tech/badge/pywinpty)](https://pepy.tech/project/pywinpty)\n[![PyPI status](https://img.shields.io/pypi/status/pywinpty.svg)](https://github.com/spyder-ide/pywinpty)\n[![Windows tests](https://github.com/andfoy/pywinpty/actions/workflows/windows_build.yml/badge.svg)](https://github.com/andfoy/pywinpty/actions/workflows/windows_build.yml)\n\n*Copyright \u00a9 2017\u20132022 Spyder Project Contributors*\n*Copyright \u00a9 2022\u2013 Edgar Andr\u00e9s Margffoy Tuay*\n\n\n## Overview\n\nPyWinpty 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](https://devblogs.microsoft.com/commandline/windows-command-line-introducing-the-windows-pseudo-console-conpty/) interface and the previous, fallback [winpty](https://github.com/rprichard/winpty) library.\n\n\n## Dependencies\nTo compile pywinpty sources, you must have [Rust](https://rustup.rs/) installed.\nOptionally, you can also have Winpty's C header and library files available on your include path.\n\n\n## Installation\nYou can install this library by using conda or pip package managers, as it follows:\n\nUsing conda (Recommended):\n```bash\nconda install pywinpty\n```\n\nUsing pip:\n```bash\npip install pywinpty\n```\n\n## Building from source\n\nTo build from sources, you will require both a working stable or nightly Rust toolchain with\ntarget `x86_64-pc-windows-msvc`, which can be installed using [rustup](https://rustup.rs/).\n\nOptionally, this library can be linked against winpty library, which you can install using conda-forge:\n\n```batch\nconda install winpty -c conda-forge\n```\n\nIf you don't want to use conda, you will need to have the winpty binaries and headers available on your PATH.\n\nFinally, pywinpty uses [Maturin](https://github.com/PyO3/maturin) as the build backend, which can be installed using `pip`:\n\n```batch\npip install maturin\n```\n\nTo test your compilation environment settings, you can build pywinpty sources locally, by\nexecuting:\n\n```bash\nmaturin develop\n```\n\nThis package depends on the following Rust crates:\n\n* [PyO3](https://github.com/PyO3/pyo3): Library used to produce Python bindings from Rust code.\n* [WinPTY-rs](https://github.com/andfoy/winpty-rs): Create and spawn processes inside a pseudoterminal in Windows from Rust.\n* [Maturin](https://github.com/PyO3/maturin): Build system to build and publish Rust-based Python packages.\n\n## Package usage\nPywinpty offers a single python wrapper around winpty library functions.\nThis implies that using a single object (``winpty.PTY``) it is possible to access to all functionality, as it follows:\n\n```python\n# High level usage using `spawn`\nfrom winpty import PtyProcess\n\nproc = PtyProcess.spawn('python')\nproc.write('print(\"hello, world!\")\\r\\n')\nproc.write('exit()\\r\\n')\nwhile proc.isalive():\n\tprint(proc.readline())\n\n# Low level usage using the raw `PTY` object\nfrom winpty import PTY\n\n# Start a new winpty-agent process of size (cols, rows)\ncols, rows = 80, 25\nprocess = PTY(cols, rows)\n\n# Spawn a new console process, e.g., CMD\nprocess.spawn(br'C:\\windows\\system32\\cmd.exe')\n\n# Read console output (Unicode)\nprocess.read()\n\n# Write input to console (Unicode)\nprocess.write(b'Text')\n\n# Resize console size\nnew_cols, new_rows = 90, 30\nprocess.set_size(new_cols, new_rows)\n\n# Know if the process is alive\nalive = process.isalive()\n\n# End winpty-agent process\ndel process\n```\n\n## Running tests\nWe use pytest to run tests as it follows (after calling ``maturin develop``), the test suite depends\non pytest-lazy-fixture, which can be installed via pip:\n\n```batch\npip install pytest pytest-lazy-fixture flaky\n```\n\nAll the tests can be exceuted using the following command\n\n```bash\npython runtests.py\n```\n\n\n## Changelog\nVisit our [CHANGELOG](CHANGELOG.md) file to learn more about our new features and improvements.\n\n\n## Contribution guidelines\nWe 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.\n\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Pseudo terminal support for Windows from Python.",
    "version": "2.0.13",
    "project_urls": {
        "Source Code": "https://github.com/spyder-ide/pywinpty"
    },
    "split_keywords": [
        "pty",
        "pseudo-terminal",
        "conpty",
        "windows",
        "winpty"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "37c4940928b15435d56f7af38c0fab36cd00413f185721fcef4265d06bd543c9",
                "md5": "caeeea405dee7ec78a3ebb9cefbb8103",
                "sha256": "697bff211fb5a6508fee2dc6ff174ce03f34a9a233df9d8b5fe9c8ce4d5eaf56"
            },
            "downloads": -1,
            "filename": "pywinpty-2.0.13-cp310-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "caeeea405dee7ec78a3ebb9cefbb8103",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1398988,
            "upload_time": "2024-02-26T17:23:22",
            "upload_time_iso_8601": "2024-02-26T17:23:22.675279Z",
            "url": "https://files.pythonhosted.org/packages/37/c4/940928b15435d56f7af38c0fab36cd00413f185721fcef4265d06bd543c9/pywinpty-2.0.13-cp310-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "02f02004a0c907eb74155b6fafa5801931d9e15d55905db6811f146cc2d145cd",
                "md5": "04ccc82dfedc294228ec21d13917cfed",
                "sha256": "b96fb14698db1284db84ca38c79f15b4cfdc3172065b5137383910567591fa99"
            },
            "downloads": -1,
            "filename": "pywinpty-2.0.13-cp311-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "04ccc82dfedc294228ec21d13917cfed",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1399007,
            "upload_time": "2024-02-26T17:23:35",
            "upload_time_iso_8601": "2024-02-26T17:23:35.849155Z",
            "url": "https://files.pythonhosted.org/packages/02/f0/2004a0c907eb74155b6fafa5801931d9e15d55905db6811f146cc2d145cd/pywinpty-2.0.13-cp311-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4937c0dcb1dca094af3605dd22c0528839a65bc4e1e78bb91eb12841d18fa3f1",
                "md5": "c56e0ec491125b5debf540bdd71627a4",
                "sha256": "2fd876b82ca750bb1333236ce98488c1be96b08f4f7647cfdf4129dfad83c2d4"
            },
            "downloads": -1,
            "filename": "pywinpty-2.0.13-cp312-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "c56e0ec491125b5debf540bdd71627a4",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1399803,
            "upload_time": "2024-02-26T17:21:51",
            "upload_time_iso_8601": "2024-02-26T17:21:51.799805Z",
            "url": "https://files.pythonhosted.org/packages/49/37/c0dcb1dca094af3605dd22c0528839a65bc4e1e78bb91eb12841d18fa3f1/pywinpty-2.0.13-cp312-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e284b27efd41c14e3a62ce768b14928fb3c6134ba4b1dcdbf40264f279f92b37",
                "md5": "f2b282d7318205a931e9dd891a814587",
                "sha256": "61d420c2116c0212808d31625611b51caf621fe67f8a6377e2e8b617ea1c1f7d"
            },
            "downloads": -1,
            "filename": "pywinpty-2.0.13-cp38-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "f2b282d7318205a931e9dd891a814587",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1399479,
            "upload_time": "2024-02-26T17:23:46",
            "upload_time_iso_8601": "2024-02-26T17:23:46.018363Z",
            "url": "https://files.pythonhosted.org/packages/e2/84/b27efd41c14e3a62ce768b14928fb3c6134ba4b1dcdbf40264f279f92b37/pywinpty-2.0.13-cp38-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c9f220ee2f6aab76ddd10abfab7dfb98c024c6beb471d2990f35eee41684b123",
                "md5": "5ddffcb3590c0d5c9c884e7865dd4dd4",
                "sha256": "71cb613a9ee24174730ac7ae439fd179ca34ccb8c5349e8d7b72ab5dea2c6f4b"
            },
            "downloads": -1,
            "filename": "pywinpty-2.0.13-cp39-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "5ddffcb3590c0d5c9c884e7865dd4dd4",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1399252,
            "upload_time": "2024-02-26T17:23:34",
            "upload_time_iso_8601": "2024-02-26T17:23:34.520974Z",
            "url": "https://files.pythonhosted.org/packages/c9/f2/20ee2f6aab76ddd10abfab7dfb98c024c6beb471d2990f35eee41684b123/pywinpty-2.0.13-cp39-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "33d993956af389ab7d4ef2f558b1cc6c5cb48885d254ac882f212964c30a1e4f",
                "md5": "1b2f03312f6ca91a894c35cea8bc6e3b",
                "sha256": "c34e32351a3313ddd0d7da23d27f835c860d32fe4ac814d372a3ea9594f41dde"
            },
            "downloads": -1,
            "filename": "pywinpty-2.0.13.tar.gz",
            "has_sig": false,
            "md5_digest": "1b2f03312f6ca91a894c35cea8bc6e3b",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 28240,
            "upload_time": "2024-02-26T17:19:34",
            "upload_time_iso_8601": "2024-02-26T17:19:34.686104Z",
            "url": "https://files.pythonhosted.org/packages/33/d9/93956af389ab7d4ef2f558b1cc6c5cb48885d254ac882f212964c30a1e4f/pywinpty-2.0.13.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-02-26 17:19:34",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "spyder-ide",
    "github_project": "pywinpty",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "pywinpty"
}
        
Elapsed time: 0.22610s