Re: SendKeys-0.3.win32-py2.1.exe

2008-11-08 Thread scripteaze
On Oct 26, 9:01 am, Thorsten Kampe [EMAIL PROTECTED] wrote: * Jesse (Sat, 25 Oct 2008 14:33:52 -0700 (PDT)) cant seem to install this, using python 2.6, any known errors that wont let me select the python installation to use, just opens a blank dialog and wont let me continue..do i need to

http proxy question

2007-12-28 Thread scripteaze
I am tryin to grab a file from a site, however, this site limits me to one file per 15 minutes. What im tryin to do is use http profies in my script to just grab the file then change proxies so i can do it again back to back so that site site does not block me. This possible any example code out

Re: sending a rip1 request via python

2007-12-20 Thread scripteaze
On Dec 19, 5:50 pm, Dirk Loss [EMAIL PROTECTED] wrote: scripteaze wrote: I need to be able to send a rip1 request to my rip1 enabled device., ok i got everthing setup and its sending the packets, do i have to create a socket server or cant i simply setup a buf = 1024 and recieve the replies

sending a rip1 request via python

2007-12-19 Thread scripteaze
ok, im new to this sort of coding so excuse me if im not exactly sure as to what i need to pull this off. I need to be able to send a rip1 request to my rip1 enabled device., so i need python to send : 01 01 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 10 which is an RIP1

Re: sending a rip1 request via python

2007-12-19 Thread scripteaze
On Dec 19, 10:34 am, Dirk Loss [EMAIL PROTECTED] wrote: scripteaze wrote: I need to be able to send a rip1 request to my rip1 enabled device., so i need python to send : 01 01 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 10 Use Scapy: from scapy import * myrip = RIP

Re: sending a rip1 request via python

2007-12-19 Thread scripteaze
On Dec 19, 5:14 pm, scripteaze [EMAIL PROTECTED] wrote: On Dec 19, 10:34 am, Dirk Loss [EMAIL PROTECTED] wrote: scripteaze wrote: I need to be able to send a rip1 request to my rip1 enabled device., so i need python to send : 01 01 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00

Re: Suggested Reading

2007-12-16 Thread scripteaze
On Dec 16, 1:47 am, Thin Myrna [EMAIL PROTECTED] wrote: Benoit wrote: I got myself into programming late in the summer and have dabbled in python for the most part in that time, recently beginning work on a music player. In January, I start my minor in Information Technology. I'd like

speed versus threading or asyncore

2007-12-14 Thread scripteaze
I need some examples on using asycore for a client app im creating. I need to be able to connect to my server 10 times and i dont want any lag nor my cpu to be taxed. The examples ive found are for the server and i dont know how to implement asyncore on the client. --

Re: What is python?????

2007-11-17 Thread scripteaze
On Nov 17, 12:19 pm, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: On Nov 17, 10:00�am, Neil Cerutti [EMAIL PROTECTED] wrote: On 2007-11-17, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: On Nov 16, 3:10?pm, Alan [EMAIL PROTECTED] wrote: On Nov 16, 8:29 pm, [EMAIL PROTECTED] wrote: I

Re: Using Python To Change The World :)

2007-11-14 Thread scripteaze
On Nov 14, 7:42 am, Scott David Daniels [EMAIL PROTECTED] wrote: [EMAIL PROTECTED] wrote: my objective is to replicate a section of los angeles using python, and program the street lights and cars and whatnot. Should I be looking towards 3D to do this? so here is MY question: how would

Re: Python iPod challenge

2007-11-08 Thread scripteaze
On Nov 8, 2:21 am, [EMAIL PROTECTED] wrote: Hi! a friend and me are investigating how mother-tongue influences programming productivity. We need volunteers to take on a 3 minutes python language programming test. if you are interested please be so kind to visit:

Re: How can i find the form name without nr=0

2007-11-07 Thread scripteaze
On Nov 7, 1:35 pm, [EMAIL PROTECTED] (John J. Lee) wrote: alex23 [EMAIL PROTECTED] writes: On Nov 6, 8:56 am, scripteaze [EMAIL PROTECTED] wrote: Is it possible then to have a form with no name and if so, how can i access this form Hey scripteaze, I'm not sure about mechanize, but you

How can i find the form name without nr=0

2007-11-05 Thread scripteaze
Im using mechanize method for retrieving the form so that i may log into it. I need to find a way to get the form name. Its not listed anywhere in the html source.The reason i need to do this is because im tryin not to use the for loop below. Someone told me that the form name should be listed in

Re: How can i find the form name without nr=0

2007-11-05 Thread scripteaze
On Nov 5, 8:52 am, Diez B. Roggisch [EMAIL PROTECTED] wrote: scripteaze wrote: Im using mechanize method for retrieving the form so that i may log into it. I need to find a way to get the form name. Its not listed anywhere in the html source.The reason i need to do this is because im

Re: How can i find the form name without nr=0

2007-11-05 Thread scripteaze
b Well, i wasnt sure if you could have a form without a form name, i was just thinking that it had one but maybe hidden and that i could retrieve it How hidden? HTML source is ... THE source. there is nothing hidden in there. Is it possible then to have a form with no name and if so, how

Re: How can i find the form name without nr=0

2007-11-05 Thread scripteaze
On Nov 5, 6:33 pm, alex23 [EMAIL PROTECTED] wrote: On Nov 6, 8:56 am, scripteaze [EMAIL PROTECTED] wrote: Is it possible then to have a form with no name and if so, how can i access this form Hey scripteaze, I'm not sure about mechanize, but you might have more success using another one