DelphiPythonPython GUIWindows

Artificial Intelligence Solutions With Keras Library In A Windows Python App

Are you looking for a simple, flexible, and powerful deep learning library, and build a nice GUI for them? You can deliver enterprise-grade AI solutions easily by combining Keras and Python4Delphi library, inside Delphi and C++Builder. Keras is a high-level neural networks API for Python. Keras acts as an interface for the TensorFlow library. Keras is designed for human beings, not machines.
Read more
DelphiDelphiVCLPythonPython GUIWindows

Python: Getting Started with DelphiVCL III: Overview of Commonly Used VCL Components

To increase your familiarity with DelphiVCL Components, this post will show you a demo that presents commonly used VCL components, and call them one-by-one with Python. The following is a Python code sample using DelphiVCL4Python: from delphivcl import * class MainForm(Form): def __init__(self, Owner): self.Caption = "Components Overview Sample" self.Name = "BaseForm" …
Read more
DelphiDelphiVCLPythonPython GUIWindows

Quickly Browse All Available Functions in DelphiVCL Library For Python Windows Apps

To make sure that you have already installed the DelphiVCL Python library correctly, you can simply test it using the Python dir() command: import delphivcl dir(delphivcl) If you install it correctly, it will return all properties, methods, even built-in properties of the DelphiVCL module, without the values: See them more clearly here: ['Abort', 'Action', 'ActionList'…
Read more
DelphiPythonPython GUIWindows

Learn To Work With Real-World Graphics Using The Python Matplotlib Library In A Delphi Windows App

With the growing demand for Data Science and Analytics skill sets, drawing graphics programmatically is a very popular task these days. You can easily solve it by combining the Matplotlib library with Python4Delphi (P4D). P4D is a free set of powerful tools that allows you to work with Python scripts, modules, and types in Delphi and easily create Windows GUI with it. Matplotlib is a…
Read more