A Python project that builds a keep-alive application.
\
├── dist/ # Distribution directory
│ └── keep_alive.exe # Compiled executable (14.2 MB)
├── keep_alive.py # Main Python script
├── requirements.txt # Project dependencies
└── README.md # This file
- keep_alive.py - Main application script
- keep_alive.exe - Compiled standalone executable in the
dist/folder - requirements.txt - Python package dependencies
Install dependencies using:
pip install -r requirements.txtTo build the executable from source:
pyinstaller keep_alive.specThe compiled executable will be generated in the dist/ directory.
Run the application directly:
python keep_alive.pyOr use the compiled executable:
./dist/keep_alive.exe