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

2011-05-15 Thread Pradeep Gowda
On Sun, May 15, 2011 at 1:13 PM, kaushik kalyanaraman dialkforkaus...@gmail.com wrote: On Sun, May 15, 2011 at 11:31 AM, Santosh Rajan santra...@gmail.com wrote: I have been reading this thread with interest, and I think this whole thread is degenerating into a level of immaturity. snip This

Re: [BangPypers] Django + NoSQL

2011-04-20 Thread Pradeep Gowda
All popular NoSQL solutions (Couch, MongoDB, Riak ..) have Python bindings. Core django modules still assume a relational backend. Why the insistence on django ? Putting on the Django glasses everytime is not a healthy development. +PG On Wed, Apr 20, 2011 at 7:50 AM, Anush Shetty

Re: [BangPypers] Django + NoSQL

2011-04-20 Thread Pradeep Gowda
This SqlAlchmeny must be a new library then. Is it anything like the SQLAlchemy library that talks only to relational databases? On Wed, Apr 20, 2011 at 12:58 PM, vijay vnbang2...@yahoo.com wrote: I have used Django with SqlAlchmeny. --- On Wed, 20/4/11, Anush Shetty anushshe...@gmail.com

Re: [BangPypers] How to handle files efficiently in python

2011-03-23 Thread Pradeep Gowda
On Tue, Mar 22, 2011 at 12:49 PM, Noufal Ibrahim nou...@gmail.com wrote: On Tue, Mar 22 2011, briji...@gmail.com wrote: Hi All,         How can I print last five lines of a file using python. The file may contain thousands of lines each line may differ in length. [...] You'd have to use

Re: [BangPypers] How to handle files efficiently in python

2011-03-22 Thread Pradeep Gowda
If you are on Linux/Unix, use the tail command $ tail -n 5 somefile.txt On Tue, Mar 22, 2011 at 11:09 AM, briji...@gmail.com briji...@gmail.com wrote: Hi All,        How can I print last five lines of a file using python. The file may contain thousands of lines each line may differ in

Re: [BangPypers] Suggestion for GUI

2011-01-09 Thread Pradeep Gowda
On Sun, Jan 9, 2011 at 6:22 PM, Narendra Sisodiya naren...@narendrasisodiya.com wrote: On Mon, Jan 10, 2011 at 3:54 AM, Vivek Khurana hiddenharm...@gmail.comwrote: On Mon, Jan 10, 2011 at 3:44 AM, Narendra Sisodiya naren...@narendrasisodiya.com wrote: At the same time, I do not want to use

Re: [BangPypers] Suggestion for GUI

2011-01-09 Thread Pradeep Gowda
On Sun, Jan 9, 2011 at 11:39 PM, Narendra Sisodiya naren...@narendrasisodiya.com wrote: On Mon, Jan 10, 2011 at 7:55 AM, Pradeep Gowda prad...@btbytes.com wrote: On Sun, Jan 9, 2011 at 6:22 PM, Narendra Sisodiya naren...@narendrasisodiya.com wrote: On Mon, Jan 10, 2011 at 3:54 AM, Vivek

Re: [BangPypers] Suggestion for GUI

2011-01-09 Thread Pradeep Gowda
On Mon, Jan 10, 2011 at 12:26 AM, Narendra Sisodiya naren...@narendrasisodiya.com wrote: On Mon, Jan 10, 2011 at 10:38 AM, Pradeep Gowda prad...@btbytes.com wrote: On Sun, Jan 9, 2011 at 11:39 PM, Narendra Sisodiya naren...@narendrasisodiya.com wrote: On Mon, Jan 10, 2011 at 7:55 AM, Pradeep

Re: [BangPypers] Distributing a python project as a binary.

2011-01-08 Thread Pradeep Gowda
On Sat, Jan 8, 2011 at 10:41 AM, kunal kunal...@gmail.com wrote: Hi all, I am just curious , and do not intend to start any flame wars. If a company wants to use python in a commercial project and does not want the source code to go public (i.e closed source ). How would one go about

Re: [BangPypers] What kind of applications can we develop with Python

