Re: [BangPypers] { Parsing }

2014-02-11 Thread Vaikuntham Jagannath
Hi, Why do you want to write a parser for the Gherkin format ? If we can know the underlying need, then may be We can suggest you more effectively. Regards, Jagan On Tue, Feb 11, 2014 at 2:26 PM, Shashidhar Paragonda shashidha...@gmail.com wrote: Hello Python hackers I wanted to write

Re: [BangPypers] { Parsing }

2014-02-11 Thread Shashidhar Paragonda
Hi The main requirement is to build autamation script parsing the Gherkin format. We planned to use Gherkin format to basically convert the test use-cases. Everyone who does manual / automation test, will use Gherkin format to generate the test use-cases, so that Gherkin becomes a common format

Re: [BangPypers] BangPypers Digest, Vol 78, Issue 2

2014-02-11 Thread sahil chug
Sub SumProduct(RowCount1 As Long, RowStart As Long, ColumnCount As Long) Dim ColumnStart As Long, ResultColumn Dim x As Long, y As Long Dim SumProduct As Double, TempTotalSum As Double 'Initialize ColumnStart equal to M' ColumnStart = 13 'Initialize ResultColumn to column C'

Re: [BangPypers] BangPypers Digest, Vol 78, Issue 2

2014-02-11 Thread sahil chug
Sorry please ignoe my previous mail ..that was sent to this address by accident On Tue, Feb 11, 2014 at 4:42 PM, sahil chug sahil2...@gmail.com wrote: Sub SumProduct(RowCount1 As Long, RowStart As Long, ColumnCount As Long) Dim ColumnStart As Long, ResultColumn Dim x As Long, y As Long

[BangPypers] PyCon India 2014 Call for Proposals

2014-02-11 Thread Baiju Muthukadan
Hi, It's that time of year again! PyCon India 2014 will be taking place from September 26-28 in Bangalore and we're ready to accept proposals. Registration will open soon, so mark your calendars and get ready to visit Bangalore for another great PyCon India. The PyCon India website has received

[BangPypers] [JOBS] Join HackerEarth for an exciting opportunity

2014-02-11 Thread Sayan Chowdhury
Hi, I am Sayan, Software Developer at HackerEarth. We are looking for smart people to join us and build HackerEarth. We are here to change the way developers get hired, and we have grown pretty well in just over an year. 2013 was an amazing year for us, and we were able to achieve what we had

Re: [BangPypers] { Parsing }

2014-02-11 Thread Vaikuntham Jagannath
You could consider using Lettuce [http://lettuce.it/] . It is a BDD framework in python. This could help you to build maintain the automation scripts efficiently in the long run. Hope this helps.. Regards, jagan On Tue, Feb 11, 2014 at 5:17 PM, Shashidhar Paragonda shashidha...@gmail.com