Tutorials and information about everything related to the programming language Python.
You can use magic methods (also called dunder methods) in your Python class to override certain functionality of your class instance.
Read more ...
You can also tweet your Icinga2 monitoring notifications through a custom script written in Python with the help of the Python program “tweepy”.
Read more ...
You can also create functions in a different way to do operations on objects (list, tuples, etc.) in a more simple way. This makes also your programming code easier to read.
Read more ...
This is an introduction in SQLite in Python. You will learn how to create a database in your Python application. But also how to access and edit your database data.
Read more ...
You can create desktop applications for example by using the Python package "tkinter". But there is also another better way to create easier and better desktop user interfaces in Python.
In this tutorial we will see how to use Qt to create a desktop user interfaces that will be used in a Python application. I created my desktop application "BMI Tracker" like this through Qt and Python. This tutorials shows only how it can be done on the operating system Windows. This could be similar in other operating systems.
1. We need to install the Python package "pyqt5"
It can
Read more ...