2010-12-01 Thread Pradeep Gowda
On Wed, Dec 1, 2010 at 6:52 AM, sreedhar ambati ambatisreed...@gmail.com wrote: Hi I am new to Python. I am from PHP,Microsoft .net background. Can you tell me the real power behind Python language? What kind of applications we can develop? Please quote some real time projects where

Re: [BangPypers] Access xml file form python script

2010-10-31 Thread Pradeep Gowda
On Sun, Oct 31, 2010 at 7:42 AM, Avinash TM avinas...@gmail.com wrote: Hi All, I have created a simple xml document i.e., preferences.xml as follows ?xml version=1.0? object  object name=category value=cricket   property name=titleCricket/property   property name=subscribers    element

Re: [BangPypers] Simplest way to do web programming in python.

2010-10-28 Thread Pradeep Gowda
On Thu, Oct 28, 2010 at 9:31 AM, Noufal Ibrahim nou...@gmail.com wrote: On Wed, Oct 27 2010, ishan chhabra wrote: Hi all, I have a set of scripts in python that visualize a search result (produce an image) given a query. I will be building a flash based interface (to surf this visualized

Re: [BangPypers] Simplest way to do web programming in python.

2010-10-26 Thread Pradeep Gowda
On Tue, Oct 26, 2010 at 2:54 PM, ishan chhabra ishan.chha...@gmail.com wrote: Hi all, I have a set of scripts in python that visualize a search result (produce an image) given a query. I will be building a flash based interface (to surf this visualized search space) to serve this over the web.

Re: [BangPypers] diffrerence between lambda function and ordinary one

2010-08-06 Thread Pradeep Gowda
On Fri, Aug 6, 2010 at 10:20 AM, Rahul R rahul8...@gmail.com wrote: i was writing some basic code . for understanding lambda functions , but couldnt understand the difference between a lambda function and an ordinary function. for example def f (x): return x**2 ... print f(8) 64 g =

Re: [BangPypers] Regarding web framework in Python

2010-06-03 Thread Pradeep Gowda
On Thu, Jun 3, 2010 at 3:57 AM, Gora Mohanty g...@srijan.in wrote: On Thu, 3 Jun 2010 13:15:12 +0530 Jins Thomas jinstho...@gmail.com wrote: [...] Current requirement is like we are planning to build such an application which should have 1.  (Web) client gui  which can connect to a

Re: [BangPypers] Regarding web framework in Python

2010-06-03 Thread Pradeep Gowda
On Thu, Jun 3, 2010 at 3:45 AM, Jins Thomas jinstho...@gmail.com wrote: On Sat, Jan 30, 2010 at 12:32 AM, Pradeep Gowda prad...@btbytes.com wrote: On Fri, Jan 29, 2010 at 3:47 AM, Jins Thomas jinstho...@gmail.com wrote: Hi All, Would like to ask one suggestion from bangpypers. I have

Re: [BangPypers] python for management studies

2010-06-03 Thread Pradeep Gowda
On Thu, Jun 3, 2010 at 1:34 PM, Pradeep Gowda prad...@btbytes.com wrote: On Thu, Jun 3, 2010 at 1:19 PM, Kenneth Gonsalves law...@au-kbc.org wrote: hi, I have been commissioned to create and implement a course (compulsory with 2 credits for first semester) on computer programming for business

Re: [BangPypers] time in seconds and milliseconds

2010-05-31 Thread Pradeep Gowda
On Mon, May 31, 2010 at 8:33 PM, murugadoss murugadoss2...@gmail.com wrote: how to represent the time in seconds and milliseconds ?A function similar to gettimeofday() in c. gettimeofday(tv, NULL) http://docs.python.org/library/time.html Which functions have you YOU tried so far? Your

Re: [BangPypers] Getting process handle and thread handles from DEOS

2010-03-25 Thread Pradeep Gowda
On Mar 25, 2010, at 2:28, Goudar, Girish girish.gou...@goodrich.com wrote: Is there ant command from the Python script to get these information from the DEOS? What is DEOS? ___ BangPypers mailing list BangPypers@python.org

Re: [BangPypers] Simple python database library

2010-03-04 Thread Pradeep Gowda
On Wed, Mar 3, 2010 at 9:38 PM, Noufal Ibrahim nou...@gmail.com wrote: You could use the sql builder component of sql alchemy and skip the orm part. The web.db part of web.py might work as well. +1 for web.py Having used web.py for data munging tasks, I think that web.db is a step up from

Re: [BangPypers] Trouble installing psycopg2 in Snow Leopard

2010-02-09 Thread Pradeep Gowda
On Tue, Feb 9, 2010 at 11:07 AM, Diptanu Choudhury admin.nitj...@gmail.com wrote: 2): Symbol not found: _PQbackendPID Looks like a 32/64 bit related mixup. See:http://stubblog.wordpress.com/2009/06/07/installing-psycopg2-on-osx/ Report back if you had any success.

