Re: [BangPypers] link

2009-09-03 Thread srid
a.blog-city.com/a_talk_by_guido_van_rossum.htm I too use print statements almost all the time. Even for debugging CPython code. I guess it is due to my own laziness. Putting `print` or `LOG.debug` is much easier/quicker compared to firing up a debugging console (and remembering how to

Re: [BangPypers] link

2009-09-03 Thread srid
On Thu, Sep 3, 2009 at 8:09 PM, Roshan Mathews wrote: > I recently read of an IDE for python which > code-stepping and a fancy debugger.  Don't remember which one it was > though ... Many of them exist - ActiveState Komodo, Wing IDE, Eric3 and

Re: [BangPypers] google app engine and python

2009-09-10 Thread srid
.com/btbytes/rufflecat/tree Here's mine: http://weeklyreddit.appspot.com/ -srid ___ BangPypers mailing list BangPypers@python.org http://mail.python.org/mailman/listinfo/bangpypers

Re: [BangPypers] [OT] Guido's Tweet on Top Posting

2009-09-10 Thread srid
e of Usenet, tend to be less sensitive to arguments about posting style. """ http://en.wikipedia.org/wiki/Topposting#Top-posting -srid On Thu, Sep 10, 2009 at 8:07 AM, S.Ramaswamy wrote: > "Top-posting complaints is the old timers trying to assert their power over > the

Re: [BangPypers] HTML Parsing in python

2009-09-10 Thread srid
ted-web-scraping-library/ -srid ___ BangPypers mailing list BangPypers@python.org http://mail.python.org/mailman/listinfo/bangpypers

Re: [BangPypers] [OT] Guido's Tweet on Top Posting

2009-09-11 Thread srid
On Fri, Sep 11, 2009 at 12:54 AM, Kenneth Gonsalves wrote: > On Friday 11 Sep 2009 11:00:41 am Kenneth Gonsalves wrote: >> On Friday 11 Sep 2009 10:54:27 am srid wrote: >> > >From Wikipedia: >> > >> > """ >> > Objections to top-posti

Re: [BangPypers] [OT] Guido's Tweet on Top Posting

2009-09-11 Thread srid
SPN/Mail/Message/python-dev/3743452 Did the first instance of top-posting hamper communication in python-dev@ any way? Objections to top-posting *as a rule* is silly. -srid ___ BangPypers mailing list BangPypers@python.org http://mail.python.org/mail

Re: [BangPypers] [OT] Guido's Tweet on Top Posting

2009-09-11 Thread srid
On Fri, Sep 11, 2009 at 10:33 AM, Venkatraman S wrote: > @srid: Wow. How do you manage to find time to search these things? Did you > go via each of the posts by Guido? If yes, tell him :) Actually since I follow python-dev@ (and occasionally python-ideas@), I have already seen GvR usin

Re: [BangPypers] [OT] Guido's Tweet on Top Posting

2009-09-11 Thread srid
On Fri, Sep 11, 2009 at 3:59 PM, Kenneth Gonsalves wrote: > On Friday 11 Sep 2009 10:56:09 pm srid wrote: >> > does GVR top post? >> >> I have seen him doing both. An example of him top-posting, >> >>   http://aspn.activestate.com/ASPN/Mail/Message/python-dev/

Re: [BangPypers] A doubt in list comprehension

2009-09-11 Thread srid
for j in range(10) for k in range(10)] For convenience, I pasted the code here: http://gist.github.com/185695 Speaking personally, your original code is just fine - it is simpler than the list comprehension version above. -srid ___ BangPypers mailing list BangPypers@python.org http://mail.python.org/mailman/listinfo/bangpypers

Re: [BangPypers] Python Coding Standards

2009-09-13 Thread srid
rful! I stumbled upon lmgtfy.com sometime ago but totally forgot the URL. Thanks for posting it. I suggest we use lmgtfy.com for questions like this. -srid ___ BangPypers mailing list BangPypers@python.org http://mail.python.org/mailman/listinfo/bangpypers

