Re: Fwd: How can I build embeddable zip python on Linux

2020-06-04 Thread Luuk
On 5-6-2020 08:49, Luuk wrote: On 5-6-2020 06:12, Michael Torrie wrote: On 6/4/20 2:47 AM, Filip Bascarevic wrote: When I tried to build GDB with Python support on Linux, I realized I couldn’t find embeddable python for Linux. Please, can you give me some instructions how can I build embeddabl

Re: Fwd: How can I build embeddable zip python on Linux

2020-06-04 Thread Luuk
On 5-6-2020 06:12, Michael Torrie wrote: On 6/4/20 2:47 AM, Filip Bascarevic wrote: When I tried to build GDB with Python support on Linux, I realized I couldn’t find embeddable python for Linux. Please, can you give me some instructions how can I build embeddable Python from source in Linux? I

Re: Fwd: How can I build embeddable zip python on Linux

2020-06-04 Thread Michael Torrie
On 6/4/20 2:47 AM, Filip Bascarevic wrote: > When I tried to build GDB with Python support on Linux, I realized I > couldn’t find embeddable python for Linux. > > Please, can you give me some instructions how can I build embeddable Python > from source in Linux? Is it possible in the Linux environ

Fwd: How can I build embeddable zip python on Linux

2020-06-04 Thread Filip Bascarevic
Dear Python team, I have tried to build the GDB with Python support for windows. Because I didn’t want to have any Python dependence on building system, I decided to embed python in GDB using Windows x86_64 embeddable zip file and with it I had success. When I tried to build GDB with Python sup

Re: python on Linux

2014-10-10 Thread Chris Angelico
On Sat, Oct 11, 2014 at 2:44 AM, Peter Pearson wrote: > On Fri, 10 Oct 2014 08:31:04 +0200, Irmen de Jong wrote: >> On 10-10-2014 6:21, Igor Korot wrote: > >>> When I am on Windows, I can write something like this: >>> >>> sys.path.append('C:\Users\Igor\Documents\MyLib') >> >> While this might wor

Re: python on Linux

2014-10-10 Thread Ian Kelly
On Fri, Oct 10, 2014 at 12:31 AM, Irmen de Jong wrote: > - you need to escape the backslashes (or just use forward slashes, they work > on windows too) Or use a raw string. There is usually no reason to have escape sequences at all in a file system path. -- https://mail.python.org/mailman/listi

Re: python on Linux

2014-10-10 Thread Peter Pearson
On Fri, 10 Oct 2014 08:31:04 +0200, Irmen de Jong wrote: > On 10-10-2014 6:21, Igor Korot wrote: >> When I am on Windows, I can write something like this: >> >> sys.path.append('C:\Users\Igor\Documents\MyLib') > > While this might work on your system, it may not work on others. > > - you need to

Re: python on Linux

2014-10-10 Thread Irmen de Jong
On 10-10-2014 8:58, Chris Angelico wrote: > AIUI you can use os.path.expanduser() on Windows as well, and it'll > take care of USERPROFILE. Nice, didn't know that! I've been using the appdirs module (https://pypi.python.org/pypi/appdirs/) as well to avoid constructing paths manually altogether.

Re: python on Linux

2014-10-10 Thread Chris Angelico
On Fri, Oct 10, 2014 at 5:31 PM, Irmen de Jong wrote: > On 10-10-2014 6:21, Igor Korot wrote: >> Hi, ALL, >> When I am on Windows, I can write something like this: >> >> sys.path.append('C:\Users\Igor\Documents\MyLib') > > While this might work on your system, it may not work on others. > > - you

Re: python on Linux

