Tagged articles
42 articles
Page 1 of 1
Data STUDIO
Data STUDIO
Sep 23, 2025 · Backend Development

Three Ways to Convert a Python Script into an .exe File

This article explains why turning a Python script into a standalone .exe can simplify distribution, improve usability, protect source code, and enhance portability, and it provides step‑by‑step guides for three popular tools—PyInstaller, auto‑py‑to‑exe (py2exe), and cx_Freeze—along with a concise feature comparison.

Pythonauto-py-to-execx_freeze
0 likes · 10 min read
Three Ways to Convert a Python Script into an .exe File
Python Programming Learning Circle
Python Programming Learning Circle
Jul 2, 2025 · Fundamentals

Create a Python Debt Reminder Tool with Scheduled Pop‑ups and One‑Click Executable

Learn how to build a simple Python utility that periodically reminds a friend to repay a loan, using pip‑installed packages like APScheduler and pywin32 for scheduling and pop‑up messages, then package the script into a standalone executable with PyInstaller, complete with code snippets and screenshots.

APSchedulerAutomationPython
0 likes · 4 min read
Create a Python Debt Reminder Tool with Scheduled Pop‑ups and One‑Click Executable
Python Programming Learning Circle
Python Programming Learning Circle
Apr 23, 2024 · Fundamentals

How to Decompile a Python .exe Back to Python Source Code

This guide explains how to extract .pyc files from a Python‑generated executable, restore missing bytecode headers, and use tools such as pyinstxtractor, pyi‑archive_viewer, and uncompyle6 to decompile the bytecode back into readable Python scripts while highlighting common pitfalls and protection mechanisms.

ExecutablePythonbytecode
0 likes · 12 min read
How to Decompile a Python .exe Back to Python Source Code
Python Programming Learning Circle
Python Programming Learning Circle
Sep 26, 2023 · Backend Development

How to Package Python Scripts into Executable Files Using Various Tools

This article explains several methods for converting Python scripts into standalone executables—including pyinstaller, cx_Freeze, py2exe, py2app, Nuitka, and a combination of Nuitka with pyinstaller—detailing their commands, platform support, advantages, and common pitfalls such as missing imports and GIL-related issues.

ExecutableNuitkaPython
0 likes · 7 min read
How to Package Python Scripts into Executable Files Using Various Tools
Python Programming Learning Circle
Python Programming Learning Circle
Sep 6, 2023 · Backend Development

Using PyInstaller and Nuitka to Package Python Applications: Experience and Step‑by‑Step Guide

This article compares PyInstaller and Nuitka for converting Python projects into standalone executables, shares practical experiences—including size and speed differences—and provides a detailed installation and command‑line guide for Nuitka with code examples and post‑build dependency handling.

ExecutableNuitkaPython
0 likes · 6 min read
Using PyInstaller and Nuitka to Package Python Applications: Experience and Step‑by‑Step Guide
MaGe Linux Operations
MaGe Linux Operations
Jan 17, 2023 · Backend Development

Why Nuitka Beats PyInstaller: Tiny 7 MB EXEs vs 3 GB Bloat

This article compares PyInstaller and Nuitka for converting Python projects into executables, highlighting Nuitka's dramatically smaller output size, faster build and startup times, and provides step‑by‑step installation and command‑line usage instructions.

CNuitkaexecutable packaging
0 likes · 6 min read
Why Nuitka Beats PyInstaller: Tiny 7 MB EXEs vs 3 GB Bloat
Python Programming Learning Circle
Python Programming Learning Circle
Nov 11, 2022 · Backend Development

How to Use auto-py-to-exe to Package Python Programs into Executables

auto-py-to-exe is a GUI front‑end for PyInstaller that simplifies packaging Python scripts into standalone executables; this guide explains installation, key configuration options such as script location, one‑file mode, console window, icon, additional files, and demonstrates a complete example by packaging a simple calculator program.

ExecutableGUIPython
0 likes · 7 min read
How to Use auto-py-to-exe to Package Python Programs into Executables
MaGe Linux Operations
MaGe Linux Operations
Jan 15, 2022 · Backend Development

Why Nuitka Beats PyInstaller: Faster, Smaller Python Executables

This article compares PyInstaller and Nuitka for turning Python projects into standalone executables, highlighting Nuitka's dramatically smaller file size, faster build times, and better performance while explaining installation steps, command‑line options, and how to handle third‑party dependencies.

