Metadata-Version: 2.4
Name: zowe_zosmf_for_zowe_sdk
Version: 1.0.0.dev26
Summary: Zowe Python SDK - z/OSMF 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-dev26
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 Management Facility Package
================================

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

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

<strong>Check z/OSMF status</strong>  

```
from zowe.core_for_zowe_sdk import ProfileManager
from zowe.zosmf_for_zowe_sdk import Zosmf

profile = ProfileManager().load(profile_type="zosmf")
zosmf_info = Zosmf(profile)

print(zosmf_info.get_info())

```
