Re: [BangPypers] [FREE] python/django training

2011-07-12 Thread Shashidhar Paragonda
Hello Vikas really its nice initiative after the complete training please send both source code, and video link so that we can share with others who dint attended and also to people who are in need to get started thank you, have a nice day and I wish all the success for the event b

Re: [BangPypers] [FREE] python/django training

2011-07-12 Thread kracekumar ramaraju
Hey all , I am from Bangalore(shifted 2 days back),I would love to attend. Winning Regards KraceKumar.R http://kracekumar.wordpress.com ___ BangPypers mailing list BangPypers@python.org http://mail.python.org/mailman/listinfo/bangpypers

Re: [BangPypers] [OT] language fanaticism

2011-07-12 Thread Kenneth Gonsalves
On Wed, 2011-07-13 at 08:07 +0800, Senthil Kumaran wrote: > Question to you (hypothetical) - You have two choices: > > a) Choose Pyramid web-framework because the ORM works well the > existing database. > > b) Java project with heavy interaction with database. > > Which would you likely choose?

Re: [BangPypers] [OT] language fanaticism

2011-07-12 Thread Senthil Kumaran
On Wed, Jul 13, 2011 at 04:51:41AM +0530, Kenneth Gonsalves wrote: > take into account deadlines, resources/skills available etc etc. Maybe > for a particular webapp Django is overkill - but do I have the time to > learn something more suitable (or the ability)? I understand your point. One may b

Re: [BangPypers] [OT] language fanaticism

2011-07-12 Thread Kenneth Gonsalves
On Wed, 2011-07-13 at 05:28 +0800, Senthil Kumaran wrote: > > The Ruby Speed Center (which is similar to speed.pypy.org) uses > > codespeed which is a Python/Django based application[1]. > > And yeah, not to miss that many python based projects have started > using jenkins for CI which is Java bas

Re: [BangPypers] [OT] language fanaticism

2011-07-12 Thread Senthil Kumaran
On Mon, Jul 11, 2011 at 06:43:17PM +0530, Noufal Ibrahim wrote: > The Ruby Speed Center (which is similar to speed.pypy.org) uses > codespeed which is a Python/Django based application[1]. And yeah, not to miss that many python based projects have started using jenkins for CI which is Java based.

Re: [BangPypers] [FREE] python/django training

2011-07-12 Thread vikas ruhil
http://learnhackstuff.blogspot.com Regards, Vikash ruhil ___ BangPypers mailing list BangPypers@python.org http://mail.python.org/mailman/listinfo/bangpypers

Re: [BangPypers] [FREE] python/django training

2011-07-12 Thread renukapras...@gmail.com
On Tue, Jul 12, 2011 at 3:28 AM, vikas ruhil wrote: > Date:30th July 2011(1 day boot camp)  , City :Delhi , Venue : USO house/JNU > university > > For outsides Delhi such as People from Bangalore etc..might be webinar > arranged unless we send them whole tutorial source code /Video to then on > ma

Re: [BangPypers] [Small Hitch]Minidom and xml parsing.

2011-07-12 Thread Subhodip Biswas
Hi, On Tue, Jul 12, 2011 at 12:33 PM, Amit Sethi wrote: > [..] >>> I am fairly new to python and i am stuck with a problem. >>> What I am  trying to do is parse a xml file using minidom. My xml file >>> as almost a structure like this : >>> >>> >>>       >>>               >>>               >

Re: [BangPypers] [Small Hitch]Minidom and xml parsing.

2011-07-12 Thread Nitin Kumar
are you limited to use DOM? if not then you can also use elementtree for ex: from xml.etree import ElementTree as ET fp=open('try.xml') #your xml file xmlData = fp.read() tree = ET.XML( xmlData ) listroot = list(tree) for item in listroot: if(item.tag == "parent"): for dc

Re: [BangPypers] [Small Hitch]Minidom and xml parsing.

2011-07-12 Thread Amit Sethi
[..] >> I am fairly new to python and i am stuck with a problem. >> What I am  trying to do is parse a xml file using minidom. My xml file >> as almost a structure like this : >> >> >>       >>               >>               >>               >>               >>       >>       >>       >> Not kno