CLIExecutableNuitka
0 likes · 6 min read
Why Nuitka Beats PyInstaller: Faster, Smaller Python Executables
Python Programming Learning Circle
Python Programming Learning Circle
Dec 8, 2021 · Backend Development

Using PyInstaller and Nuitka to Package Python Projects into Executables

This article compares PyInstaller and Nuitka for converting Python scripts into standalone Windows executables, discusses their advantages and drawbacks, provides step‑by‑step installation of Nuitka, explains key command‑line options, and demonstrates a practical example that yields a tiny, fast‑building executable versus a large, slow‑building PyInstaller output.

CLIExecutableNuitka
0 likes · 6 min read
Using PyInstaller and Nuitka to Package Python Projects into Executables
21CTO
21CTO
Nov 25, 2021 · Backend Development

Why Nuitka Beats PyInstaller: Faster, Smaller Python Executables

This article compares PyInstaller and Nuitka for converting Python projects into standalone executables, highlighting Nuitka's dramatically smaller file size, faster build times, and better performance while also providing step‑by‑step installation and usage instructions.

DeploymentExecutableNuitka
0 likes · 6 min read
Why Nuitka Beats PyInstaller: Faster, Smaller Python Executables
MaGe Linux Operations
MaGe Linux Operations
Feb 3, 2021 · Information Security

Reverse Engineering and Patching Python .pyd Modules with IDA

This guide explains how to compile Python code into .pyd files, unpack PyInstaller‑packed executables, decompile bytecode, analyze the generated assembly in IDA, and patch conditional logic to bypass license checks, providing a practical workflow for binary reverse engineering.

IDAPythonbinary patching
0 likes · 8 min read
Reverse Engineering and Patching Python .pyd Modules with IDA
MaGe Linux Operations
MaGe Linux Operations
Jan 1, 2021 · Backend Development

How to Package Python Apps with PyInstaller: Tips, Encryption, and Docker

This guide explains how to use PyInstaller to bundle Python programs into standalone executables, discusses libc compatibility issues, shows installation, CLI entry creation, encryption options, a full packaging command, and provides a Dockerfile example for cross‑distribution deployment.

encryptionpyinstallerpython packaging
0 likes · 5 min read
How to Package Python Apps with PyInstaller: Tips, Encryption, and Docker
Programmer DD
Programmer DD
Jan 19, 2020 · Fundamentals

Is China’s “Mulan” Language Just a Rebranded Python? An In‑Depth Look

The article examines the newly announced Chinese programming language “Mulan,” revealing that its downloadable package is essentially a Python 3.7 application bundled with PyInstaller, and discusses community reactions, technical analysis, and the broader implications for language claims.

IoTMulan languagePython
0 likes · 5 min read
Is China’s “Mulan” Language Just a Rebranded Python? An In‑Depth Look
21CTO
21CTO
Dec 17, 2018 · Backend Development

Automate Windows File Backups with a Python Script and PyInstaller

This guide explains how to create a Python‑based backup utility that automatically copies files or folders on Windows at user‑defined intervals, detailing the script structure, configuration file, core functions, logging, and how to package the tool as a standalone executable with PyInstaller.

file-backuploggingpyinstaller
0 likes · 10 min read
Automate Windows File Backups with a Python Script and PyInstaller
MaGe Linux Operations
MaGe Linux Operations
Sep 3, 2018 · Fundamentals

Boost Your Python Projects: 6 Must-Have Libraries Every Developer Needs

Discover six essential Python libraries—including PyPy, CFFI, PyInstaller, PBR, WxPython, and Mypy—that enhance performance, simplify packaging, enable C integration, improve type checking, and streamline desktop UI development, with download links and key features explained for developers of all levels.

CFFIPBRPyPy
0 likes · 11 min read
Boost Your Python Projects: 6 Must-Have Libraries Every Developer Needs
MaGe Linux Operations
MaGe Linux Operations
Oct 28, 2017 · Fundamentals

Boost Your Python Projects: 6 Must-Have Libraries Every Developer Needs

Discover six essential Python libraries—including PyPy, CFFI, PyInstaller, PBR, WxPython, and Mypy—that enhance performance, simplify packaging, enable C integration, and improve type checking, with download links and key features explained for developers seeking faster, more reliable Python applications.

CFFIPBRPyPy
0 likes · 10 min read
Boost Your Python Projects: 6 Must-Have Libraries Every Developer Needs