Re: [BangPypers] designing programs

2010-07-01 Thread srid
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 BangPypers

Re: [BangPypers] Best Python IDE with compiler

2009-11-12 Thread srid
://stackoverflow.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... ___ BangPypers mailing list

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

2009-10-20 Thread srid
, for instance, 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

Re: [BangPypers] HTML Parsing in python

2009-10-20 Thread srid
://docs.activestate.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] Fwd: [dfwPython] Introducing: The Python Project Howto for Releasing as Open Source

2009-10-04 Thread srid
-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] Can we create proprietary database in Python

2009-09-27 Thread srid
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-tutorial/tutorial.html -srid

Re: [BangPypers] Python Coding Standards

2009-09-13 Thread srid
Wonderful! 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

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 law...@au-kbc.org 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-posting on newsgroups, as a rule, seem to come from persons who first

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

2009-09-11 Thread srid
://aspn.activestate.com/ASPN/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

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 venka...@gmail.com 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

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 law...@au-kbc.org 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/3743554 and here, for instance

Re: [BangPypers] A doubt in list comprehension

2009-09-11 Thread srid
://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] google app engine and python

2009-09-10 Thread srid
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
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 srs...@gmail.com wrote: Top-posting complaints is the old timers trying to assert their power over the newer generation who takes everything

Re: [BangPypers] HTML Parsing in python

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

Re: [BangPypers] link

2009-09-04 Thread srid
On Thu, Sep 3, 2009 at 8:09 PM, Roshan Mathewsrmath...@gmail.com 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 so on. -srid

Re: [BangPypers] link

2009-09-03 Thread srid
/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 use it). -srid