Re: [BangPypers] Python syntax highligting in Latex beamer

2010-01-29 Thread Pradeep Gowda
On Fri, Jan 29, 2010 at 10:49 AM, JAGANADH G jagana...@gmail.com wrote: Dear All Can somebody give me a clear example how to highlight Python code in latex beamer. I used listings but no result . I do not have the direct answer, but.. Documentation generated by Sphinx/restrcuturedText has

Re: [BangPypers] Regarding web framework in Python

2010-01-29 Thread Pradeep Gowda
On Fri, Jan 29, 2010 at 3:47 AM, Jins Thomas jinstho...@gmail.com wrote: Hi All, Would like to ask one suggestion from bangpypers. I have a oracle  database in Unix and need to create a web based GUI to execute some queries/scripts  (via buttons) and save that in csv either in Unix or in

Re: [BangPypers] Python/Django issue

2010-01-25 Thread Pradeep Gowda
On Mon, Jan 25, 2010 at 9:51 AM, Noufal Ibrahim nou...@gmail.com wrote: On Mon, Jan 25, 2010 at 7:29 PM, Praveen Kumar praveen.python.pl...@gmail.com wrote: [..] However at least IE4.5 for the Mac, will only allow you to send and retrieve information to the server that contains the flash

Re: [BangPypers] Execute Windows shutdown command through python !

2009-12-29 Thread Pradeep Gowda
On Tue, Dec 29, 2009 at 9:22 AM, ™aßlเίlαslเ ► abhilash.p...@gmail.com wrote: *import os os.system(shutdown /?)* *its saying shutdown is not an internal or external command or executable batch file* Is shutdown a valid command in the new OS? Atleast it looks like that from the error

Re: [BangPypers] Is it possible to run python software in WinxP?

2009-12-22 Thread Pradeep Gowda
On Tue, Dec 22, 2009 at 11:00 PM, 74yrs old withblessi...@gmail.com wrote: for download at website viz http://code.google.com/p/tesseractindic/. ( On request, the said program - shall forward the same to you) You need GTK2+ libraries and PyGTK The first one is available at:

Re: [BangPypers] can not connect to Mobile Broadband

2009-12-22 Thread Pradeep Gowda
On Tue, Dec 22, 2009 at 11:55 PM, BR!j!TH briji...@gmail.com wrote: Does any one have any solution this problem ? Have you tried configuring it using the Network Manager app? You are on the wrong mailing list. And even if someone does attempt to answer, your question does not carry

Re: [BangPypers] mobile application development

2009-12-16 Thread Pradeep Gowda
On Wed, Dec 16, 2009 at 8:39 AM, pradeep T itpradeep...@gmail.com wrote: hi friends,  am a begginer of this language and dont know much.  Is it possible for me to develop a mobile application using this  language... The phrase mobile application encompasses so many different approaches. Even

Re: [BangPypers] mobile application development

2009-12-16 Thread Pradeep Gowda
On Wed, Dec 16, 2009 at 11:34 AM, Baiju M mba...@zeomega.com wrote: On Wed, Dec 16, 2009 at 7:09 PM, pradeep T itpradeep...@gmail.com wrote: hi friends,  am a begginer of this language and dont know much.  Is it possible for me to develop a mobile application using this   language...

Re: [BangPypers] mobile application development

