Jython Dev in Eclipse
Does anyone use Pydev or JyDT for Eclipse. Can you recommend one against the other? -- http://mail.python.org/mailman/listinfo/python-list
Guidance on writing a top-like console
I am interested in writing an application that functions like a Unix or Linux top in the way it displays data. It should be command-line based but dynamically refreshing. I'm not sure what I should take into account or how I might go about implementing this? Any suggestions are appreciated. -- http://mail.python.org/mailman/listinfo/python-list
Re: Guidance on writing a top-like console
Thanks. These are all great suggestions. On Fri, Feb 27, 2009 at 2:35 PM, Tim Chase wrote: >> I am interested in writing an application that functions like a Unix >> or Linux top in the way it displays data. >> It should be command-line based but dynamically refreshing. > > You might look at the sourcecode for "iotop"[1] which would make a good > example (it's a "top"-like program written in Python, used for monitoring > I/O transactions on a per-process basis) > > -tkc > > > [1] > http://guichaz.free.fr/iotop/ > > > > > > -- http://mail.python.org/mailman/listinfo/python-list
Creating a Python Module - Available Implementations
I have been browsing through creating a Python module for common custom functions that I frequently use, but I am wondering, is this the best method, and is it necessary? Really all I need is to import functions from another plaintext Python source file, how might I do this? What would merit the need to create a C-based Python module? Thanks in advance -- http://mail.python.org/mailman/listinfo/python-list
Best Compatible JS Lib for Django
Does anyone have experience with using JS Libraries with Django? Do some work better than others and are easier to code with? TIV -- http://mail.python.org/mailman/listinfo/python-list
Re: Best Compatible JS Lib for Django
I didn't realize there was a Django list. I will direct my questions there. Thanks for the suggestions. On Sun, Apr 5, 2009 at 12:31 PM, Gerhard Häring wrote: > Daniel Fetchinson wrote: >>> Does anyone have experience with using JS Libraries with Django? >>> Do some work better than others and are easier to code with? >> >> You might want to ask this on the django list. > > Or on a JavaScript list ;-) It doesn't matter much in what context you > use the JavaScript library (Django, Ruby on Rails, PHP, ...). > > FWIW I'm using JQuery with great success. It's really amazing what you > can do with it with very little code. > > -- Gerhard > > -- > http://mail.python.org/mailman/listinfo/python-list > -- http://mail.python.org/mailman/listinfo/python-list
LISA 2010 CFP
Hello All, The USENIX Large Installation System Administration Conference is now accepting paper proposals. If you are interested in submitting a paper, please check out this blog post about submitting a paper (http://www.usenix.org/events/lisa10/cfp/), or feel free to contact me directly if you think you might have a topic to present. Thank you, Matthew -- http://mail.python.org/mailman/listinfo/python-list
bash-style auto completion in command line program. use rlcomplete?
I am trying to create a bash-style auto completion in a simple command-line and script-based program i created using cmd. I saw http://docs.python.org/library/rlcompleter.html, which I'm thinking is the way to go for my program to intercept the tab key. Would anyone have thoughts on this? I wish cmd or cmd2 had this functionality built-in. Thanks in advance. -- http://mail.python.org/mailman/listinfo/python-list