|
|
|
|
|
PythonTerminate (Function) In french: PythonTermine Unloads the Python DLL and frees memory. sModulePython is string
<IF CibleExécution=Windows>
sModulePython = SysDir(srLocalAppData) + ..
[fSep]+"Programs\Python\Python39\python39.dll"
<ELSE>
<IF CibleExécution=Linux>
sModulePython ="/usr/bin/python/python39.so"
<END>
<END>
IF NOT PythonInitialize(sModulePython) THEN
Error("Echec de l'initialisation de Python", ErrorInfo())
RETURN
END
Info(FonctionPythonImporteeHelloWorld())
IF NOT PythonAddPath(fDataDir()) THEN
Error("Echec de l'initialisation d'un chemin Python", ErrorInfo())
RETURN
END
Info(PythonExecute("fichier_python", "FonctionPythonHelloWorldNonImportee"))
PythonTerminate()
Syntax
<Result> = PythonTerminate()
<Result>: Boolean - True if memory has been freed,
- False otherwise.
Related Examples:
|
Training (WINDEV): WD Python
[ + ] This example shows how to run Python code in WINDEV applications. Prerequisite: Python 3 must be installed on the computer. To get Python 3, go to http://legacy.python.org/download/
|
Business / UI classification: Neutral code
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|