Webhosting python info

2006-03-07 Thread googlinggoogler
Hi, Is there a way in python to have all the modules/ packages availiable to me printed out, like phpinfo (http://uk2.php.net/phpinfo) on my webhosting. Cheers David -- http://mail.python.org/mailman/listinfo/python-list

Re: Pylab and pyserial plot in real time

2005-11-08 Thread googlinggoogler
Juho Schultz: Thanks for that, havent got time to modify it for my needs at the moment, but im sure it'll work as i've just tried it Jeremy Sanders: Cheers for that, i'll check it out. thanks to everyone else to! Thanks David -- http://mail.python.org/mailman/listinfo/python-list

Pylab and pyserial plot in real time

2005-11-06 Thread googlinggoogler
Hiya, I've got a PIC microcontroller reading me humidity data via rs232, this is in ASCII format. I can view this data easily using hyperterminal or pyserial and convert it to its value (relative humidty with ord(input)) But what im trying to do is plot the data in real time, ideally with pylab

Re: Pylab and pyserial plot in real time

2005-11-06 Thread googlinggoogler
Yea I know the data is correct, all I do is sample my data with an ADC and then send it to the serial port. using hyper terminal or indeed pyserial presents the data as a ASCII charecters, the value of these Charecters is the converted to there equivalent decimal value using the ord() command.

Re: searching string url

2005-07-28 Thread googlinggoogler
Cheers for all your replies, Peter Hansen: Couldnt agree more with you about not effectivly spamming companies with my resume, thats why im crawling the local newspapers website to - to find scrapes of information about companies :-) I Wasnt planning to automate everything, more the boring

searching string url

2005-07-27 Thread googlinggoogler
Hiya, Im trying to find a method of searching a html file (ive grabbed it with FancyURLopener), basically in the html file there is a series of links in the following format - A HREF=../../company/11/13/820.htmsome name/A so I want to search the file for ../../company/ and then get the 13

Re: searching string url

2005-07-27 Thread googlinggoogler
Thanks for the rapid replys, I cracked the problem 15 seconds after posting here, doh! Anyway to the orginally replier - I wish it was homework ;-), that would mean I wouldnt be trying to find myself a job as a recent graduate... I decided to crawl something similar to the yellow pages (do you

Text files read multiple files into single file, and then recreate the multiple files

2005-02-12 Thread googlinggoogler
Hiya, The title says it all really, but im a newbie to python sort of. I can read in files and write files no probs. But what I want to do is read in a couple of files and output them to one single file, but then be able to take this one single file and recreate the files I put into it. Im

Re: Text files read multiple files into single file, and then recreate the multiple files

2005-02-12 Thread googlinggoogler
Would like to use text files, its really for my own learning, but I suppose a Zip would work cheers -- http://mail.python.org/mailman/listinfo/python-list