In this tutorial, we will learn about how to do data visualizations using Delphi’s TChart or TeeChart.
TChart is the 100% Native Data-Aware Charting Component Library for Delphi and C++ Builder (v5 and later) and all RAD Studio versions.
1. Generate the Dummy Data with Python
To create dummy data in Python, you can use pandas or the Faker…
Easily Integrate A Flexible Python REST Client To RAD Server In Python Windows GUI App Built In Delphi
February 19, 2021
REST(REpresentationalStateTransfer) has emerged as the standard architectural design for web services and web APIs in these days.
This article will show you how easy it is to integrate aRESTAPIClientsto RAD Server using Python and…
REST (REpresentational State Transfer) has emerged as the standard architectural design for web services and web APIs in these recent years.
This post will demonstrate how easy it is to use the Delphi REST Client Library to access Python REST Server (Flask…
Easily Integrate A Flexible Python REST Client In Python Windows GUI App Built In Delphi
February 10, 2021
REST (REpresentational State Transfer) has emerged as the standard architectural design for web services and web APIs in these days.
This article will show you how easy it is to integrate a REST API Clients using Python and run it in the Python GUI by Python4Delphi with RAD Studio and gets the results.
Prerequisites: Before we begin to work, download and install the…
REST(REpresentationalStateTransfer) has emerged as the standard architectural design for web services and web APIs in these recent years.
This post will demonstrate how easy it is to create aRESTful web service using Python and the Flask…
Python Web Servercan be set up in two ways. Python supports a Web Server in the “out of the box” way. We can even start a web server with just a one-liner in Python!
This post will demonstrate how to run another Python feature in Python4Delphi with RAD…
Learn Powerful Python Map, Filter, And Reduce Functions In A Delphi Windows GUI App
February 7, 2021
Map, Filter, and Reduce are paradigms of functional programming. They allow us to write simpler, shorter code, without necessarily needing to bother about intricacies like loops and branching.
This post will demonstrate how to run another Python feature in Python4Delphi with RAD Studio:Map, Filter, and Reducein Python GUI apps and gets the output. We will discuss them one by one and…
Learn About Powerful Python Decorators In A Delphi Windows GUI App
February 6, 2021
Python has an interesting feature calledDecoratorsto add functionality to an existing code. A Decorator is a design pattern in Python that allows a user to add new functionality to an existing object without modifying its structure. Decorators are usually called…
Easily Learn Python Closures With A Delphi Windows GUI App
February 3, 2021
A Closure in Python is a function object that remembers values in enclosing scopes even if they are not present in memory.
It is a record that stores a function together with an environment: a mapping associating each free variable of the function (variables that are used…
Learn To Build A High-Performance Data Serialization Pipeline With A Python Windows GUI
February 1, 2021
Data serialization is the process of converting structured data to a format that allows us to share or store the data in a form that allows recovery of its original structure. In some cases, the secondary intention of data serialization is to minimize the data’s size which then reduces disk space or bandwidth requirements.
This post will demonstrate how to run another Python feature in…