Tag

pyinstaller

1 views collected around this technical thread.

Python Programming Learning Circle
Python Programming Learning Circle
Jun 9, 2025 · Fundamentals

Create a Cute Slime Desktop Pet with Python – Step‑by‑Step Guide

This tutorial explains how to set up, customize, and package a playful slime desktop pet written in Python, covering required dependencies, command‑line installation, configuration options, and creating a standalone executable for easy distribution.

PythonTutorialdesktop-pet
0 likes · 4 min read
Create a Cute Slime Desktop Pet with Python – Step‑by‑Step Guide
Test Development Learning Exchange
Test Development Learning Exchange
Jun 7, 2025 · Backend Development

Build a Lightweight Python GUI for Testing REST and SOAP APIs (with .exe Packaging)

This tutorial walks you through creating a compact Python Tkinter GUI that can send GET/POST requests, handle JSON or XML payloads, support Bearer tokens, clean illegal URL characters, and be packaged into a standalone Windows executable using PyInstaller.

API testingGUIHTTP
0 likes · 12 min read
Build a Lightweight Python GUI for Testing REST and SOAP APIs (with .exe Packaging)
Python Programming Learning Circle
Python Programming Learning Circle
May 24, 2025 · Backend Development

Using auto-py-to-exe to Package Python Programs into Executable Files

This tutorial explains what auto-py-to-exe is, how to install it, details its key configuration options, and demonstrates the complete packaging process with a simple calculator project, enabling Python scripts to be turned into standalone executables.

ExecutablePythonTutorial
0 likes · 6 min read
Using auto-py-to-exe to Package Python Programs into Executable Files
Python Programming Learning Circle
Python Programming Learning Circle
Mar 12, 2025 · Frontend Development

Comprehensive Guide to PyQt5 GUI Development, Installation, and Packaging

This article provides a detailed overview of Python GUI frameworks, introduces PyQt5 and its modules, walks through installation, demonstrates basic and weather‑app examples, and explains how to package the application into an executable using tools such as fbs, PyInstaller, and related utilities.

Desktop ApplicationPyQt5Python GUI
0 likes · 16 min read
Comprehensive Guide to PyQt5 GUI Development, Installation, and Packaging
Python Programming Learning Circle
Python Programming Learning Circle
Oct 11, 2024 · Backend Development

Building a Python WeChat Message Sender with itchat and PyInstaller

This tutorial explains how to set up a Python environment, install the itchat and pyinstaller libraries, write a script that logs into WeChat and sends repeated messages to a specified contact, and then package the script into a standalone executable file.

ExecutablePythonWeChat
0 likes · 3 min read
Building a Python WeChat Message Sender with itchat and PyInstaller
Python Programming Learning Circle
Python Programming Learning Circle
Sep 20, 2024 · Fundamentals

Python Windows Automation: Change Wallpaper, Lock Screen, and Create Infinite Pop‑ups

This tutorial demonstrates how to use Python 3.7 on Windows 10 with win32api, win32gui, ctypes, and os modules to programmatically change the desktop wallpaper, lock the workstation, and spawn endless command‑prompt pop‑ups, including full source code and packaging instructions.

Pythonautomationctypes
0 likes · 5 min read
Python Windows Automation: Change Wallpaper, Lock Screen, and Create Infinite Pop‑ups
Python Programming Learning Circle
Python Programming Learning Circle
Aug 29, 2024 · Fundamentals

Creating a Desktop Pet with Python and PyQt5: Full Source Code and Packaging Guide

This article explains how to build a desktop pet application using Python and PyQt5, covering required GIF assets, multiple methods for creating or sourcing those GIFs, the project directory layout, detailed source code walkthrough, and steps to package the app with PyInstaller.

GIF AnimationGUIPyQt5
0 likes · 19 min read
Creating a Desktop Pet with Python and PyQt5: Full Source Code and Packaging Guide
Test Development Learning Exchange
Test Development Learning Exchange
Jul 6, 2024 · Fundamentals

How to Package a Python GUI Application with Dependencies Using PyInstaller

This guide explains how to structure a Python project, list required libraries in requirements.txt, write a main script that installs dependencies at runtime, and use PyInstaller to bundle the application and its assets into a single executable that automatically installs needed packages.

DependenciesExecutableGUI
0 likes · 5 min read
How to Package a Python GUI Application with Dependencies Using PyInstaller
Test Development Learning Exchange
Test Development Learning Exchange
Apr 24, 2024 · Backend Development

