[BangPypers] PyCon 2012 News - Tutorials, Talks, and Tickets

2011-12-22 Thread Brian Curtin
We are now 75 days away from PyCon 2012 in Santa Clara—it’s hard to think about how quickly time has flown since PyCon 2011! We’ve lined up some great keynote and plenary speakers, announced the tutorial and talk selections, opened ticket sales, and have expanded financial aid opportunities. Th

Re: [BangPypers] Auto Login to Website and Capturing more details

2011-12-22 Thread Saager Mhatre
On Thu, Dec 22, 2011 at 10:27 PM, Noufal Ibrahim wrote: > [snip] > > The Python stdlib can handle this using urllib2 and cookielib. I've managed > something like this here https://gist.github.com/3811b566df4005a012c7which > you can use as a starting point. > > After this, you have a session. No

Re: [BangPypers] Auto Login to Website and Capturing more details

2011-12-22 Thread Noufal Ibrahim
Nikunj Badjatya writes: > Hi All, > > I am trying to use Python power in my daily life. > Do you have Airtel Broadband Connection ? YES / NO ? In either case..read > on. ! > I am trying to write a script which will automatically login to Airtel page > https://ebpp.airtelworld.com/cares/wps/myport

[BangPypers] Auto Login to Website and Capturing more details

2011-12-22 Thread Nikunj Badjatya
Hi All, I am trying to use Python power in my daily life. Do you have Airtel Broadband Connection ? YES / NO ? In either case..read on. ! I am trying to write a script which will automatically login to Airtel page https://ebpp.airtelworld.com/cares/wps/myportal Then go to "account information ->

Re: [BangPypers] colored o/p

2011-12-22 Thread kracekumar ramaraju
Hi I have achieved same using colorma. -- * Thanks & Regards "Talk is cheap, show me the code" -- Linus Torvalds kracekumar www.kracekumar.com * ___ BangPypers mailing list BangPypers@python.org http://mail.python.org/mailman/listinfo/bangpypers

Re: [BangPypers] colored o/p

2011-12-22 Thread Senthil Kumaran
> Nitin Kumar writes: > > > I am trying to format o/p (colored bold string) on console. say IDLE or > > python command prompt using python modules. urwid is a library which can handle those for you. Give a try! It is very close to what ncurses can be used for. HTH, Senthil

[BangPypers] In Multiprocess module how to find which worker process is executing the job

2011-12-22 Thread Rahul R
I was wondering , if there is a way to find out which process among the Pool has executed a particular job submitted. For example , def start_exe(): ##Does some task ### if __name__ == '__main__': p = Pool(5) result = p.apply_async(start_exe) print result.get() how do i find out , which w

Re: [BangPypers] Reading registry keys

2011-12-22 Thread Noufal Ibrahim
Nitin Kumar writes: > Hi All, > > I am in learning phase to handle registry keys and manipulate it. > I guess we can use winreg as well as win32com for the same purpose. > > can anyone please tell me the difference in their usage. winreg is a part of the standard library on windows that allows y

[BangPypers] Reading registry keys

2011-12-22 Thread Nitin Kumar
Hi All, I am in learning phase to handle registry keys and manipulate it. I guess we can use winreg as well as win32com for the same purpose. can anyone please tell me the difference in their usage. -- Nitin K ___ BangPypers mailing list BangPypers@py