[BangPypers] [OT] getting a business email vendor

2011-06-30 Thread Vishal
Hello Friends, This is Off Topic and nothing related to Python in general...thought of sending here since many industry veterans watch this list. We would like to have a *good* business email vendor, and hosting for our website. Would like to know the ones you have found to be good in *India*.

Re: [BangPypers] [OT] getting a business email vendor

2011-06-30 Thread Navin Kabra
On Thu, Jun 30, 2011 at 11:57 AM, Vishal vsapr...@gmail.com wrote: We would like to have a *good* business email vendor, and hosting for our website. Would like to know the ones you have found to be good in *India*. Try Mithi Software (http://www.mithi.com/) a Pune-based company.

Re: [BangPypers] [OT] getting a business email vendor

2011-06-30 Thread Venkatraman S
On Thu, Jun 30, 2011 at 11:57 AM, Vishal vsapr...@gmail.com wrote: Google Apps looks very attractive...but prices are high ($50/per account/per year)...where as many Indian vendors provide 5-10 email addresses at much lower price. Any suggestions? Try mitsu.in for a domain registration

Re: [BangPypers] [OT] getting a business email vendor

2011-06-30 Thread Kenneth Gonsalves
On Thu, 2011-06-30 at 11:57 +0530, Vishal wrote: This is Off Topic and nothing related to Python in general...thought of sending here since many industry veterans watch this list. please refrain from such questions in future. -- regards Kenneth Gonsalves http://lawgon.livejournal.com/

Re: [BangPypers] BangPypers Digest, Vol 46, Issue 28

2011-06-30 Thread aritra ghosh
Try atmail.com On Thu, Jun 30, 2011 at 3:30 PM, bangpypers-requ...@python.org wrote: Send BangPypers mailing list submissions to bangpypers@python.org To subscribe or unsubscribe via the World Wide Web, visit http://mail.python.org/mailman/listinfo/bangpypers or, via email,

[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 Gora Mohanty
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. Unfortunately, only C bindings are available by default, but one can

Re: [BangPypers] Spell Checker Python

2011-06-30 Thread Prashanth
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/aspell-python/ -- regards, Prashanth twitter: munichlinux

Re: [BangPypers] Spell Checker Python

2011-06-30 Thread Puneet Aggarwal
Hi Gora, Thanks for the quick reply. Basically I am looking for spell correction in the sense if someone does a mistake in spelling. Let say someone want to search restaurant and types the spelling wrong as resturant or something. So that we can help him correct it. Thanks, Puneet On Thu, Jun

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

Re: [BangPypers] Spell Checker Python

2011-06-30 Thread JAGANADH G
On Thu, Jun 30, 2011 at 6:49 PM, Puneet Aggarwal look4pun...@gmail.comwrote: Hello Everyone, Anyone knows any good package for spell checker/corrector in python ? Something like google's did you mean functionality. The best Python library for the purpose is PyEnchant Refer

Re: [BangPypers] Spell Checker Python

2011-06-30 Thread Gora Mohanty
On Thu, Jun 30, 2011 at 6:59 PM, Puneet Aggarwal look4pun...@gmail.com wrote: Hi Gora, Thanks for the quick reply. Basically I am looking for spell correction in the sense if someone does a mistake in spelling. Let say someone want to search restaurant and types the spelling wrong as

Re: [BangPypers] Spell Checker Python

2011-06-30 Thread JAGANADH G
On Thu, Jun 30, 2011 at 8:53 PM, Gora Mohanty g...@mimirtech.com wrote: On Thu, Jun 30, 2011 at 6:59 PM, Puneet Aggarwal look4pun...@gmail.com wrote: Hi Gora, Thanks for the quick reply. Basically I am looking for spell correction in the sense if someone does a mistake in spelling.

Re: [BangPypers] BangPypers Digest, Vol 46, Issue 29

2011-06-30 Thread Vikram Kamath
Hi, I hope this helps: http://www.norvig.com/spell-correct.html On Thu, Jun 30, 2011 at 7:49 PM, bangpypers-requ...@python.org wrote: Send BangPypers mailing list submissions to bangpypers@python.org To subscribe or unsubscribe via the World Wide Web, visit

[BangPypers] COMMERCIAL-- BOUNTY or Consulting assignment

2011-06-30 Thread Ramdas S
Hi, We have a project that's is to build a desktop application on top of Linux using Python either using PyQT or wxPython. We estimate around 15-20 hours of work for an experienced developer. Apart from building a GUI, this would also mean writing code to recognize CD Drives, removable disk and

Re: [BangPypers] Spell Checker Python

2011-06-30 Thread Shashidhar P
Hello Jaganadh I already used pyenchant and implemented for German, French, Italy, Czech, English languages. But I am also facing problem with special characters in the German language i.e UMLAUTS. Its not giving me proper result for the German special characters.

Re: [BangPypers] Spell Checker Python

2011-06-30 Thread JAGANADH G
On Fri, Jul 1, 2011 at 12:14 AM, Shashidhar P shashidha...@gmail.comwrote: Hello Jaganadh I already used pyenchant and implemented for German, French, Italy, Czech, English languages. But I am also facing problem with special characters in the German language

[BangPypers] Cool developments on the PyPy front

2011-06-30 Thread Dhananjay Nene
This is an informational post only. I've been watching some of the performance developments on PyPy, but this one made me feel real good. Apparently PyPy is going to lose the GIL and implement locking via STM http://morepypy.blogspot.com/2011/06/global-interpreter-lock-or-how-to-kill.html --