an all-new reimagination of SimpleWeb, with all-new controls, incredible stability & efficiency improvements and reimagined UI.
⌘ + U / ctrl + U
⌘ + T / ctrl + T
⌘ + W / ctrl + W
F11
⌘ + F / ctrl + F
⌘ + R / ctrl + R
⌘ + U / ctrl + U, then type tudify://settings.
⌘ + U / ctrl + U, then type extensions://
SimpleWeb team does not offer prebuilt Windows Binaries. You can build SimpleWeb from source with no issue, as it is officially supported.
You will need Python 3.11 or later, gcc or clang, Command Prompt and an administrator account
run the following command:
On Windows:
pip install pyqt6 pyqtwebengine psutil pyinstaller
On Linux or macOS:
pip3 install pyqt6 pyqtwebengine psutil pyinstaller
locate your folder path that simpleweb.py and extensions.json are in, then cd to it like this
cd /users/you/folder/
this is not an actual command for your system, you need to find your folder path to replace /users/you/folder
when you are in your folder in your command prompt, type the following
on Linux and macOS:
g++ -std=c++17 -o simpleweblib startupinfo.cpp
pyinstaller --onefile --windowed --add-data "extensions.json:." --add-data "info.json:." --add-binary "simpleweblib:." SimpleWeb.py
on Windows
g++ -std=c++17 -o simpleweblib startupinfo.cpp
pyinstaller --onefile --windowed --add-data "extensions.json;." --add-data "info.json;." --add-binary "simpleweblib;." SimpleWeb.py
you have now built simpleweb, look inside the folder simpleweb.py is, and look for a new folder called 'Dist'
your new binary is there.