mirror of https://github.com/databricks/cli.git
8 lines
144 B
Python
8 lines
144 B
Python
|
import os
|
||
|
import sys
|
||
|
import json
|
||
|
|
||
|
out = {"PYTHONPATH": sys.path, "CWD": os.getcwd()}
|
||
|
json_object = json.dumps(out, indent=4)
|
||
|
print(json_object)
|