Using Zowe SDKs
Using Zowe SDKs
Leverage the Zowe Client Software Development Kits (SDKs) to build client applications and scripts that interface with the mainframe.
The SDKs include programmatic APIs, each of which performs a particular mainframe task. For example, one API package provides the ability to upload and download z/OS data sets. You can leverage that package to rapidly build a client application that interacts with data sets.
The following SDKs are available.
- Zowe Node.js Client SDK
- Zowe Python Client SDK
#
API documentationFor details about the available API endpoints, browse or download the API Reference documentation.
#
Software requirements#
Node.jsIf you install Node SDK packages from the online registry, the required dependencies are installed automatically.
If you download Node SDK packages from Zowe.org, the folder contains dependencies that you must install manually. Extract the TGZ files from the folder, copy the files to your project, and issue the following commands to install the dependencies.
npm install imperative.tgz
npm install core-for-zowe-sdk.tgz
#
PythonIf you install Python SDK packages from the online registry, the required dependencies are installed automatically.
If you download the Python SDK packages from Zowe.org, the downloaded folder contains dependencies that you must install manually. Extract the WHL files from the folder, copy the files to your project, and issue the following command for each dependency:
pip install <fileName>.whl
#
Getting startedTo get started, import the SDK packages to your project. You can pull the packages from an online registry, or download the packages from Zowe.org to install locally.
#
Install SDK from online registryPull the packages from an online registry such as npm or PyPi.
Follow these steps:
In command-line window, navigate to your project directory. Issue the following command to install a package from the registry:
- To import a Node.js package:
npm install <PackageName>
- To import a Python package:
pip install <PackageName>
where
<packageName>
is the name of the SDK package that you want to install, such aszos-files-for-zowe-sdk
.The packages are installed. Node packages are defined in
package.json
in your project. Python packages are installed by default to$PYTHONPATH/Lib/site-packages
(Linux) or to the Python folder in your local/AppData
folder (Windows).- To import a Node.js package:
(Optional) You might want to automatically update the SDK version when updates become available, or you might want to prevent automatic updates.
To define the versioning scheme for Node packages, use npm semver.
To define versioning for Python packages, specify versions or version ranges in a
requirements.txt
file checked-in to your project. More information, see pip documentation
#
Install SDK from local packageDownload and install the packages.
Follow these steps:
Navigate to Zowe.org Downloads. Select your desired programming language in the Zowe Client SDKs section.
The SDK is downloaded to your computer.
Unzip the SDK folder, which contains the packages for each set of functionality (such as z/OS Jobs). Copy each file that you want to install and paste them into your project directory.
Install required dependencies, which are included in the bundle. See Software requirements above for more information.
In a command-line window, navigate to your project directory. Issue one of the following commands.
To install a Node.js package:
npm install <packageName>.tgz
To install a Python package:
pip install <packageName>.whl
where
<packageName>
is the name of the package that you want to install, such aszos-files-for-zowe-sdk
.Repeat the command for each package that you need. Packages are now installed.
#
UsingAfter you install the SDK, you can make API calls to the mainframe from within your project.
#
Using - Node.jsFor Node SDK usage and syntax examples, refer to the following package Readmes:
- Core libraries - Use shared libraries, such as
rest
to access z/OSMF REST APIs,auth
for connecting to token-based authentication services, and more. - z/OS Console - Perform z/OS console operations.
- z/OS Files - Work with data sets on z/OS.
- z/OS Jobs - Work with batch jobs on z/OS.
- z/OS Management Facility - Return data about z/OSMF, such as connection status or a list of available systems.
- z/OS Provisioning - Provision middleware and resources such as IBM CICS, IBM Db2, IBM MQ, and more.
- z/OS TSO - Interact with TSO/E address spaces on z/OS.
- z/OS USS - Work with UNIX system services (USS) files on z/OS.
- z/OS Workflows - Create and manage z/OSMF workflows on z/OS.
#
Using - PythonFor information about the Python SDK, including usage and syntax examples, see the Python SDK ReadTheDocs.
#
ContributingFor information about contributing to the open-source Zowe SDKs, see Developing for Zowe SDKs.