2009-12-16 Thread Pradeep Gowda
On Wed, Dec 16, 2009 at 1:55 PM, Mandar Gokhale stallo...@gmail.com wrote: *tl;dr* : If some people have vague responses, it could be because they are vaguely interested in the subject. Is that sufficient grounds to shoot them down? Yes. This is not 199x and information is freely and widely

Re: [BangPypers] Python place holder doubt

2009-11-12 Thread Pradeep Gowda
On Thu, Nov 12, 2009 at 3:04 AM, Aravind Muthu aravind.g...@gmail.com wrote: Try this ..i dont know exactlly correct or not. url=self.BASEURL final=+ pmid=%d + tag=ntagtype=ge %d urlparse.urljoin(url,final) There are two errors in the second line 1. what is =+ ? 2. and what is the

Re: [BangPypers] Google Go

2009-11-11 Thread Pradeep Gowda
On Wed, Nov 11, 2009 at 6:18 AM, steve st...@lonetwin.net wrote: On 11/11/2009 04:17 PM, Ramdas S wrote:  But I don't see the Python connection at all here. Yeah! I jumped the line without reading. Actually going through now and downloading the stuff I cant see much  from Python

Re: [BangPypers] Google Go

2009-11-11 Thread Pradeep Gowda
That's what the big boys of the world wants you to believe. I had met a very senior official in the government a techy himself and spent 3 hours showing him virtues of Python and Django, hoping that they will change the RFP terms. I found out yesterday that the application has to be

Re: [BangPypers] Google Go

2009-11-11 Thread Pradeep Gowda
On Wed, Nov 11, 2009 at 7:55 AM, Anand Balachandran Pillai abpil...@gmail.com wrote: On Wed, Nov 11, 2009 at 6:06 PM, Roshan Mathews rmath...@gmail.com wrote: On Wed, Nov 11, 2009 at 5:22 PM, Anand Balachandran Pillai abpil...@gmail.com wrote:  Upon 2nd reading, I also thought they did, but

Re: [BangPypers] But IDEs rock! (was Google Go)

2009-11-11 Thread Pradeep Gowda
On Wed, Nov 11, 2009 at 9:36 AM, Darkseid lorddae...@gmail.com wrote: 2. It's easy to hire an IDE-aware monkey to do programming in proven technology I do most of my work in Ruby (and have done for a few years now). Every day I bemoan the lack of a powerful refactoring IDE like Java has in

Re: [BangPypers] Python place holder doubt

2009-11-11 Thread Pradeep Gowda
On Wed, Nov 11, 2009 at 12:47 PM, JAGANADH G jagana...@gmail.com wrote: url = self.BASEURL + pmid=%d + tag=ntagtype=ge %d Did you mean: url = self.BASEURL + pmid=%d % (d, ) + tag=ntagtype=ge ? Even though this might fix your problem, don't use it. To encode URLs always use urlencode:

Re: [BangPypers] Unstructured data and python

2009-10-16 Thread Pradeep Gowda
On Fri, Oct 16, 2009 at 2:31 PM, Carl Trachte ctrac...@gmail.com wrote: On 10/16/09, Ramdas S ram...@gmail.com wrote: Has anyone worked/seen any project which involves migrating unstructured data, mostly text files to a reasonably indexed databas preferably written in Python or has Python

Re: [BangPypers] line understanding problem

2009-10-08 Thread Pradeep Gowda
On Thu, Oct 8, 2009 at 11:22 PM, harshal jadhav jadhav.hars...@gmail.com wrote: though i get the output but i also get the following statement gr_block sig_source_f (1) i donot understand what this line means. My aim is to capture the samples of src0. for that purpose i have given print src0

Re: [BangPypers] [ANN][X-Post] SciPy India conference in Dec. 2009

2009-10-07 Thread Pradeep Gowda
On Wed, Oct 7, 2009 at 3:32 PM, Anand Chitipothu anandol...@gmail.com wrote: [..] If there are good CMS softwares in Python then why nobody in this group hasn't named a single one other than Plone? [..] There is Skeletonz http://orangoo.com/skeletonz/ Which is pretty user friendly from the

