mirror of
https://github.com/kforney/pentest-distro-builder.git
synced 2024-11-29 03:31:59 -07:00
14 lines
290 B
Python
14 lines
290 B
Python
|
# Copyright (c) Microsoft Corporation. All rights reserved.
|
||
|
# Licensed under the MIT License.
|
||
|
|
||
|
import json
|
||
|
import sys
|
||
|
|
||
|
obj = {}
|
||
|
obj["versionInfo"] = sys.version_info[:4]
|
||
|
obj["sysPrefix"] = sys.prefix
|
||
|
obj["version"] = sys.version
|
||
|
obj["is64Bit"] = sys.maxsize > 2**32
|
||
|
|
||
|
print(json.dumps(obj))
|