Skip to content
Tilto66 edited this page Dec 17, 2025 · 2 revisions

Faq

How do I put it in .exe format

Install python here
You have 2 options. Either you:

  1. You run in a cmd pip install pyinstaller
  2. cd C:/your/path/where/is/your/folder
  3. pyinstaller --onefile --noconsole --icon=icone.ico graber.py
    Or else run the Compile.bat

What are the parameters of the last command ?

--onefile to output only one .exe executable.
--noconsole so that there are no console upon running.
--icon if you want an icon.
graber.py the file you want to compile
you can type pyinstaller --help to display all the options.

Does it work on a machine that doesn't have Python ?

Yes it does !

Can i change the code ?

Sure ! Feel free to edit but if you publish the code, follow the GNU AGPL V3 and credit me 😉