Skip to content

Latest commit

 

History

History
39 lines (33 loc) · 1.36 KB

README.md

File metadata and controls

39 lines (33 loc) · 1.36 KB

Workshop Agenda

  1. Create a local Zowe CLI profile (optional)

  2. Set up Python and PIP

  3. Install Zowe Client Python SDK packages and its dependencies

    • pip install zowe
    • pip install requests
    • pip install keyring
    • pip install pyyaml
    • pip install urllib3
    • pip install commentjson
  4. Instantiate a Console object and verify its functionality

    • By providing properties directly in the code
    • By using the ProfileManager class and a Zowe CLI profile
  5. Instantiate a Files object and verify its functionality

    • List user datasets
    • List all members of a dataset
    • Print the content of a dataset/member
  6. Instantiate a Jobs object and verify its functionality

    • Submit a job from a dataset
    • Retrieve a job status by name and ID
    • List jobs by owner
  7. Apply the acquired knowledge

    • Type a sample JCL job or download it from the mainframe
    • Modify and upload the JCL as a new dataset/member
    • Submit the JCL from the mainframe and check the status
    • Submit the JCL from the local file and check the status
    • Submit the JCL as a plain text and check the status
  8. Explore new functionality being added to the SDK