DelphiDelphiVCLPythonPython GUIWindows

Getting Started with DelphiVCL4Python: Simple Windows Form Example In Python

In essence, DelphiVCL is a wrapper that helps to create and access Delphi Objects quickly from Python. These wrappers contain container classes to extend and expose your custom events, methods, variables that can be used in Python script. Code example Here is a Python code sample using DelphiVCL to create a simple Form app with a list, edit, and button: from delphivcl import * class…
Read more
DelphiDelphiVCLPythonPython GUIWindows

Tutorial: Learn How To Install DelphiVCL4Python And Build Windows Apps With Python

There are two ways for you to install DelphiVCL: By directly copying the module to your local/system path, or install it via pip. 1. Copy to Your Local or System Path Download the DelphiVCL.pyd module Beta Release 0.01– Beta preview – 2021-18-01, and extract according to your Python version and bit. You will need to place the DelphiVCL.pyd to your default path for your Python…
Read more
DelphiPythonPython GUIWindows

Learn To Build A Python GUI For Scientific Computing With The NumPy Library In A Delphi Windows App

If you need to perform complex transformations or mathematical calculations with matrices or arrays, then Python’s Numpy library is exactly what you need. You can easily run this library and give it a nice GUI using Python4Delphi (P4D). Python4Delphi is a free tool that allows you to work with Python scripts and objects, even create new Python modules and types in the Windows GUI. The NumPy…
Read more
DelphiPythonPython GUIWindows

Learn To Build A Python GUI For Computer Vision Tasks With Powerful OpenCV Library In A Delphi Windows App

Are you looking for a powerful computer vision library and build a nice GUI for them? Try OpenCV library for Python. And for the GUI part, you can run it seamlessly with Python4Delphi (P4D). P4D is a free and simple tool that allows you to run Python scripts as well as create new Python modules and types in Delphi. OpenCV (Open Source Computer Vision Library) is an open-source computer vision…
Read more