Re: [BangPypers] [ANN][X-Post] SciPy India conference in Dec. 2009

2009-10-07 Thread Pradeep Gowda
On Wed, Oct 7, 2009 at 2:37 PM, Pradeep Gowda prad...@btbytes.com wrote: On Wed, Oct 7, 2009 at 3:32 PM, Anand Chitipothu anandol...@gmail.com wrote: [..] If there are good CMS softwares in Python then why nobody in this group hasn't named a single one other than Plone

Re: [BangPypers] SciPy India 2009 - SciPy.in

2009-10-04 Thread Pradeep Gowda
On Sun, Oct 4, 2009 at 2:03 AM, Kenneth Gonsalves law...@au-kbc.org wrote: On Sunday 04 Oct 2009 11:22:28 am Anand Balachandran Pillai wrote:  6 days... isn't it rather too long for a specific interest  conference. weird: http://fossee.in/whydrupal   Hadn't noticed it was written in

Re: [BangPypers] SciPy India 2009 - SciPy.in

2009-10-04 Thread Pradeep Gowda
On Sun, Oct 4, 2009 at 3:12 AM, Sidharth Kuruvila sidharth.kuruv...@gmail.com wrote: Hey Hey, no need to dis Php, or Drupal for that matter, it's actually a mighty fine language for what it does. And they have been making it a lot better(namespaces, closures and, possibly just for Pradeep,

Re: [BangPypers] SciPy India 2009 - SciPy.in

2009-10-04 Thread Pradeep Gowda
experience working with, so I spend less time wasted trying to learn the tools. ___ BangPypers mailing list BangPypers@python.org http://mail.python.org/mailman/listinfo/bangpypers -- Pradeep Gowda ENthEnergy LLC 9365 Counselors Row, Suite 120

Re: [BangPypers] Can we create proprietary database in Python

2009-09-26 Thread Pradeep Gowda
On Sat, Sep 26, 2009 at 3:15 PM, Arun Python arunpyt...@ymail.com wrote: I am a novice to Python. I have a few doubts. a) How useful is python in the development of database applications when compared to C++. b) Can we able to create proprietary or sequential database like in C++ in python

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

2009-07-29 Thread Pradeep Gowda
    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. http://werkzeug.pocoo.org/documentation/0.5.1/debug.html ___ BangPypers mailing list BangPypers@python.org

Re: [BangPypers] which is better solution of the question

2009-06-16 Thread Pradeep Gowda
On Tue, Jun 16, 2009 at 10:42 AM, Pradeep Gowdaprad...@btbytes.com wrote: On Tue, Jun 16, 2009 at 9:52 AM, Abhishek Tiwaritiwariabhishe...@gmail.com wrote: I would like to know which method is better and why? Better for what purpose? 1. speed of execution? 2. elegance? The list

Re: [BangPypers] Responding to people who lack the curiosity

2009-06-12 Thread Pradeep Gowda
On Fri, Jun 12, 2009 at 7:43 AM, vidv...@svaksha.com wrote: hmm kindly define real name[0], real identity with respect to the online world. If the owner of swtest...@gmail.com had used Manmohan Singh or Rita Rai instead of testing123 test, would you trust them more ? [0]  i've been using

Re: [BangPypers] Responding to people who lack the curiosity

2009-06-12 Thread Pradeep Gowda
On Fri, Jun 12, 2009 at 8:57 AM, Srijayanth Sridharsrijaya...@gmail.com wrote: Names are irrelevant on the internet, so I agree with both of you in a certain way. Well, there is one way to be relevant in programming circles, which is often condensed to -- show your code or GTFO. Ruby

Re: [BangPypers] Responding to people who lack the curiosity

2009-06-12 Thread Pradeep Gowda
On Fri, Jun 12, 2009 at 9:36 AM, Pradeep Gowdaprad...@btbytes.com wrote: On Fri, Jun 12, 2009 at 8:57 AM, Srijayanth Sridharsrijaya...@gmail.com wrote: Names are irrelevant on the internet, so I agree with both of you in a certain way. Well, there is one way to be relevant   in programming

Re: [BangPypers] Responding to people who lack the curiosity

