-
Content Count
966 -
Joined
-
Last visited
-
Days Won
61
Everything posted by pyscripter
-
Passing more than one argument from Python to Delphi
pyscripter replied to IJCdelpi's topic in Python4Delphi
It should be 'ii:read_AP_register' if you are expecting two integer arguments. -
Maybe this approach is useful.
- 2 replies
-
- pyvista
- datavisualization
-
(and 1 more)
Tagged with:
-
See Embarcadero/PythonEnviroments: Components to simplify the deployment for Python environments for Delphi applications using Python4Delphi. (github.com)
-
Delphi 11.2 unofficial LSP patch
pyscripter replied to Brandon Staggs's topic in Delphi IDE and APIs
Yes. -
Delphi 11.2 unofficial LSP patch
pyscripter replied to Brandon Staggs's topic in Delphi IDE and APIs
FWIW, I have tried the unofficial LSP patches and I could no longer debug programs. So I went back to the original dlls and debugging was available again. -
What did you expect to get? Demo03 shows you how to use TPythonDelphiVar.
-
Use Demo 33 as a guide. As @David Heffernan said running python in threads is not trivial and unlikely to save you time.
-
Getting feedback from the execution. As exceptions or in another kind of management.
pyscripter replied to Juan C.Cilleruelo's topic in Python4Delphi
FPyModule.Name := '__main__'; meeds to be FPyModule.ModuleName := '__main__'; Better to call your module something else (delphimodule or anything else. in the demos 'spam' is used) and import that module. -
Getting feedback from the execution. As exceptions or in another kind of management.
pyscripter replied to Juan C.Cilleruelo's topic in Python4Delphi
Please do. You will do everyone a favour. -
Getting feedback from the execution. As exceptions or in another kind of management.
pyscripter replied to Juan C.Cilleruelo's topic in Python4Delphi
Call you delphi module say "delphimodule" and in your script: import delphimodule print(delphimodule.QUANTITY); or from delphimodule import QUANTITY print(QUANTITY) Please look at the demos, before asking questions here and do yourself a favour. Do watch the two video tutorials. It is only two hours viewing and will save you masses of time if you plan to do any serious work with P4D. -
Getting feedback from the execution. As exceptions or in another kind of management.
pyscripter replied to Juan C.Cilleruelo's topic in Python4Delphi
Also do not call the module __main__. This is name is reserved for the main python module. -
Getting feedback from the execution. As exceptions or in another kind of management.
pyscripter replied to Juan C.Cilleruelo's topic in Python4Delphi
There is no need for that. It has already been initialized. -
Getting feedback from the execution. As exceptions or in another kind of management.
pyscripter replied to Juan C.Cilleruelo's topic in Python4Delphi
Create and link all non-visual components before you call LoadDLL. -
Getting feedback from the execution. As exceptions or in another kind of management.
pyscripter replied to Juan C.Cilleruelo's topic in Python4Delphi
Set PyEngine.IO before you call LoadDLL Redirection is setup by TPythonEngine.Initialize, which is called by LoadDLL. -
Getting feedback from the execution. As exceptions or in another kind of management.
pyscripter replied to Juan C.Cilleruelo's topic in Python4Delphi
You can use TPythonInputOutput event handlers to log python output to file or produce output in a console application. -
Access class fields and properties with RTTI
pyscripter posted a topic in RTL and Delphi Object Pascal
In a 5 year old answer to a stackoverflow question @David Heffernan responded that "class properties cannot be accessed via RTTI". Is this still the case with recent versions of Delphi? -
python Programmatically, from Delphi, I need to include some variables in the python script.
pyscripter replied to Juan C.Cilleruelo's topic in Python4Delphi
Watching the video tutorials I have pointed out and looking at the respective demos, would save you a lot of time.- 10 replies
-
- create variables
- read values from variables
- (and 1 more)
-
python Programmatically, from Delphi, I need to include some variables in the python script.
pyscripter replied to Juan C.Cilleruelo's topic in Python4Delphi
python4delphi/Demos at master · pyscripter/python4delphi (github.com) python4delphi/Tutorials at master · pyscripter/python4delphi (github.com)- 10 replies
-
- create variables
- read values from variables
- (and 1 more)
-
no success in loading MiniConda with recommended setup
pyscripter replied to Talal Bader's topic in Python4Delphi
I was just writing code from memory without testing. What you did is fine. -
no success in loading MiniConda with recommended setup
pyscripter replied to Talal Bader's topic in Python4Delphi
By the way, an easier way is to use PythonVersions. var PyVersion := PythonVersionFromPath('C:\MyApps\MConda38\envs\pg\'); PythonEngine1.Assign(PyVersion); PythonEngine1.LoadDLL; -
no success in loading MiniConda with recommended setup
pyscripter replied to Talal Bader's topic in Python4Delphi
You should not set VenvPythonExe. This is for environments created with venv and not Conda. The DLLName should be set before you call LoadDLL (e.g. in FormCreate) SetPythonHome: It should be called with the same directory as the DLLPath You may have to add the DLLPath to the environment path. -
P4D works fine with miniconda distributions. Read FindingPython · pyscripter/python4delphi Wiki (github.com) for details. There is no need to do that. If on the other hand you want to deploy python with your application, have a look at this project Embarcadero/PythonEnviroments: Components to simplify the deployment for Python environments for Delphi applications using Python4Delphi. (github.com)
-
Project Magician by @Uwe Raabe is such a great idea, but somehow every time I decide to use it, I end up regretting it. This time the issue relates to custom manifest files. My project had one, but after activating Project Magician, saving and building my project this custom manifest file was not included. My application was released with a wrong manifest file. I went to Project Options, set it again, save my project, close, open again, the setting disappeared. What am I doing wrong? Delphi does not allow me to set the custom manifest for all configurations. It has to be set for each configuration individually.
-
If you uncheck the event inherit in derived configurations, then you would need to define it again. The question is why Delphi replicates an event defined for All Configurations for each configuration and how you can prevent that.
-
Alexandria with patches.