vote up 0 vote down star

Hello Everyone ! Well ... I am writing an IRC bot in python. I wish to make stand-alone binaries for Linux and windows of it. And mainly i wish that when the bot initiates .. the console window should hide and the user should not be able to see the window. What can I do for that ? The python way will be better.

flag

2 Answers

vote up 3 vote down

Simply save it with a .pyw extension. This will prevent the console window from opening.

Explanation at the bottom of section 2.2.2

link|flag
vote up 2 vote down

In linux, just run it, no problem. In Windows, you want to use the pythonw executable.

Update

Okay, if I understand the question in the comments, you're asking how to make the command window in which you've started the bot from the command line go away afterwards?

  • UNIX (Linux)

$ nohup mypythonprog &

  • Windows

C:/> start pythonw mypythonprog

I think that's right. In any case, now you can close the terminal.

link|flag
Thats not the main issue ... The main issue is to hide the console window then the program is running. How do it do that ? – Godwin Austin Apr 19 at 1:47
You mean the one you're starting it from? – Charlie Martin Apr 19 at 1:52
Change file extension to .pyw to associate with pythonw.exe oreilly.com/catalog/pythonwin32/… – Adam Bernier Apr 19 at 1:52
"nohup mypythonprog &" will help me in linux ... but python is not gonna be installed on the windows machine. So "start pythonw mypythonprog" wont help me i guess. – Godwin Austin Apr 19 at 2:42
okay, if puython isn't installed, you've got another problem. You want py2exe to build a standalone executable. logix4u.net/Python/Tutorials/… and py2exe.org/index.cgi/FrontPage – Charlie Martin Apr 19 at 3:58

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.