2009-06-12 Thread Pradeep Gowda
On Fri, Jun 12, 2009 at 2:20 AM, Sridhar Ratnakumarsridhar.ra...@gmail.com wrote: Now do you think a person who is lazy to type a few characters in an Internet search engine (as evidenced by Is there any tutorial. Should we include any library?) would be interested at all in reading a 60,000

Re: [BangPypers] Responding to people who lack the curiosity

2009-06-12 Thread Pradeep Gowda
On Fri, Jun 12, 2009 at 8:38 PM, Kenneth Gonsalveslaw...@au-kbc.org wrote: On Friday 12 June 2009 14:30:57 Srijayanth Sridhar wrote: What are your experiences as a person from a small town? My question is more directed towards your 'programming culture' now vis-a-vis to your programming

Re: [BangPypers] Responding to people who lack the curiosity

2009-06-11 Thread Pradeep Gowda
On Fri, Jun 12, 2009 at 12:31 AM, Sridhar Ratnakumarsridhar.ra...@gmail.com wrote: On Thu, Jun 4, 2009 at 3:22 AM, Srijayanth Sridharsrijaya...@gmail.com wrote: I don't know the reasons either, but would like to know too. I often think the best way to handle such posters is to momentarily

Re: [BangPypers] Zine for weblogging

2009-04-24 Thread Pradeep Gowda
Do you have a TODO List somewhere? (The bitbucket wiki maybe) so that interested parties can poke at the source code/contribute? +PG On Fri, Apr 24, 2009 at 1:52 AM, Roshan Mathews rmath...@gmail.com wrote: Nice writeup, thank you. Roshan On Fri, Apr 24, 2009 at 10:58 AM, Kiran Jonnalagadda

Re: [BangPypers] MIT moving from Scheme to Python

2009-03-26 Thread Pradeep Gowda
This course : http://ocw.mit.edu/OcwWeb/Electrical-Engineering-and-Computer-Science/6-00Fall-2007/CourseHome/index.htm replaced this: http://ocw.mit.edu/OcwWeb/Electrical-Engineering-and-Computer-Science/6-001Spring-2005/CourseHome/index.htm The assignments are terrific:

Re: [BangPypers] Cloud Camp at IIM Bangalore on March 29

2009-03-13 Thread Pradeep Gowda
Sorry! I'm away from namma Bengaluru ATM :) That aside, I've been using EC2 recently to run long running computations and the cloud camp would be a great conf to attend. all the best. +PG On Fri, Mar 13, 2009 at 5:49 AM, Vinayak Hegde vinay...@gmail.com wrote: Would anyone be interested in

Re: [BangPypers] IndentationError: expected an indented block

2009-03-11 Thread Pradeep Gowda
(resending reply to the list.. ) Python uses indentation for blocks your code has uneven indentation(1 space?) and no indentation in some places. You have to indent code correctly. Use FOUR spaces for indentation. eg: if len(args) == 0: print Fatal: no indication type provided. sys.exit(1)

Re: [BangPypers] Reply from David Goodger about PyCon

2009-02-28 Thread Pradeep Gowda
On Sat, Feb 28, 2009 at 11:03 PM, Baiju M mba...@zeomega.net wrote: We required one web app like the one used for PyCon.  Any idea whether we can use the same software and customize it ?  Or is there any other free software for co-ordinating  an entire conference ?

Re: [BangPypers] how to learn programming

2009-01-25 Thread Pradeep Gowda
Hopefully this scientific study with hard numbers conveys what I was saying in my earlier mail about Python being a better choice for learning vocational programming. This is the summary of a talk accepted for PyCon 2009. http://us.pycon.org/2009/conference/talks/ Python for CS1 Not Harmful to

[BangPypers] Announcing PyOFC2

2009-01-24 Thread Pradeep Gowda
I've written a python library to generate data files used by the excellent open Flash chart 2. The project page: http://btbytes.github.com/pyofc2/ Click on the links on the left to see the resulting charts. There are a couple of advantages PyOFC2 has over the one distributed with OFC2. 1.

Re: [BangPypers] how to learn programming

