Jump to content

pyscripter

Members
  • Content Count

    966
  • Joined

  • Last visited

  • Days Won

    61

Everything posted by pyscripter

  1. pyscripter

    Passing more than one argument from Python to Delphi

    It should be 'ii:read_AP_register' if you are expecting two integer arguments.
  2. pyscripter

    Using pyvista in delphi form

    Maybe this approach is useful.
  3. pyscripter

    Documentation on deployment

    See Embarcadero/PythonEnviroments: Components to simplify the deployment for Python environments for Delphi applications using Python4Delphi. (github.com)
  4. pyscripter

    Delphi 11.2 unofficial LSP patch

    Yes.
  5. pyscripter

    Delphi 11.2 unofficial LSP patch

    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.
  6. pyscripter

    I get value=none

    What did you expect to get? Demo03 shows you how to use TPythonDelphiVar.
  7. pyscripter

    How USE Python4Delphi in multithreads

    Use Demo 33 as a guide. As @David Heffernan said running python in threads is not trivial and unlikely to save you time.
  8. 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.
  9. Please do. You will do everyone a favour.
  10. 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.
  11. Also do not call the module __main__. This is name is reserved for the main python module.
  12. There is no need for that. It has already been initialized.
  13. Create and link all non-visual components before you call LoadDLL.
  14. Set PyEngine.IO before you call LoadDLL Redirection is setup by TPythonEngine.Initialize, which is called by LoadDLL.
  15. You can use TPythonInputOutput event handlers to log python output to file or produce output in a console application.
  16. 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?
  17. Watching the video tutorials I have pointed out and looking at the respective demos, would save you a lot of time.
  18. python4delphi/Demos at master · pyscripter/python4delphi (github.com) python4delphi/Tutorials at master · pyscripter/python4delphi (github.com)
  19. pyscripter

    no success in loading MiniConda with recommended setup

    I was just writing code from memory without testing. What you did is fine.
  20. pyscripter

    no success in loading MiniConda with recommended setup

    By the way, an easier way is to use PythonVersions. var PyVersion := PythonVersionFromPath('C:\MyApps\MConda38\envs\pg\'); PythonEngine1.Assign(PyVersion); PythonEngine1.LoadDLL;
  21. pyscripter

    no success in loading MiniConda with recommended setup

    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.
  22. pyscripter

    Python package in Python4Delphi

    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)
  23. pyscripter

    Project Magician blues

    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.
  24. pyscripter

    Project Magician blues

    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.
  25. pyscripter

    Project Magician blues

    Alexandria with patches.
×