Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • cellframe/python-cellframe
1 result
Show changes
Commits on Source (2)
build/*
example/tmp
example/var
*.text
_skbuild/
.pybuild/
dist/
CellFrame.egg-info/
debian/*.log
debian/*.debhelper
debian/*.substvars
debian/python3-cellframe-doc/
debian/python3-cellframe/
debian/files
*.text
CMakeLists.txt.user*
# Импортируем модуль os
import os
# Импортируем модуль sys
import sys
while True:
# Принимаем имя переменной среды
key_value = input(«Enter the key of the environment variable:»)
# Проверяем, инициализирована ли переменная
try:
if os.environ[key_value]:
print(«The value of», key_value, » is «, os.environ[key_value])
# Если переменной не присвоено значение, то ошибка
except KeyError:
print(key_value, ‘environment variable is not set.’)
# Завершаем процесс выполнения скрипта
sys.exit(1)
\ No newline at end of file
......@@ -27,6 +27,10 @@ int dap_chain_plugins_init(dap_config_t *a_config){
return -1;
}
PyImport_AppendInittab("API_CellFrame", PyInit_libCellFrame);
#ifdef DAP_BUILD_WITH_PYTHON_ENV
const wchar_t *l_python_env_path = L"/opt/cellframe-node/lib/python3.7";
Py_SetPath(l_python_env_path);
#endif
Py_Initialize();
PyEval_InitThreads();
PyObject *l_sys_module = PyImport_ImportModule("sys");
......