2009-01-23 Thread Pradeep Gowda
Learning programming via C will force you to understand data structures like lists, queues and hash tables better purely for the reason that C does not provide them in the standard library. C++/Java/Python do via STL and standard libraries respectively. Generalizing C++ with C shows how

Re: [BangPypers] python

2009-01-09 Thread Pradeep Gowda
On Fri, Jan 9, 2009 at 2:20 PM, (श्री) Sreekanth B gnuy...@gmail.comwrote: hi kenneth, what u said may not be really true there are thousands out there in France and Germany who cannot even write a sentence in English;-) That's because they study in French/German medium schools and not

Re: [BangPypers] Congratulations to India for Landing on the Moon!

2008-11-16 Thread Pradeep Gowda
On Mon, Nov 17, 2008 at 1:29 AM, Anand Balachandran Pillai [EMAIL PROTECTED] wrote: On Sat, Nov 15, 2008 at 4:59 AM, Deepak Thukral [EMAIL PROTECTED] wrote: A job well done! (It is unknown whether Python was running onboard ;-) ISRO is in stone age as far as Computer Technology is concern

Re: [BangPypers] hi all

2008-11-07 Thread Pradeep Gowda
On Fri, Nov 7, 2008 at 9:23 AM, shridhar kyrlageri [EMAIL PROTECTED] wrote: i m very new to python.. but i m very much interested in learnin this laguage.. i have worked only on C.. so kindly suggest from where should i start learnin.. i want to do some small projects using python.. please help

Re: [BangPypers] One python question (from verilog)

2008-09-19 Thread Pradeep Gowda
The syntax looks familiar, almost python like. The equivalent python code would be*: def poll_reg(bit_pos, poll_val, reg_offset): matched = 0 while matched != 1: read_data = read_reg(reg_offset) if read_data[bit_pos] === poll_val:

Re: [BangPypers] which framework is better pylon or django

2008-09-08 Thread Pradeep Gowda
On Sep 8, 2008, at 11:47 PM, Sibtey Mehdi wrote: Hi I am planning to develop a website but I don’t have any idea about the python framework. I found 2 or 3 framework (pylon, Django, turbo Gear) on net but couldn’t understand which one should be used. Can you suggest me which framework

Re: [BangPypers] Python Web development collaterals...

2008-07-24 Thread Pradeep Gowda
On Jul 24, 2008, at 10:11 AM, Banibrata Dutta wrote: On your Windows plaf. you could start by installing ActivePython from ActiveState website It comes with SQLlite (Python2.6's default packaging)... and should be good enough to get you going for some basic DB apps. You could

Re: [BangPypers] Simple syntactic error?

2008-05-22 Thread Pradeep Gowda
On 22-May-08, at 3:14 PM, g sobers wrote: hey! Following is a small PyS60 script. The error seems related to basic syntax - state in keys() is not recognized although defined globally. Would appreciate assistance. = import appuifw, key_codes,

Re: [BangPypers] FAQ

2008-05-09 Thread Pradeep Gowda
On 09-May-08, at 9:55 PM, Sridhar Ratnakumar wrote: On Fri, May 9, 2008 at 11:46 AM, Vishal [EMAIL PROTECTED] wrote: A few days back there was a long discussion about IDEs and Editors in general. Please look at that thread. We need a wiki that filers (according to informativeness) and

Re: [BangPypers] FAQ

2008-05-09 Thread Pradeep Gowda
On 09-May-08, at 10:28 PM, Pradeep Gowda wrote: http://bangpypers.jottit.com/ Its a wiki, as simple as it can get. Oh, I forgot all about our wiki on python.org.. http://wiki.python.org/moin/BangPypers Please use the python.org wiki

Re: [BangPypers] BangPypers Digest, Vol 8, Issue 15

2008-05-05 Thread Pradeep Gowda
On 06-May-08, at 12:51 AM, Kenneth Gonsalves wrote: textmate for mac and SPE or eric4 for linux Lets me also point out that whatever you choose, dont *ever* use Notepad. Notepad is the most useless piece of software that ships with windows. I use Textmate and aquamacs (both on mac of