Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. clarkclark

    Automatic insertion of user name and password.

    i do a similar thing, but manually. since you're using linux, you likely have /usr/bin/expect avalable. s=""" #!/usr/bin/expect spawn telnet myServer expect "Password:" send "myPassword\r" expect eof """ h=open("tmp.exp") h.write(s) h.close() os.popen("chmod +x tmp.exp; tmp.exp") ##this code...
  2. clarkclark

    compiled python speed

    I've been wondering about python's compile process. For python benchmark stats, i've heard numbers like 30,40 or 50 times slower than c. This is a bit strange, because much of python could be ported rather directly into c++, which is only marginally slower than c... Is the reason for the...

Part and Inventory Search

Back
Top