Metadata-Version: 2.4
Name: zowe_zos_console_for_zowe_sdk
Version: 1.0.0.dev24
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.10
Classifier: License :: OSI Approved :: Eclipse Public License 2.0 (EPL-2.0)
Description-Content-Type: text/markdown
Requires-Dist: zowe.core_for_zowe_sdk~=1.0.0-dev24
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: license
Dynamic: requires-dist
Dynamic: summary

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"))
```
