Python library for MVS/CE automation
Project description
MVS Automation Python Library
This library allows the use of MVS/CE in an automated fashion. This can be used for deploying XMI files, pushing out updates, building software, creating custom MVS deployments.
Using this library requires a recent version of hercules SDL and MVS/CE.
Example:
IPL MVS/CE and submit JCL and check the results, attach a device and send an operator command::
from automvs import automation
cwd = os.getcwd()
build = automation()
build.ipl(clpa=False)
try:
print("Submitting {}/jcl/upload.jcl".format(cwd))
with open("{}/jcl/upload.jcl".format(cwd),"r") as jcl:
build.submit(jcl.read())
build.wait_for_string("HASP250 UPLOAD IS PURGED")
build.check_maxcc("UPLOAD")
build.send_herc('devinit 170 tape/zdlib1.het')
build.wait_for_string("IEF238D SMP4P44 - REPLY DEVICE NAME OR 'CANCEL'.")
build.send_reply('170')
build.send_oper("$DU")
finally:
build.quit_hercules()
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
automvs-0.0.9.post2.tar.gz
(11.5 kB
view details)
Built Distribution
File details
Details for the file automvs-0.0.9.post2.tar.gz
.
File metadata
- Download URL: automvs-0.0.9.post2.tar.gz
- Upload date:
- Size: 11.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.10.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3337688549a0d1fbbb3c4d943ff3c07505042105432d7016968e0703091359d7 |
|
MD5 | c58ca26dc17c61fee0f40576c921abd1 |
|
BLAKE2b-256 | 7bd998f214f56e407b6367acf54c127f37b8b44d211011348502416b186acb92 |
File details
Details for the file automvs-0.0.9.post2-py3-none-any.whl
.
File metadata
- Download URL: automvs-0.0.9.post2-py3-none-any.whl
- Upload date:
- Size: 11.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.10.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bb2ffb1d84084ff4f67229a2aa6de12308d7b73b21b54a277f61eebf7cdaf7a5 |
|
MD5 | d72882361e4af44068d2d1afaef3d021 |
|
BLAKE2b-256 | 755d1bfe3205a53a200aa941586cd0b880fb64fd5fd173a9b93ab18ca58b04eb |