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.tar.gz
(11.5 kB
view details)
Built Distribution
automvs-0.0.9-py3-none-any.whl
(11.5 kB
view details)
File details
Details for the file automvs-0.0.9.tar.gz
.
File metadata
- Download URL: automvs-0.0.9.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 | c44c5f35d49f56602d787066e0d65257335bd06b75640264db0a13c139ff8c72 |
|
MD5 | 34432f9b7faae6bed49659fd2116ea18 |
|
BLAKE2b-256 | 03ebcab7341b815123aed44b4a005a9aa770193b3f76e279bf3c81209491eeff |
File details
Details for the file automvs-0.0.9-py3-none-any.whl
.
File metadata
- Download URL: automvs-0.0.9-py3-none-any.whl
- Upload date:
- Size: 11.5 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 | 37b89a547a7f9ba4597ee005b17c2dd011d11a35c2fa3e901836108a345538a0 |
|
MD5 | c87cb663a7cf5f5df40a36876991f95b |
|
BLAKE2b-256 | 8606a5688d52208f243f8d024bfe373bd13ceb6e68c613bd2445439b2b3f7de0 |