1

dl opt sc

This commit is contained in:
Evan Pratten 2023-10-25 15:42:37 -04:00
parent c538d401c0
commit 1770c2978d
2 changed files with 48 additions and 4 deletions

View File

@ -0,0 +1,44 @@
#! /usr/bin/env python
import argparse
import sys
import configparser
def main() -> int:
# Handle program arguments
ap = argparse.ArgumentParser(
description="Nicely lists the options stored in a Deadline .options file"
)
ap.add_argument("options_file", type=str, help="The .options file to read")
ap.add_argument(
"--show-types", action="store_true", help="Show the type of each option"
)
ap.add_argument(
"--show-defaults",
action="store_true",
help="Show the default value of each option",
)
args = ap.parse_args()
# Read the file
with open(args.options_file, "r") as f:
config_string = f.read()
# Parse the file
config = configparser.ConfigParser()
config.read_string(config_string)
# List each option
for section in config.sections():
print(f"{section}{'*' if bool(config[section].get('Required', False)) else ''}: {config[section].get('Description', 'No description')}")
if args.show_types:
print(f" Type: {config[section].get('Type', 'No type')}")
if args.show_defaults:
print(f" Default: {config[section].get('Default', 'No default')}")
return 0
if __name__ == "__main__":
sys.exit(main())

View File

@ -16,11 +16,11 @@ Host github.com gist.github.com
# IdentityFile %d/.ssh/id_rsa
# Home network
Host unifi
HostName DreamMachinePro.local
Host unifi
HostName dreammachinepro.local
User root
PreferredAuthentications password
PubkeyAuthentication no
#PreferredAuthentications password
# PubkeyAuthentication no
Host ewpratten-steamdeck
HostName ewpratten-steamdeck.local