Metadata-Version: 2.1
Name: zowe-zos-console-for-zowe-sdk
Version: 1.0.0.dev23
Summary: Zowe Python SDK - z/OS Console package
Home-page: https://github.com/zowe/zowe-client-python-sdk
Author: Zowe
Author-email: zowe.robot@gmail.com
License: EPL-2.0
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: License :: OSI Approved :: Eclipse Public License 2.0 (EPL-2.0)
Description-Content-Type: text/markdown

z/OS Console Package
====================

Contains APIs to interact with the z/OS console (using z/OSMF console REST endpoints).

Examples
------------

<strong>Submit a command to the z/OS console</strong>  

```
from zowe.core_for_zowe_sdk import ProfileManager
from zowe.zos_console_for_zowe_sdk import Console

profile = ProfileManager().load(profile_name="zosmf")

with Console(profile) as console_info:
    print(console_info.issue_command(command="D IPLINFO", console="EMCS"))
```
