Re: [BangPypers] How to Distribute Commercial Python Applications

2014-08-03 Thread B.Nanda Kishore
We use bdist_egg always to ship python packages. It ships just pyc files. https://pythonhosted.org/an_example_pypi_project/setuptools.html On Mon, Aug 4, 2014 at 10:27 AM, Deepak Tripathi wrote: > How to distribute commercial python application without giving source code > to the customer, dev p

Re: [BangPypers] [pythonpune] Re: To use Pinax or just Django

2011-11-20 Thread B.Nanda Kishore
I also suggest using Pinax as a reference sake only. I had to use Pinax for one of the projects a few months back and God! I really hated the integrations, coupling and overriding. Then I started using Pinax for reference sake only and started using/copying the best things in Pinax into my project

Re: [BangPypers] windows(Access Denied Error)

2011-08-06 Thread B.Nanda Kishore
I had a similar problem and solved it after using win32 extensions. Regards, Nandakishore On Sun, Aug 7, 2011 at 11:46 AM, aßlเίlαslเ wrote: > Hi, >I am using shutil.rmtree() to delete folders & all its files(windows), > getting Access Denied Error. >Yes, the folder set to be readonly

Re: [BangPypers] problem with Pinax setting up profile

2011-06-24 Thread B.Nanda Kishore
try it again sudo apt-get install sqlite3 , same error ! , my local > host is running ! but i need to set up profile to login i am able to do > that > any link plz! I realize sorry for spell mistake. > > Regards, > Vikash ruhil > > On Fri, Jun 24, 2011 at 12:46 PM, B.Nanda Ki

Re: [BangPypers] problem with Pinax setting up profile

2011-06-24 Thread B.Nanda Kishore
Regarding the "clone" operation problem, I think its "pinax-admin clone_project" (you missed underscore I guess between *clone* and *project*). Its in the docs And regarding sqlite, I think you tried installing sqllite(with d

Re: [BangPypers] how to uninstall a package installed using easy_install

2011-02-03 Thread B.Nanda Kishore
+1 for pip Regards, Nandakishore On Thu, Feb 3, 2011 at 2:50 PM, Noufal Ibrahim wrote: > On Thu, Feb 03 2011, Kenneth Gonsalves wrote: > > > hi, > > > > I installed hg-git using easy_install. Now hg is b0rked. What is the > > best way of uninstalling hg-git - I do not see any uninstall option

Re: [BangPypers] sending sms through the web

2010-06-09 Thread B.Nanda Kishore
I would recommend checking out Kannel Regards, Nandakishore On Wed, Jun 9, 2010 at 5:35 PM, Kenneth Gonsalves wrote: > On Wednesday 09 June 2010 17:11:32 senthil kumar v s wrote: > > in case if u r going for webservice.. > > i hve used a rest based api provided by eric

Re: [BangPypers] Django Jammers

2010-05-09 Thread B.Nanda Kishore
+1 for this saturday. Any probable ideas, for a django project? Regards, Nandakishore On Sun, May 9, 2010 at 5:15 PM, Manish Sinha wrote: > On Sun, May 9, 2010 at 12:05 PM, Dhaval Sharma >wrote: > > > Hello Group, > > > > Let me know if this is the right forum to initiate coding initiative.

Re: [BangPypers] User group meeting this weekend

2010-04-22 Thread B.Nanda Kishore
+1 for pygments, I recently tried it for my pet project( https://github.com/madhav/zeshare). Its a good one. Regards, Nandakishore On Thu, Apr 22, 2010 at 10:10 AM, Arvind Jamuna Dixit wrote: > I just called Sriram and confirmed the > availability of room for this Sunday. (April 25th at 15:00)

Re: [BangPypers] python coding for automated sms sending,..

2010-01-19 Thread B.Nanda Kishore
If you mean, your web application sending sms to cellphone, then may try Kannel. http://stackoverflow.com/questions/430582/sending-an-sms-to-a-cellphone-using-django/430589#430589 Regards, Nandakishore On Tue, Jan 19, 2010 at 9:29 PM, pradeep T wrote: > hi ... > am developing a mobile applicat

Re: [BangPypers] Excel and Python

2009-09-02 Thread B.Nanda Kishore
You have a module called csv which I think can be used to accomplish what you want. It accepts a csv file, which is identical to .xls file. Try that. #code snippet: import csv csvreader = csv.reader(open(csv_file), delimiter = ',') for row in csvreader: print 'row:%s' % row Regards, Nandaki

Re: [BangPypers] how to embed the python interpreter into web App

2009-07-29 Thread B.Nanda Kishore
You have got a source link there on that page. check it. shell.appspot.com Regards, Nandakishore On Wed, Jul 29, 2009 at 5:46 PM, Mehndi, Sibtey wrote: > Hi All > > I am trying to embed the python interpreter in to a web page > but could not get the way, any one can suggest me how

Re: [BangPypers] how to embed the python interpreter into web App

2009-07-29 Thread B.Nanda Kishore
You mean like this? http://shell.appspot.com/ Regards, Nandakishore On Wed, Jul 29, 2009 at 6:30 PM, Mehndi, Sibtey wrote: > Hi All > > I am trying to embed the python interpreter in to a web page > but could not get the way, any one can suggest me how to do this. > > > > Thanks, >

Re: [BangPypers] Django test case problem

2009-07-28 Thread B.Nanda Kishore
By default django looks for a file called *tests.py*(plural) and not * test.py*. Check that and let us know. Regards, Nandakishore On Tue, Jul 28, 2009 at 6:40 PM, VIJAY KUMAR wrote: > Hi, > >I am running testcase from django when I run them from models.py it > run. > >But when I put t

[BangPypers] Email Bounce Detection

2008-06-26 Thread B.Nanda Kishore
Hello everybody, I need a mechanism to detect email bounces. I tried browsing through smtplib implementation and found not helpful in this case. Actually it is said in the documentation that if a mail is sent to say: " [EMAIL PROTECTED]", then "*_send()*" in the SMTPConnection class returns 550(Unk

[BangPypers] Detect Soft and Hard Email Bounces

2008-06-18 Thread B.Nanda Kishore
Hello everybody, I need a mechanism to detect soft bounced emails and hard bounced emails. How do I do it? -- Regards Nanda, Orglex Inc Email: [EMAIL PROTECTED] "Without Breakdowns, there won't be Breakthroughs." ___ BangPypers mailing list BangPypers@p