mirror of
https://github.com/aykhans/AzSuicideDataVisualization.git
synced 2025-04-22 02:23:48 +00:00
24 lines
379 B
Python
24 lines
379 B
Python
# -*- coding: utf-8 -*-
|
|
"""
|
|
Pywinpty
|
|
========
|
|
This package provides low and high level APIs to create
|
|
pseudo terminals in Windows.
|
|
"""
|
|
|
|
# Local imports
|
|
from .winpty import PTY, WinptyError, __version__
|
|
from .ptyprocess import PtyProcess
|
|
from .enums import Backend, Encoding, MouseMode, AgentConfig
|
|
|
|
|
|
PTY
|
|
PtyProcess
|
|
Backend
|
|
Encoding
|
|
MouseMode
|
|
AgentConfig
|
|
WinptyError
|
|
|
|
__version__
|