Re: [BangPypers] [X-Post] Emacs movies by Noufal

2012-08-29 Thread Sujit Ghosal
Pretty informative. However, I personally prefer [G]vim over Emacs as I am too much used to [G]vim since a very long time. :-) Thanks, Sujit On Thu, Aug 30, 2012 at 11:55 AM, Balachandran Sivakumar < benignb...@gmail.com> wrote: > Hi, > > I am not sure if it was shared here. Noufal I

Re: [BangPypers] Try Ninja IDE

2012-08-21 Thread Sujit Ghosal
Hi Yoganand, Well first of all, the IDE looks quite neat. I gave it a try in both Ubuntu//Win7 but it looks like it lacks source code debugging feature which should be a de-facto standard for any regular IDE out there! For confirmation at your end, can you put some breakpoints in your code and

Re: [BangPypers] Help: How to install beautiful soup in Python

2012-01-24 Thread Sujit Ghosal
Hi Vishnu, The easy way for you would be to use setup-tools and issue easy_install or else you can download the corresponding BeautifulSoup module zip file for your version of Python and install it through the command line like this: "C:\python32\python setup.py install" You can check this o

Re: [BangPypers] Python learning resources.

2012-01-09 Thread Sujit Ghosal
Another useful addition could be: http://www.tutorialspoint.com/python/ - Sujit On Mon, Jan 9, 2012 at 1:16 PM, Pratap Chakravarthy wrote: > Saw this mail in MumPy user group. > > > > I am not sure of any institutes, however I also doubt if there are any. > But, there are a lot of o

Re: [BangPypers] win32com.client.Dispatch

2011-12-27 Thread Sujit Ghosal
Hi Nitin, Probably you can give a try to "COM Raider". That tool should expose the methods which are present for that specific Dispatch ID. However there is a tool (by MS), which will help you out to solve this issue. I don't remember the tool name exactly. But I suppose Google should be able t

Re: [BangPypers] Access xml file form python script

2010-10-31 Thread Sujit Ghosal
Hi Avinash, Expat module can be used to fetch the elements out of the XML document. Hope that helps. - Sujit On Sun, Oct 31, 2010 at 6:47 PM, Noufal Ibrahim wrote: > On Sun, Oct 31 2010, Avinash TM wrote: > > > Hi All, > > > > I have created a simple xml document i.e., preferences.xml as f

Re: [BangPypers] task tracker and issue manager

2010-10-19 Thread Sujit Ghosal
I think you can give a try to "Trac" once. - Sujit On Wed, Oct 20, 2010 at 10:52 AM, Kenneth Gonsalves wrote: > On Wed, 2010-10-20 at 10:49 +0530, Nigel Babu wrote: > > Have you tried Redmine? Its built on ruby and I was recommended it > > multiple > > times. Not sure how good it is though. >

Re: [BangPypers] Python coaching classes

2010-10-11 Thread Sujit Ghosal
Hi Avinash, Well you can go through some Python VTC (if you are starting from scratch), and then refer Byte of Python PDF (Its very useful for beginners) and of-course *docs.python (http://docs.python.org/tutorial/index.html)* is cool. And AFAIK there are no such Python training classes in Bang

Re: [BangPypers] How to retrieve file from another server using Python

2010-10-09 Thread Sujit Ghosal
Hi Nitin, Python has its own set of classes and methods to fetch,send HTTP/FTP and other protocol related data. First you make sure that on which port/protocol your communications (send/receive) will be done. Then choose the appropriate classes and so on. Let us know if you face any issues. Ho