Re: [BangPypers] Place the timer in Python script

2009-09-18 Thread srid
http://tinyurl.com/nz73fd The OP's post in c.l.py appears as the first result. Is this what you call recursion? :-) -srid On Fri, Sep 18, 2009 at 3:03 AM, Vamsi wrote: > How to place the timer in python code. > > I want calculate the python script execution time. > &

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

2009-09-27 Thread srid
a from the user and storing it as a file. sqlalchemy + sqlite may fit your use case. sqlalchemy provides this "datastructure in the class" (class mappers) and sqlite stores your database in a file (no servers). quick start: http://www.rmunn.com/sqlalchemy-tuto

Re: [BangPypers] Python at Schools

2009-09-30 Thread srid
s a far better terminal course for non-majors than CS1-C++" -srid PS: I haven't read the full presentation yet. ___ BangPypers mailing list BangPypers@python.org http://mail.python.org/mailman/listinfo/bangpypers

Re: [BangPypers] Fwd: [dfwPython] Introducing: The Python Project Howto for Releasing as Open Source

2009-10-04 Thread srid
$ paster create -t basic_package MyProject (For this to work, one should have PasteScript installed) -srid ___ BangPypers mailing list BangPypers@python.org http://mail.python.org/mailman/listinfo/bangpypers

Re: [BangPypers] Running multiple versions of python on Fedora

2009-10-13 Thread srid
-c "import IPython; print IPython.__file__" '/Users/sridharr/.local/lib/python2.6/site-packages/IPython/__init__.pyc' OR $ sudo pip install --install-option="--user" IPython OR $ pypm install IPython # http://docs.activestate.com/activepython/2.6/pypm.html -srid On Mon

Re: [BangPypers] Why do indians copy?

2009-10-15 Thread srid
a suggests that students are focused on cramming.[68]" http://en.wikipedia.org/wiki/Education_in_india#Issues But Ghose raises an important point about it also being a cultural issue. Heh, wish there was a well-researched Wikipedia article on this topic! -srid On Thu, Oct 15, 2009 at 4:24 P

Re: [BangPypers] Suggest me a book

2009-10-16 Thread srid
kind? You may like 'Dreaming in Code' which writes about the entire development process of Chandler, the open source project. The mistakes in it and such. -srid ___ BangPypers mailing list BangPypers@python.org http://mail.python.org/mailman/listinfo/bangpypers

Re: [BangPypers] I am new to python language. Suggest way to improve my skills in python

2009-10-20 Thread srid
stance, 1) having a desire (motivation) to write a great piece of software using Python .. and reading/writing (repetition) lots of Python code. At least, that's how it worked for me. -srid ___ BangPypers mailing list BangPypers@python.org http://mail.python.org/mailman/listinfo/bangpypers

Re: [BangPypers] HTML Parsing in python

2009-10-20 Thread srid
tate.com/activepython/2.6/pypm.html -srid ___ BangPypers mailing list BangPypers@python.org http://mail.python.org/mailman/listinfo/bangpypers

[BangPypers] An interesting beginner post at Stackoverflow

2009-10-20 Thread srid
/ python tag) on Stackoverflow to create something similar to weeklyreddit.appspot.com ... -srid ___ BangPypers mailing list BangPypers@python.org http://mail.python.org/mailman/listinfo/bangpypers

Re: [BangPypers] Best Python IDE with compiler

2009-11-12 Thread srid
overflow.com/questions/81584/what-ide-to-use-for-python The code 'EM' stands for "syntax errors while typing". I use Komodo w/ Vim keybindings[1], but it does not highlight syntax errors yet. -srid *** [1] So long Emacs... ___ Ba

Re: [BangPypers] designing programs

2010-07-01 Thread srid
It is very flexible; I can draw flow charts, tables, crude class diagrams ... and however else I want to model the information that I need to think over. For UI design, Blasmiq is pretty good even for us programmers. -srid ___ BangPypers mailing list Ban