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 Studio:Python Web Serverin Python GUI apps and gets the output. The web server in this example can be accessed on…
After sharing with us the top 5 best GUI frameworks in his previous video, Parwiz Forogh will now give us an in-depth video tutorial on how you can create a Graphical User Interface application in Python programming language using Tkinter. Tkinter is not just one of the most…
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…
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 before the definition of a function you want to decorate. This is also calledmetaprogrammingbecause a part of the…
The strength of Delphi combined with Python gives its users the chance to fast track their development processes and deliver excellent applications with ease! This tutorial helps you accomplish just that. WithPython4Delphi(P4D) you can create a GUI for your…
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…
Build Robust Topic Modelling Capabilities In Your Python GUI App With Powerful Gensim Library
February 2, 2021
Do you want to Train Large scale semantic NLP Models in your Delphi GUI App? This post will get to understand how to use Gensim Python Library usingPython4Delphiin Delphi/C++ application and learn the core concepts of Gensim – A Superfast, Proven, Data Streaming, Platform Independent library with some pretrained models for specific domains like legal or health.
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…
Easily Perform Powerful Computer Vision Functions In Python GUI App With Mahotas Library
January 31, 2021
Do you want to perform some Image Processing tasks in your Delphi GUI App? This post will get to understand how to use Mahotas Python Library usingPython4Delphiin Delphi/C++ application. Mahotas is a computer vision and image processing library for…
Quickly Learn How To Use Python Sets In A Windows GUI App
January 30, 2021
A set in Python is an unordered collection of items. Every set element is unique (no duplicates) and must be immutable (cannot be changed). However, a set itself is mutable. We can add or remove items from it.
Set is one of 4 built-in data types in Python used to store collections of data, the other 3 areList,Tuple, andDictionary, all with different qualities and usage. Set is…