Re: [BangPypers] Fwd: [Baypiggies] MongoDB for Python Developers starts today

2013-01-23 Thread Ashok Samantray
Thanks On Wed, Jan 23, 2013 at 9:34 PM, Venkatraman S wrote: > FYI: > > -- Forwarded message -- > From: Glen Jarvis > Date: Tue, Jan 22, 2013 at 1:42 AM > Subject: [Baypiggies] MongoDB for Python Developers starts today > To: Baypiggies > > > It's Free. FYI if your have the tim

[BangPypers] Fwd: [Baypiggies] MongoDB for Python Developers starts today

2013-01-23 Thread Venkatraman S
FYI: -- Forwarded message -- From: Glen Jarvis Date: Tue, Jan 22, 2013 at 1:42 AM Subject: [Baypiggies] MongoDB for Python Developers starts today To: Baypiggies It's Free. FYI if your have the time/bandwidth: https://education.10gen.com/courses/10gen/M101P/2013_Spring/about

[BangPypers] Good Django tutorial

2013-01-23 Thread ashish makani
Hi Folks I came across a good django tutorial on hn, so thought of sharing it with all you pythonistas http://gettingstartedwithdjango.com/en/lessons/introduction-and-launch/ (hn page : http://news.ycombinator.com/item?id=5098832 ) cheers ashish ___ B

Re: [BangPypers] Selenium & Python

2013-01-23 Thread Baiju M
I have written some documentation sometimes back here: https://selenium-python.readthedocs.org/en/latest/ Feel free to send any changes via github pull request. On Wed, Jan 23, 2013 at 3:25 PM, Fagun Bhavsar wrote: > Hi, > > I am learning Python and want to implement it side-by-side. The reason

[BangPypers] Selenium & Python

2013-01-23 Thread Fagun Bhavsar
Hi, I am learning Python and want to implement it side-by-side. The reason why I started basic web testing automation with Selenium (I am using Python Bindings) with it. Can someone help me with the learning part of it? I have not done automation testing before so I am finding it a bit more

Re: [BangPypers] function parameter query

2013-01-23 Thread Dhruv Baldawa
On Wed, Jan 23, 2013 at 1:55 PM, Nitin Kumar wrote: > Can anyone explain me why d (2nd parameter of function show) is getting set > to 3, when I am not passing any value to it and kwargs contains d=3. > > I think you mean 4 over here > Why kwargs value is getting set to d argument. Is this the

[BangPypers] function parameter query

2013-01-23 Thread Nitin Kumar
>>> def show(c, d=False, **kwargs): print 'c',c print 'd',d print kwargs >>> def test(c, **kwargs): if (kwargs is None): kwargs = {} kwargs['d'] = 4 kwargs['e'] = 5 show(c, **kwargs) >>> test(1) c 1 d 4 {'e': 5} Can anyone explain me why d (2nd parameter of function show