Francois El-Daherdataforlife.hashnode.dev·Jul 11, 2024GUI programming in python: why I chose to use KivyGUI programming is something apart from typical Python coding. You need to use a specific library. So the immediate question is which one? Tkinter? PyQt/PySide? wxPython? ... The list is long and overwhelming. I tested quite a few and spend (too much...CodingPython
Reshma Haridhasreshmaharidhas.hashnode.dev·Apr 14, 2024How to pack images in Python Tkinter file to an Exe file?Ever had the experience of developing a Graphical User Interface (GUI) with images in widgets in Python using Tkinter, and after converting that .py file to an .exe file, the images included in the GUI is showing error?! This article helps to solve t...executable-file
Bryan Castillobryanium.hashnode.dev·Jan 21, 2024BioBytes PairSync: A Bioinformatics Tool for Basic Information Retrieval and Pairwise Sequence AlignmentThis Graphical User Interface (GUI) application that I developed is to allow users input biological sequences, either manually or by loading from a file. It supports sequences such as the deoxy-ribonucleic acid (DNA), ribonucleic acid (RNA), or prote...11 likes·91 readsbioinformatics
G.Niruthianniruthiang.hashnode.dev·Jan 24, 2023Create a digital clock using PythonHi programmers, In this blog, I will share a complete source code for a python Tkinter GUI clock. So Let's get started to code. from tkinter import from tkinter.ttk import from time import strftime root = Tk() root.title("Clock") def time(): string =...2 likes·104 readsPython 3
Chepkirui Dorothydoroh.hashnode.dev·Jul 25, 2022Build a simple YouTube video downloader with pythonIf you have tried to download a YouTube video before, then you know the frustration of going through a million ads, just to get a two megabyte file. In this article, we will create our own simple YouTube video downloader using python. Requirements B...41 readsPython