2014-10-09 Thread Irmen de Jong
On 10-10-2014 6:21, Igor Korot wrote: > Hi, ALL, > When I am on Windows, I can write something like this: > > sys.path.append('C:\Users\Igor\Documents\MyLib') While this might work on your system, it may not work on others. - you need to escape the backslashes (or just use forward slashes, they

Re: python on Linux

2014-10-09 Thread John Gordon
In Igor Korot writes: > sys.path.append('~/MyLib') > I.e., will '~' sign be expanded correctly? Not as written. Use os.path.expanduser() to get user's home directories. -- John Gordon Imagine what it must be like for a real medical doctor to gor...@panix.comwatch 'House', or a

Re: python on Linux

2014-10-09 Thread Dan Stromberg
Try: sys.path.append(os.path.expanduser('~/MyLib')) On Thu, Oct 9, 2014 at 9:21 PM, Igor Korot wrote: > Hi, ALL, > When I am on Windows, I can write something like this: > > sys.path.append('C:\Users\Igor\Documents\MyLib') > > Now, when I'm on Linux, can I do this: > > sys.path.append('~/MyLib')

python on Linux

2014-10-09 Thread Igor Korot
Hi, ALL, When I am on Windows, I can write something like this: sys.path.append('C:\Users\Igor\Documents\MyLib') Now, when I'm on Linux, can I do this: sys.path.append('~/MyLib') ? I.e., will '~' sign be expanded correctly? Thank you. -- https://mail.python.org/mailman/listinfo/python-list

Re: From Python on Solaris to Python on LINUX

2011-09-15 Thread Cameron Simpson
On 15Sep2011 17:30, Genevi�ve Diagorn wrote: | I work on projects developed in Python 2.3 on Solaris. The customer asks us | to pass on LINUX in a recent version of Python. | | Is it someone has already realized this modification? What are the traps to | be avoided? | | Is it a long and difficul

Re: From Python on Solaris to Python on LINUX

2011-09-15 Thread GrayShark
I think that was more of a version question the Kernel questin 1) you can install any and all versions python on a linux computer. You just need you app to select the correct path, correct python interpret. Likely there many be some some drivers in /dev that are not the same as in Solaris. But th

Re: From Python on Solaris to Python on LINUX

2011-09-15 Thread Philipp Hagemeister
> What are the traps to be avoided? Assuming you're not using any OS features (scan the code for "/dev" and "/proc"), the transition from Solaris to Linux will be seamless. Your main problem will be the transition from the archaic Python 2.3 to a modern one. Luckily, all 2.x Pythons should be bac

From Python on Solaris to Python on LINUX

2011-09-15 Thread Geneviève Diagorn
Hi, I work on projects developed in Python 2.3 on Solaris. The customer asks us to pass on LINUX in a recent version of Python. Is it someone has already realized this modification? What are the traps to be avoided? Is it a long and difficult phase? What is the most recent version on LINUX?

Re: Minimilistic Python on Linux?

2009-03-12 Thread Gabriel Genellina
En Thu, 12 Mar 2009 16:52:38 -0200, Royce Wilson escribió: Thanks, much better. What exactly do I lose when I launch python without site.py? site.py completes the module search path (sys.path), adding the site-packages directory, processing .pth files, and other per-site and per-user co

Re: Minimilistic Python on Linux?

2009-03-12 Thread Gabriel Genellina
En Thu, 12 Mar 2009 20:39:47 -0200, Royce Wilson escribió: Is there a way to veiw the modules without import sys? Thanks again. sys is a builtin module. You don't add any dependency by importing it, if that's your concern. -- Gabriel Genellina -- http://mail.python.org/mailman/listinfo

Re: Minimilistic Python on Linux?

2009-03-12 Thread Christian Heimes
Royce Wilson schrieb: > Thanks, much better. What exactly do I lose when I launch python without > site.py? Why do you want to strip Python off everything useful? A bare interpreter without the standard library isn't useful for anything. Christian -- http://mail.python.org/mailman/listinfo/pytho

Re: Minimilistic Python on Linux?

2009-03-12 Thread Royce Wilson
Is there a way to veiw the modules without import sys? Thanks again. On Thu, Mar 12, 2009 at 1:52 PM, Royce Wilson wrote: > Thanks, much better. What exactly do I lose when I launch python without > site.py? > > > On Wed, Mar 11, 2009 at 10:27 PM, Gabriel Genellina < > gagsl-...@yahoo.com.ar> wr

Re: Minimilistic Python on Linux?

2009-03-12 Thread Royce Wilson
Thanks, much better. What exactly do I lose when I launch python without site.py? On Wed, Mar 11, 2009 at 10:27 PM, Gabriel Genellina wrote: > En Thu, 12 Mar 2009 00:41:18 -0200, Royce Wilson > escribió: > >> On Wed, Mar 11, 2009 at 9:33 PM, Royce Wilson wrote: >> >> Thanks for the quick respo

Re: Minimilistic Python on Linux?

2009-03-11 Thread Gabriel Genellina
En Thu, 12 Mar 2009 00:41:18 -0200, Royce Wilson escribió: On Wed, Mar 11, 2009 at 9:33 PM, Royce Wilson wrote: Thanks for the quick responses. When I view sys.modules I get this: sre_compile _collections locale _sre functools encodings site operator io __main__ copyreg _weakref abc buil

