atlas news
    
Coder Legacy : Python
30  août     20h50
Understanding the Switch Case Statement in Python 3.10
Siddiqi    Python is known for its simplicity and readability, but one feature it has historically lacked is a native switch case statement, commonly found in other programming languages like C, C, and Java. Instead, Python developers often relied on a series of if elif else statements or dictionaries to...
18  juin     10h09
Adding Data Files in Nuitka (Python Files, Images, etc)
Siddiqi    Nuitka is a Python to C compiler that converts Python code into executable binaries. While Nuitka efficiently compiles Python scripts, incorporating data files such as images, audio, video, and additional Python files requires can be a little tricky. This guide outlines the steps to include various...
04  mars     20h18
Exploring Data Tables in Tkinter with PandasTable
Siddiqi    In this tutorial, we will delve into the powerful combination of Pandas and Tkinter through the PandasTable library. PandasTable provides a convenient way to display and interact with pandas DataFrames in a Tkinter GUI. Prerequisites: You will also need to install the pandas and pandastable...
23  décembre     14h41
Pyinstaller EXE detected as Virus? (Solutions and Alternatives)
Siddiqi    PyInstaller, a popular tool for converting Python scripts into standalone executables, has become a go to choice for developers seeking to distribute their applications. However, a rising concern among users revolves around their PyInstaller EXE files being detected and flagged as a Virus by...
22  décembre     07h54
Selenium: How to scroll to the Bottom of the Page (Python)
Siddiqi    In this tutorial, we will explore how to use Selenium in Python to scroll to the bottom of a webpage gradually. Scrolling is often required when dealing with dynamically loading content or capturing data from a website that requires scrolling to access all information. Common examples of such sites...
19  décembre     11h08
How to disable the Cache in Selenium
Siddiqi    Selenium is a powerful tool for automating web applications, but one common challenge faced by automation testers is dealing with browser caching. Caching can sometimes interfere with the accuracy of your Selenium tests, leading to unexpected results. In this tutorial, we’ll explore how to disable...
11  décembre     15h50
Python init .py Best Practices and Customizations
Siddiqi    The init .py file is a special Python script that is executed when a package or module is imported. Its primary purpose is to initialize the package or module and define the package’s namespace. In this tutorial we will discuss various best practices and customizations involving the init .py...
07  décembre     19h54
Pytest Tutorial: Mastering Unit Testing in Python
Siddiqi    Welcome to a ALL IN ONE Tutorial designed to meet all your testing requirements. Whether you’re just starting with the fundamentals to build a solid conceptual foundation or aiming to craft professional grade test cases for entire projects, this guide has got you covered. The focus of this tutorial...
25  novembre     08h49
pydub Tutorial: Audio Manipulation in Python
Siddiqi    In this comprehensive tutorial, we will explore the powerful pydub library, a Python package that simplifies the process of working with audio files. Whether you are a music enthusiast, a data scientist, or a developer looking to integrate audio processing into your applications, pydub has got you...
21  novembre     19h45
How to Deploy your Python Code with Inno Setup
Siddiqi    Deploying your Python application is a crucial step in making it accessible to users. One popular tool for creating installers on Windows is Inno Setup. In this blog post, we’ll guide you through the process of how to deploy your Python code using Inno Setup, making it easy for users to install and...