Re: [BangPypers] [JOB] Python/Django Internship position

2012-07-29 Thread Puneet Aggarwal
candidates. Deepak On Thu, Jul 12, 2012 at 10:53 PM, Puneet Aggarwal look4pun...@gmail.com wrote: Hi, Looking for Fresh college graduates for Internship position at Noida. We are a internet based startup started by IIT, BITS alumnus. This is a full time opportunity and candidates

[BangPypers] [JOB] Python/Django Internship position

2012-07-12 Thread Puneet Aggarwal
Hi, Looking for Fresh college graduates for Internship position at Noida. We are a internet based startup started by IIT, BITS alumnus. This is a full time opportunity and candidates will be paid stipend. Based on the performance might be converted to full time employment opportunity.

[BangPypers] [JOBS] Python/Django Internship position

2012-01-09 Thread Puneet Aggarwal
Hi, Looking for Fresh college graduates for Internship position at Noida. We are a internet based startup started by IIT, BITS alumnus. Requirements for the internship: • Strong passion for learning. • Strong background in any of these languages C++/Python. • Knowledge of Data-Structures and

Re: [BangPypers] Spell Checker Python

2011-07-01 Thread Puneet Aggarwal
Thanks everyone for the responses. I will try out the suggestions. Thanks, Puneet On Fri, Jul 1, 2011 at 12:45 AM, JAGANADH G jagana...@gmail.com wrote: On Fri, Jul 1, 2011 at 12:14 AM, Shashidhar P shashidha...@gmail.com wrote: Hello Jaganadh I already used pyenchant

[BangPypers] Spell Checker Python

2011-06-30 Thread Puneet Aggarwal
Hello Everyone, Anyone knows any good package for spell checker/corrector in python ? Something like google's did you mean functionality. Thanks, Puneet ___ BangPypers mailing list BangPypers@python.org

Re: [BangPypers] Spell Checker Python

2011-06-30 Thread Puneet Aggarwal
30, 2011 at 6:56 PM, Gora Mohanty g...@mimirtech.com wrote: On Thu, Jun 30, 2011 at 6:49 PM, Puneet Aggarwal look4pun...@gmail.com wrote: Hello Everyone, Anyone knows any good package for spell checker/corrector in python ? The best open-source spellchecker that I know of is aspell

Re: [BangPypers] Spell Checker Python

2011-06-30 Thread Puneet Aggarwal
On Thu, Jun 30, 2011 at 6:57 PM, Prashanth munichli...@gmail.com wrote: Hi Puneet, On Thu, Jun 30, 2011 at 6:49 PM, Puneet Aggarwal look4pun...@gmail.com wrote: Anyone knows any good package for spell checker/corrector in python ? Python binding for GNU aspell http://0x80.pl/proj

[BangPypers] HTML Parsing in python

2009-09-10 Thread Puneet Aggarwal
Hi BangPypers, Can anyone suggest me a good library for html parsing in python ? I googled a found few libararies BeautifulSoup, HTMLParser, SGMLParser etc. Can anyone suggest me which should I go for from your experience. Thanks, Puneet ___

Re: [BangPypers] HTML Parsing in python

2009-09-10 Thread Puneet Aggarwal
Thanks all for the suggestions. I think I will start with BeautifulSoup (3.0.7a) and will experiment with other suggested libs if it does not fit into my requirement or if I face issues with this. On Thu, Sep 10, 2009 at 7:07 PM, Baishampayan Ghose b.gh...@gmail.comwrote: Can anyone suggest me

Re: [BangPypers] HTML Parsing in python

2009-09-10 Thread Puneet Aggarwal
Hi Dhananjay, My requirement is simple. I need to extract information from a page. But the pages can be malformed html or it can be any junk html. So the tolerance required. Thanks, Puneet On Thu, Sep 10, 2009 at 7:33 PM, Dhananjay Nene dhananjay.n...@gmail.comwrote: Do you require tolerance

Re: [BangPypers] Acessing session variables in template with django

2009-05-23 Thread Puneet Aggarwal
request.session['cityname'] = *cityname* you should write request.session['cityname'] = *request*.POST[cityname] or just check the value of cityname. Thanks. On Sat, May 23, 2009 at 1:01 PM, Gora Mohanty g...@srijan.in wrote: On Sat, 23 May 2009 11:03:26 +0530 Puneet Aggarwal look4pun...@gmail.com

[BangPypers] Joins with Django

2009-05-06 Thread Puneet Aggarwal
Hello All, I am trying to learn django and write a small application. I am facing issue in executing a join with django. I am able to find a work around by executing a raw SQL query using cursor. But that have problem that I need to access fields using object.0' or 'object.1' which is too