Re: Minimilistic Python on Linux?

2009-03-11 Thread Royce Wilson
On Wed, Mar 11, 2009 at 9:33 PM, Royce Wilson wrote: > Thanks for the quick responses. When I view sys.modules I get this: > > sre_compile _collections locale _sre functools encodings site operator io > __main__ copyreg _weakref abc builtins encodings.cp437 errno sre_constants > re encodings.lat

Re: Minimilistic Python on Linux?

2009-03-11 Thread Gabriel Genellina
En Wed, 11 Mar 2009 23:09:51 -0200, Royce Wilson escribió: I'm working on a minimilistic linux project and would like to include Python. However, since Python is around 17MB (compressed) and previous releases of this linux distro are under 100MB (compressed) standard Python releases are m

Re: Minimilistic Python on Linux?

2009-03-11 Thread Christian Heimes
Royce Wilson schrieb: > I'm working on a minimilistic linux project and would like to include > Python. However, since Python is around 17MB (compressed) and previous > releases of this linux distro are under 100MB (compressed) standard Python > releases are much to large. I just need the runtime

Minimilistic Python on Linux?

2009-03-11 Thread Royce Wilson
I'm working on a minimilistic linux project and would like to include Python. However, since Python is around 17MB (compressed) and previous releases of this linux distro are under 100MB (compressed) standard Python releases are much to large. I just need the runtime libs of Python, the absoulute

Re: where is python on linux?

2007-01-09 Thread Kevin Yuan
Frank Potter wrote: >> ... where is the executable python file? ... >> > > does > > whereis python "whereis" is cool! -- http://mail.python.org/mailman/listinfo/python-list

Re: where is python on linux?

2007-01-08 Thread Harlin Seritt
Hi Frank, Usually "Python" is installed in /usr/lib/python[VER] but you should be able to call up /usr/bin/python without any difficulty. Harlin Seritt Frank Potter wrote: > I installed fedora core 6 and it has python installed. > But the question is, where is the executable python file? > I ca

Re: where is python on linux?

2007-01-08 Thread Michael M.
$ whoami cannibal ;-) Hendrik van Rooyen wrote: > "rzed" <[EMAIL PROTECTED]> wrote: > > > >>mmm... sloppy joes >> >>-- >>rzed >> >>"A sandwich is a sandwich, but a Manwich is a meal." > > > You eat people? > > - Hendrik > > -- http://mail.python.org/mailman/listinfo/python-l

Re: where is python on linux?

2007-01-08 Thread Hendrik van Rooyen
"rzed" <[EMAIL PROTECTED]> wrote: >mmm... sloppy joes > >-- >rzed > >"A sandwich is a sandwich, but a Manwich is a meal." You eat people? - Hendrik -- http://mail.python.org/mailman/listinfo/python-list

Re: where is python on linux?

2007-01-07 Thread rzed
Bruno Desthuilliers <[EMAIL PROTECTED]> wrote in news:[EMAIL PROTECTED]: > Frank Potter a écrit : >> I installed fedora core 6 and it has python installed. >> But the question is, where is the executable python file? >> I can't find it so I come here for help. > > man which > > mmm... slo

Re: where is python on linux?

2007-01-07 Thread Bruno Desthuilliers
Frank Potter a écrit : > I installed fedora core 6 and it has python installed. > But the question is, where is the executable python file? > I can't find it so I come here for help. man which -- http://mail.python.org/mailman/listinfo/python-list

Re: where is python on linux?

2007-01-07 Thread jim-on-linux
on linux type: whereis python You should get a list of directories where all of python lives. jim-on-linux http:\\www.inqvista.com On Sunday 07 January 2007 04:05, Frank Potter wrote: > I installed fedora core 6 and it has python > installed. But the question is, where is the > executable

Re: where is python on linux?

2007-01-07 Thread Frank Potter
Thank you! "which python" works for me. I got it. Peter Otten wrote: > Frank Potter wrote: > > > I installed fedora core 6 and it has python installed. > > But the question is, where is the executable python file? > > Find out yourself with > > $ which python > > Peter -- http://mail.python.or

Re: where is python on linux?

