On Linux, it is a simple matter to get the local ip address with
system.os("ifconfig >> /tmp/ip"); ip=open("/tmp/ip").readlines(), etc.
How can I do this with Windows?
--
http://mail.python.org/mailman/listinfo/python-list
Thanks!
The problem is on Windows: when I run c:\python24\myprogram.py, it has
a command window open up. If I close it, the program ends. So I want it
to run without opening that window.
--
http://mail.python.org/mailman/listinfo/python-list
I have 2 threads that I want to run at the same time: for instance:
from threading import Thread
class test(Thread):
def run(self):
while True:
get(asdf)
class test2(Thread):
def run(self):
while True:
I want to create the window and contents in a class, and then use a
separate function to write text to the buttons. Then when it clicks a
button, I want it to call a check() function to see if that was the
right button and then write some new stuff to the buttons. So far it
displays the window all
Thanks!
--
http://mail.python.org/mailman/listinfo/python-list
I'm sure this is builtin, I just don't know what module. Thank you for
any help!
Billt
--
http://mail.python.org/mailman/listinfo/python-list