Re: Get my airlines boarding pass

2006-06-10 Thread KenAggie
Good idea - I just bought the 2nd edition of the book and it is very good. Will check it out. Ken Alex Martelli wrote: > Ken <[EMAIL PROTECTED]> wrote: > > > rh0dium wrote: > > > Hi all, > > > > > > Has any of you fine geniuses figured out a nice python script to go to > > > the Southwest airlin

Re: Get my airlines boarding pass

2006-06-11 Thread KenAggie
I posted it on activestate already ... sorry. I would like for the geniuses here to use it and improve upon it so here is the activestate post URL: http://aspn.activestate.com/ASPN/Cookbook/Python/Recipe/496790 Enjoy. Ken BartlebyScrivener wrote: > >> SW air script > > Post it here, first, and

Re: Get my airlines boarding pass

2006-06-11 Thread KenAggie
of tools to use for the next python project. Thanks for the tip. - Ken Jonathan Ellis wrote: > KenAggie wrote: > > I posted it on activestate already ... sorry. I would like for the > > geniuses here to use it and improve upon it so here is the activestate > > post URL:

Re: Screen Scraping for Modern Applications?

2006-06-11 Thread KenAggie
I just learned about a python library called BeautifulSoup in a thread responding to my Southwest Airlines script that I wrote and posted on the Python cookbook web site. I wrote my script using the provided HTMLParser class. BeautifulSoup could have saved me some time perhaps. Take a look. Feel fr

Re: Evaluating a Function After X Seconds: Python Equivalent to JavaScript's SetTimeout() Function

2006-06-11 Thread KenAggie
Yea -- the "sched" class is exactly what you need. Just import sched and then use it to schedule a function call in the future, either using relative time or an absolute time. The python help file tells you how in detail. - Ken [EMAIL PROTECTED] wrote: > Hi all, > > Not exactly new to Python, ju