2007-01-07 Thread Peter Otten
Frank Potter wrote: > I installed fedora core 6 and it has python installed. > But the question is, where is the executable python file? Find out yourself with $ which python Peter -- http://mail.python.org/mailman/listinfo/python-list

Re: where is python on linux?

2007-01-07 Thread Sebastian Busch
Frank Potter wrote: > ... where is the executable python file? ... does whereis python tell you what you want to know? sebastian. -- http://mail.python.org/mailman/listinfo/python-list

where is python on linux?

2007-01-07 Thread Frank Potter
I installed fedora core 6 and it has python installed. But the question is, where is the executable python file? I can't find it so I come here for help. I want to config pydev for eclipse and I need to know where the ececutable python file is. Thank you! -- http://mail.python.org/mailman/listinf

Re: Hard time with installing MySQLdb for Python on Linux

2006-07-14 Thread Lawrence D'Oliveiro
In article <[EMAIL PROTECTED]>, "gmax2006" <[EMAIL PROTECTED]> wrote: >I am having hard time with installing MySQLdb on Linux. ... >My Linux is "Red Hat Enterprise Linux ES release 4 (Nahant)" Why don't you just use yum to install python-mysql or whatever the package is called, and have it au

Hard time with installing MySQLdb for Python on Linux

2006-07-14 Thread gmax2006
Hi, I am having hard time with installing MySQLdb on Linux. My Python version is 2.3. I have downloaded "MySQL-python-1.2.1_p2.tar.gz" from sourceforge. The README file asks for MySQL installation. My MySql server is on another box. That is why I think I should to install just the MySql client (a

Re: wx Browser-objekt for python on Linux

2006-07-08 Thread Nigel Rowe
spooky wrote: > Hey, > >> Try looking at the wx.HtmlWindow demo > > Thank you...I know wx.HtmlWindow but that object can not parse > Javascript code :(( > > I need a cross-platform object that can parse js-scripts :( > > Can someone help me?? > > Bye, > > Spooky http://wxmozilla.sourceforge

Re: wx Browser-objekt for python on Linux

2006-07-08 Thread spooky
Hey, > Try looking at the wx.HtmlWindow demo Thank you...I know wx.HtmlWindow but that object can not parse Javascript code :(( I need a cross-platform object that can parse js-scripts :( Can someone help me?? Bye, Spooky -- http://mail.python.org/mailman/listinfo/python-list

Re: wx Browser-objekt for python on Linux

2006-07-08 Thread [EMAIL PROTECTED]
Hi Spooky, Try looking at the wx.HtmlWindow demo - it is cross platform and is pretty capable. Thanks, Davy Mitchell http://www.latedecember.com/sites/personal/davy/ -- http://mail.python.org/mailman/listinfo/python-list

Re: wx Browser-objekt for python on Linux

2006-07-08 Thread spooky
IE is for Windows...I need something for unix-systems :( Thx -- spooky -- http://mail.python.org/mailman/listinfo/python-list

Re: wx Browser-objekt for python on Linux

2006-07-08 Thread shibaji . bannerjee
The wx demos contain an embedded browser (integrates an IE window) example. spooky wrote: > Hey, > > For windows there is a object wx.lib.iewin to integrate a browserwindow > into a python-wx-application. > I need a similar object, that runs under linux. > > Need help!!! > > Thx, > > Spooky --

Re: wx Browser-objekt for python on Linux

2006-07-08 Thread shibaji . bannerjee
The wx demos contain an embedded browser (integrates an IE window) example. spooky wrote: > Hey, > > For windows there is a object wx.lib.iewin to integrate a browserwindow > into a python-wx-application. > I need a similar object, that runs under linux. > > Need help!!! > > Thx, > > Spooky --

wx Browser-objekt for python on Linux

2006-07-08 Thread spooky
Hey, For windows there is a object wx.lib.iewin to integrate a browserwindow into a python-wx-application. I need a similar object, that runs under linux. Need help!!! Thx, Spooky -- http://mail.python.org/mailman/listinfo/python-list

Re: editor for Python on Linux

2006-02-24 Thread Ben Wilson
You know, I have that for Perl, but seem never to have set up folding for Python. I must remedy this tonight. Ben -- http://mail.python.org/mailman/listinfo/python-list

Re: editor for Python on Linux

2006-02-24 Thread Robert Boyd
On 2/19/06, Mladen Adamovic <[EMAIL PROTECTED]> wrote: > Hi! > > I wonder which editor or IDE you can recommend me for writing Python > programs. I tried with jEdit but it isn't perfect. > I know you said in the thread that you had problems with jEdit for Python, and didn't care for Emacs or Vi(m)

Re: editor for Python on Linux

2006-02-24 Thread Lee Phillips
The indentation-based folding in vim makes it great for python; other folding editors might be almost as good. -- http://mail.python.org/mailman/listinfo/python-list

Re: editor for Python on Linux

2006-02-23 Thread Philippe Martin
Mladen Adamovic wrote: > Hi! > > I wonder which editor or IDE you can recommend me for writing Python > programs. I tried with jEdit but it isn't perfect. Eclipse + pydev -- http://mail.python.org/mailman/listinfo/python-list

Re: editor for Python on Linux

2006-02-23 Thread Grant Edwards
On 2006-02-19, Mladen Adamovic <[EMAIL PROTECTED]> wrote: > I wonder which editor or IDE you can recommend me for writing > Python programs. I tried with jEdit but it isn't perfect. jed -- Grant Edwards grante Yow! Vote for ME at

Re: editor for Python on Linux

2006-02-22 Thread John M. Gabriele
Mladen Adamovic wrote: > Hi! > > I wonder which editor or IDE you can recommend me for writing Python > programs. I tried with jEdit but it isn't perfect. > NEdit -- (remove zeez if demunging email address) -- http://mail.python.org/mailman/listinfo/python-list

Re: editor for Python on Linux

2006-02-21 Thread Szabolcs Nagy
pida is a great ide as well: http://pida.vm.bytemark.co.uk/projects/pida -- http://mail.python.org/mailman/listinfo/python-list

Re: editor for Python on Linux

2006-02-21 Thread Joel Hedlund
>>I really think that IDLE is one of the best around in Python source editing. > > For me, I find that IDLE is about the worse for editing Python sources. "Worse"? Now that's harsh. I'm with billie on this one. I usually spend a day or so every 3 months trying to find a free python editor that s

Re: editor for Python on Linux

2006-02-21 Thread Sbaush
My favourite is Kate, available on KDE but working great also on Gnome!2006/2/21, Fabio Zadrozny <[EMAIL PROTECTED]>: Well... pydev has it: http://pydev.sf.net and pydev extensions goes muchfurther: http://www.fabioz.com/pydevCheers,Fabio jean-michel bain-cornu wrote:>>Boa-Constructor is an IDE rat

Re: editor for Python on Linux

2006-02-21 Thread Fabio Zadrozny
Well... pydev has it: http://pydev.sf.net and pydev extensions goes much further: http://www.fabioz.com/pydev Cheers, Fabio jean-michel bain-cornu wrote: >>Boa-Constructor is an IDE rather than an editor. Although it focuses >>on wxPython, it has a good editor. >> >> >Yes, some possibilit

Re: editor for Python on Linux

2006-02-20 Thread Chris Smith
> "Sriram" == Sriram Krishnan <[EMAIL PROTECTED]> writes: >> Mladen Adamovic wrote: >> Hi! I wonder which editor or IDE you can recommend me for >> writing Python programs. I tried with jEdit but it isn't >> perfect. >> Check out http://wiki.python.org/moin/PythonEditors

Re: editor for Python on Linux

2006-02-20 Thread Echo
On 2/20/06, billie <[EMAIL PROTECTED]> wrote: > I really think that IDLE is one of the best around in Python source editing. For me, I find that IDLE is about the worse for editing Python sources. I used to use Notepad++ before I started using Boa. Sometimes I still use Notepad++ because I can eas

Re: editor for Python on Linux

2006-02-20 Thread Mladen Adamovic
Benji York wrote: > I don't know anything about gedit, but why not take Emacs and Vim (not > vi) seriously? I'm not used to their approach. I usually program in Java but recently I reliazed if I'm making Linux shell scripts, Python seems to be good choice to me. So, that Pydev Eclipse plug-in

Re: editor for Python on Linux

2006-02-20 Thread Mladen Adamovic
[EMAIL PROTECTED] wrote: > Actually gedit does have syntax highlighting and works quite well. Uops, it seems that I should give a second chance to it, I haven't noticed its settings. > If you put down emacs so casually you obviously have no experience with > one of the most powerful text editors

Re: editor for Python on Linux

2006-02-20 Thread SPE - Stani's Python Editor
> (I never saw this elsewhere). FYI SPE has these two features as well... Stani --- SPE - http://pythonide.stani.be -- http://mail.python.org/mailman/listinfo/python-list

Re: editor for Python on Linux

2006-02-20 Thread Jarek Zgoda
Mladen Adamovic napisał(a): > I wonder which editor or IDE you can recommend me for writing Python > programs. I tried with jEdit but it isn't perfect. Komodo isn't perfect either. Nothing is perfect, except God and human laziness. I like Komodo, it plays well with my laziness. -- Jarek Zgoda

Re: editor for Python on Linux

2006-02-20 Thread jean-michel bain-cornu
> Boa-Constructor is an IDE rather than an editor. Although it focuses > on wxPython, it has a good editor. Yes, some possibilities are pretty good, like for instance the findAll/findInFiles keeping the results in a new tab (I never saw this elsewhere). Another useful is having the debugger laun

Re: editor for Python on Linux

2006-02-20 Thread Benji York
Mladen Adamovic wrote: > Answers like vi, emacs and gedit I won't take seriously. I don't know anything about gedit, but why not take Emacs and Vim (not vi) seriously? > I would like syntax highlighting, auto ident and if possible auto > completition and embedded help. Both certainly give you

Re: editor for Python on Linux

2006-02-20 Thread [EMAIL PROTECTED]
Mladen Adamovic wrote: > Mladen Adamovic wrote: > > I wonder which editor or IDE you can recommend me for writing Python > > programs. I tried with jEdit but it isn't perfect. > > I've got a lot of replies on this message. > In jEdit auto ident don't work OK. > > Answers like vi, emacs and gedit I

Re: editor for Python on Linux

2006-02-20 Thread Mladen Adamovic
Mladen Adamovic wrote: > I wonder which editor or IDE you can recommend me for writing Python > programs. I tried with jEdit but it isn't perfect. I've got a lot of replies on this message. In jEdit auto ident don't work OK. Answers like vi, emacs and gedit I won't take seriously. For gods sake,

Re: editor for Python on Linux

2006-02-20 Thread Ben Wilson
He said "IDE." That means "vim" -- http://mail.python.org/mailman/listinfo/python-list

Re: editor for Python on Linux

2006-02-20 Thread Fabio Zadrozny
You could try Eclipse with Pydev: http://pydev.sf.net or its commercial counterpart: Pydev Extensions: http://www.fabioz.com/pydev -- runs on linux / mac / windows ... Cheers, Fabio -- Fabio Zadrozny -- Software Developer ESSS - Engineering

Re: editor for Python on Linux

2006-02-20 Thread Grant Edwards
On 2006-02-19, Rene Pijlman <[EMAIL PROTECTED]> wrote: >>I beg to disagree :-) Use ed >>"Ed is the standard text editor." >>http://www.gnu.org/fun/jokes/ed.msg.html > > That was 1991. This is 2006. That's a joke, son. A flag waver. You're built too low. The fast ones go over your head. Ya

Re: editor for Python on Linux

2006-02-20 Thread Franz Steinhaeusler
On Sun, 19 Feb 2006 20:52:54 +0100, Mladen Adamovic <[EMAIL PROTECTED]> wrote: >Hi! > >I wonder which editor or IDE you can recommend me for writing Python >programs. I tried with jEdit but it isn't perfect. Maybe you try out DrPython. (Written in Python and wxPython, Autocompletion, Calltips,

Re: editor for Python on Linux

2006-02-20 Thread zelova
It was said that Boa is good, but I prefer SPE. WingIDE is good but commercial, I tried it but didn't buy. -- http://mail.python.org/mailman/listinfo/python-list

Re: editor for Python on Linux

2006-02-20 Thread pikatxu
On Sun, 19 Feb 2006 20:52:54 +0100, Mladen Adamovic wrote: > Hi! > > I wonder which editor or IDE you can recommend me for writing Python > programs. I tried with jEdit but it isn't perfect. eclipse+pydev ? I've never tried it though -- http://mail.python.org/mailman/listinfo/python-list

Re: editor for Python on Linux

2006-02-20 Thread Doug Bromley
I did a review of Python IDE's at my blog.  If you're interested you can take a look:http://www.straw-dogs.co.uk/blog/python-ide-reviewI have a couple of links to other reviews on there too.  Worth a look if you're trying to find a good IDE. On 2/20/06, Tim Parkin <[EMAIL PROTECTED]> wrote: Mladen

Re: editor for Python on Linux

2006-02-20 Thread Tim Parkin
Mladen Adamovic wrote: >Hi! > >I wonder which editor or IDE you can recommend me for writing Python >programs. I tried with jEdit but it isn't perfect. > > > I've been using wing for quite some time and it's an excellent dedicated editor for python. If you want flexible debugging in a gui envir

Re: editor for Python on Linux

2006-02-20 Thread Mystilleef
I'm writing a simple yet powerful text editor for GNOME that is great for Python development called Scribes. It features Snippets (ala Textmate/Eclipse) Automatic word completion Automatic indentation Automatic bracket completion Automatic saving Bookmarks Syntax Highlight etc.. Flash Movie: http

Re: editor for Python on Linux

2006-02-20 Thread bruno at modulix
Rene Pijlman wrote: > Sriram Krishnan: > >>Check out http://wiki.python.org/moin/PythonEditors. > > > This page can't be taken seriously. vi is not listed. Well, this prove that this page *is* to be taken seriously !-) (René, don't bother replying : this is a troll ;-) -- bruno desthuilli

Re: editor for Python on Linux

2006-02-20 Thread bruno at modulix
Rene Pijlman wrote: > F. Petitjean: > >>Rene Pijlman: >> >>>vi >> >>I beg to disagree :-) Use ed >>"Ed is the standard text editor." >>http://www.gnu.org/fun/jokes/ed.msg.html > > > That was 1991. This is 2006. Yes, but that rant is still a pure jewel of geek madness. -- bruno desthuilliers

Re: editor for Python on Linux

2006-02-20 Thread billie
I really think that IDLE is one of the best around in Python source editing. The only great lacks are tabs. Does somebody know if is there some IDLE modified version including tabbed browsing, out there? -- http://mail.python.org/mailman/listinfo/python-list

Re: editor for Python on Linux

2006-02-20 Thread Petr Jakes
Endless stories about IDEs (try to browse through this discussion group first). Of course it depends about users personal needs and taste. So install them and try them (I know, it's really time consuming). I thing there is not the other way to decide which one is the best for YOU. Petr Jakes --

Re: editor for Python on Linux

2006-02-19 Thread funktion
gedit -- http://mail.python.org/mailman/listinfo/python-list

Re: editor for Python on Linux

2006-02-19 Thread Old Duck
Mladen Adamovic wrote: > Hi! > > I wonder which editor or IDE you can recommend me for writing Python > programs. I tried with jEdit but it isn't perfect. My personal favorite is Kate (comes with KDE). - Duck -- http://mail.python.org/mailman/listinfo/python-list

Re: editor for Python on Linux

2006-02-19 Thread Sybren Stuvel
Mladen Adamovic enlightened us with: > I wonder which editor or IDE you can recommend me for writing Python > programs. I tried with jEdit but it isn't perfect. I use gvim (if I have X) and vim (if I don't). The only negative thing about it, is its learning curve ;-) Sybren -- The problem with

Re: editor for Python on Linux

2006-02-19 Thread Benji York
Rene Pijlman wrote: > Sriram Krishnan: > >>Check out http://wiki.python.org/moin/PythonEditors. > > > This page can't be taken seriously. vi is not listed. I hope your key is broken; I wouldn't wish old-school vi on my worst enemy. Fortunately that page lists the wonderful Vim instead, so s

Re: editor for Python on Linux

2006-02-19 Thread Colin J. Williams
Rene Pijlman wrote: > Mladen Adamovic: > >>I wonder which editor or IDE you can recommend me for writing Python >>programs. > > > vi > Scite is a good editor. It is available for both Windows and Linux. Boa-Constructor is an IDE rather than an editor. Although it focuses on wxPython, it has

Re: editor for Python on Linux

2006-02-19 Thread Rene Pijlman
Sriram Krishnan: >Check out http://wiki.python.org/moin/PythonEditors. This page can't be taken seriously. vi is not listed. -- René Pijlman -- http://mail.python.org/mailman/listinfo/python-list

Re: editor for Python on Linux

2006-02-19 Thread Rene Pijlman
F. Petitjean: >Rene Pijlman: >> vi > >I beg to disagree :-) Use ed >"Ed is the standard text editor." >http://www.gnu.org/fun/jokes/ed.msg.html That was 1991. This is 2006. -- René Pijlman -- http://mail.python.org/mailman/listinfo/python-list

Re: editor for Python on Linux

2006-02-19 Thread SPE - Stani's Python Editor
SPE: http://pythonide.stani.be I use it on Ubuntu. For a quick start, view: http://showmedo.com/videoListPage?listKey=PythonDevelopmentWithSPE Stani -- http://mail.python.org/mailman/listinfo/python-list

Re: editor for Python on Linux

2006-02-19 Thread F. Petitjean
Le Sun, 19 Feb 2006 21:33:59 +0100, Rene Pijlman a écrit : > Mladen Adamovic: >>I wonder which editor or IDE you can recommend me for writing Python >>programs. > > vi I beg to disagree :-) Use ed "Ed is the standard text editor." http://www.gnu.org/fun/jokes/ed.msg.html -- http://mail.python.

Re: editor for Python on Linux

2006-02-19 Thread Armin Steinhoff
Mladen Adamovic wrote: > Hi! > > I wonder which editor or IDE you can recommend me for writing Python > programs. I tried with jEdit but it isn't perfect. > Nothing is perfect ... but try SciTE and Eric http://www.die-offenbachs.de/detlev/eric3.html --Armin http://www.steinhoff-automation.com

Re: editor for Python on Linux

2006-02-19 Thread Sriram Krishnan
Mladen Adamovic wrote: > Hi! > > I wonder which editor or IDE you can recommend me for writing Python > programs. I tried with jEdit but it isn't perfect. > Check out http://wiki.python.org/moin/PythonEditors. I personally use Emacs -- Sriram -- http://mail.python.org/mailman/listinfo/python

Re: editor for Python on Linux

2006-02-19 Thread Jonathan Daugherty
# I wonder which editor or IDE you can recommend me for writing Python # programs. I tried with jEdit but it isn't perfect. It depends on what you need; what don't you like about JEdit? What do you think a good editor or IDE should provide? -- Jonathan Daugherty http://www.parsed.org -- ht

Re: editor for Python on Linux

2006-02-19 Thread Rene Pijlman
Mladen Adamovic: >I wonder which editor or IDE you can recommend me for writing Python >programs. vi -- René Pijlman -- http://mail.python.org/mailman/listinfo/python-list

Re: Python on linux

2005-11-18 Thread Sybren Stuvel
John Abel enlightened us with: > Here's one I used a while back. Returns a dict containing details per > partition This only gives information about actually mounted partitions. It could be improved by checking /proc/partitions as well. Sybren -- The problem with the world is stupidity. Not sa

Re: Python on linux

2005-11-18 Thread [EMAIL PROTECTED]
Partitioning a hard disk on linux can be done with parted, see http://www.gnu.org/software/parted/parted.html - I don't know how good the python-pated interface is, and what it's capable of -- http://mail.python.org/mailman/listinfo/python-list

Re: Python on linux

2005-11-18 Thread John Abel
Here's one I used a while back. Returns a dict containing details per partition def _getAvailPartitions(): validTypes = [ 'ufs', 'nfs', 'reiserfs' ] mntTab = file( '/etc/mtab', 'r' ) drvDetails = {} for mntLine in mntTab: splitLine = mntLine.split()

Re: Python on linux

2005-11-18 Thread Lars Kellogg-Stedman
> Hi i wanted to know how can i find disk size on linux platform using > python. You could use python to drive the 'sfdisk' command through a pipe, which will probably do much of what you want. -- Lars -- Lars Kellogg-Stedman <[EMAIL PROTECTED]> This email address will expire on 2005-11-23. --

Python on linux

2005-11-18 Thread Amol Behl
Hi i wanted to know how can i find disk size on linux platform using python. Also any info on how i can partition the hard disk, etc will be welcome thank you. -- http://mail.python.org/mailman/listinfo/python-list

Re: Native ODBC access for python on linux?

2005-07-15 Thread Grig Gheorghiu
That's exactly the way to go. In my case, I'm using cx_Oracle to connect from Python to Oracle and the same exact code runs on Windows, Linux, Solaris and soon on AIX. Grig -- http://mail.python.org/mailman/listinfo/python-list

Re: Native ODBC access for python on linux?

2005-07-15 Thread callmebill
I know... I'm expecting pain, and when that pain doesn't arrive I assume that I did something wrong. Actually, I was using the odbc/dbi stuff that ships with the win32 distribution for my windows work, and using MySQLdb for my linux work. Most of the code is the same. But I suppose the big benefi

  1   2   >