Metadata-Version: 2.1
Name: zowe-zosmf-for-zowe-sdk
Version: 1.0.0.dev12
Summary: Zowe Python SDK - z/OSMF 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
Requires-Dist: zowe.core-for-zowe-sdk ~=1.0.0.dev12

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())

```
