mirror of
https://github.com/CoolProp/CoolProp.git
synced 2026-01-15 00:48:18 -05:00
7 lines
300 B
Python
7 lines
300 B
Python
from __future__ import print_function
|
|
|
|
import CoolProp.CoolProp as CP, json
|
|
jj = json.loads(CP.get_config_as_json_string())
|
|
with open('../coolprop/configuration_keys.rst.in', 'w') as fp:
|
|
for key in sorted(jj.keys()):
|
|
fp.write('``' + key + '``: ' + CP.config_key_description(key) + '\n\n') |