Creating a Flask JSON Visualizer and Packaging It as an Executable

This guide walks through building a Flask application that receives JSON data, visualizes it via a simple HTML front‑end, installs required Python packages, and finally packages the whole project into a standalone EXE using PyInstaller, with tips for optimization and deployment.

BackendFlaskJSON
0 likes · 5 min read
Creating a Flask JSON Visualizer and Packaging It as an 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.

BytecodeExecutablePython
0 likes · 12 min read
How to Decompile a Python .exe Back to Python Source Code
Python Programming Learning Circle
Python Programming Learning Circle
Apr 19, 2024 · Backend Development

Building a Simple Web Calculator with PyWebIO and Packaging with PyInstaller

This tutorial shows how to create a lightweight web-based calculator using the Python library PyWebIO, covering installation, full source code, local execution, and optional packaging into a standalone executable with PyInstaller for easy distribution.

PythonTutorialWeb Calculator
0 likes · 3 min read
Building a Simple Web Calculator with PyWebIO and Packaging with PyInstaller
Python Programming Learning Circle
Python Programming Learning Circle
Apr 11, 2024 · Fundamentals

Fun Python Prank Scripts and How to Package Them as Executables

This article showcases several playful Python prank programs, explains how to bundle them into standalone EXE files with PyInstaller, provides the full source code for each script, warns about potential issues, and promotes a free Python learning resource via QR code.

Tutorialprankpyinstaller
0 likes · 5 min read
Fun Python Prank Scripts and How to Package Them as Executables
Test Development Learning Exchange
Test Development Learning Exchange
Mar 18, 2024 · Backend Development

How to Package Python Code into an .exe, Run Flask Projects, and Test API Authentication

This guide explains how to use PyInstaller or auto-py-to-exe to bundle Python scripts into Windows executables, demonstrates the steps to create and run a basic Flask application, and outlines comprehensive methods for testing API authentication mechanisms such as API keys, Basic Auth, OAuth 2.0, and JWT tokens.

API authenticationBackendFlask
0 likes · 7 min read
How to Package Python Code into an .exe, Run Flask Projects, and Test API Authentication
Python Programming Learning Circle
Python Programming Learning Circle
Mar 4, 2024 · Backend Development

How to Use auto-py-to-exe to Package Python Programs into Executable Files

This article explains what auto-py-to-exe is, how to install it, describes its key configuration options, and walks through a complete example of packaging a simple Python calculator into a single executable, while also offering tips for handling additional files and icons.

ExecutableGUIauto-py-to-exe
0 likes · 6 min read
How to Use auto-py-to-exe to Package Python Programs into Executable Files
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.

Executablecx_Freezenuitka
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.

Executablenuitkapackaging
0 likes · 6 min read
Using PyInstaller and Nuitka to Package Python Applications: Experience and Step‑by‑Step Guide
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
Python Programming Learning Circle
Python Programming Learning Circle
Sep 2, 2022 · Fundamentals

Python Script for Periodic Screen Capture and Automatic Email Sending (Including EXE Packaging)

This article demonstrates how to use Python to capture the computer screen every five seconds, automatically email the screenshot using SMTP, and package the script into a Windows executable with PyInstaller, providing complete code, configuration steps, and visual results.

Email AutomationPythonexe
0 likes · 6 min read
Python Script for Periodic Screen Capture and Automatic Email Sending (Including EXE Packaging)
Python Programming Learning Circle
Python Programming Learning Circle
May 19, 2022 · Fundamentals

How to Package a PyQt5 Application into an Executable with PyInstaller

This guide walks through preparing a PyQt5 project, installing PyInstaller, generating and configuring the .spec file, and using PyInstaller commands to build a standalone Windows executable, including tips for handling console windows and embedding resources.

ExecutablePyQt5Python
0 likes · 4 min read
How to Package a PyQt5 Application into an Executable with PyInstaller
IT Services Circle
IT Services Circle
Mar 25, 2022 · Backend Development

Automating Excel Pivot Table Generation with Python and Packaging as a Standalone Executable

This article demonstrates how to automate the creation of Excel pivot tables using Python's pandas library, build a Tkinter GUI for user interaction, and package the solution into a standalone executable with PyInstaller, including steps for managing dependencies and reducing file size.

ExcelPivot TablePython
0 likes · 10 min read
Automating Excel Pivot Table Generation with Python and Packaging as a Standalone Executable