Metadata-Version: 2.1
Name: zowe-zos-console-for-zowe-sdk
Version: 1.0.0.dev15
Summary: Zowe Python SDK - z/OS Console package
Home-page: https://github.com/zowe/zowe-client-python-sdk
Author: Guilherme Cartier
Author-email: gcartier94@gmail.com
License: EPL-2.0
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
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")
console_info = Console(profile)

print(console_info.issue_command(command="D IPLINFO", console="EMCS"))
```
