Re: String code required please

2005-10-13 Thread SPE - Stani's Python Editor
import os fileName = os.path.basename(absolute) base, ext = os.path.splitext(fileName) Stani http://pythonide.stani.be -- http://mail.python.org/mailman/listinfo/python-list

Re: UI toolkits for Python

2005-10-14 Thread SPE - Stani's Python Editor
(see eg. widgets from Andrea Gavana http://xoomer.virgilio.it/infinity77/eng/freeware.html) - wxGlade makes GUI design really easy (http://wxglade.sourceforge.net/) Stani http://pythonide.stani.be (SPE - Stani's Python Editor) -- http://mail.python.org/mailman/listinfo/python-list

Re: PyGame & Web hosts

2005-10-15 Thread SPE - Stani's Python Editor
://blender3d.org/forum/viewtopic.php?t=732&view=next&sid=a0aa50a35c2173ee83ed18e6ef329783 To get some help, you could post to one of these forums: http://www.elysiun.com/forum/viewforum.php?f=5 http://www.blender.org/forum/viewforum.php?f=9 Stani -- SPE - Stani's Python Editor (http://pytho

Re: Problem splitting a string

2005-10-15 Thread SPE - Stani's Python Editor
P', 'is', 'VL', 'funny', 'JJ'] Stani -- SPE - Stani's Python Editor http://pythonide.stani.be -- http://mail.python.org/mailman/listinfo/python-list

Re: tuple versus list

2005-10-16 Thread SPE - Stani's Python Editor
'new value' t.append('new value') These statements are possible with lists. Stani -- SPE - Stani's Python Editor (http://pythonide.stani.be) -- http://mail.python.org/mailman/listinfo/python-list

Re: Calling an exe from Python?

2005-10-16 Thread SPE - Stani's Python Editor
Slightly offtopic, but you can translate any double clicking (*.exe, *.pdf, *.html, ...) in the Windows Explorer into: import os os.startfile(fileName) Stani -- SPE - Stani's Python Editor http://pythonide.stani.be -- http://mail.python.org/mailman/listinfo/python-list

Re: override a property

2005-10-17 Thread SPE - Stani's Python Editor
No, you can just do it on the fly. You can even create properties (attributes) on the fly. class Dummy: property = True d = Dummy() d.property = False d.new = True Stani -- SPE - Stani's Python Editor http://pythonide.stani.be -- http://mail.python.org/mailman/listinfo/python-list

Re: Installing Python at Work

2005-10-17 Thread SPE - Stani's Python Editor
e the folder when you're done. This is very handy when you're travelling and don't want to carry a laptop around. Stani -- SPE - Stani's Python Editor http://pythonide.stani.be -- http://mail.python.org/mailman/listinfo/python-list

Re: How do you draw this layout with wxpython?

2005-10-17 Thread SPE - Stani's Python Editor
(http://wxglade.sourceforge.net/), which is very simple and neat. It uses sizers by default, which has the advantage that you're dialog box will be rescalable. Stani -- SPE - Stani's Python Editor (ships btw with wxGlade) http://pythonide.stani.be -- http://mail.python.org/mailman/listinfo/python-list

Fund raising for SPE (Python IDE) on Mac Os X is great success!!

2005-10-20 Thread SPE - Stani's Python Editor
Hi, I'd like to thank everyone who contributed, especially Richard Brown from Dartware and Rick Thomas. I'm highly impressed that the smallest user base of SPE collected the largest donation ever to SPE. Now it's my turn to impress the SPE Mac users. As such the light is green for SPE on the Mac.

Re: Popularity of blogging tools used by python programmers

2005-10-20 Thread SPE - Stani's Python Editor
Well, Python, Zope & Plone hosting are quite popular. However python based blog software isn't as sexy as let's say blogger. For SPE I first used a combination of PyDS&pycs.net. It is free for everyone, but unfortunately not stable enough to my standards. Luckily I got sponsored by zettai.net, wh

Re: IDE recommendation please

2005-10-23 Thread SPE - Stani's Python Editor
Mac users of SPE collected money for me to buy a Mac. This means that in the near future SPE will be especially improved for Mac. So feedback from Mac users is more than welcome and will probably be taken into account. SPE is a free, open source IDE with a lot of features like a debugger, UML diagr

Re: wxListbook layout problem

2005-10-25 Thread SPE - Stani's Python Editor
It is definitely a bug. The same problem also happens with wx.LB_BOTTOM. Tested on WinXP (SP2), python 2.4.1, wxPython 2.6.1.0 Stani -- SPE - Stani's Python Editor http://pythonide.stani.be http://pythonide.stani.be/manual/html/manual.html -- http://mail.python.org/mailman/listinfo/python-list

Re: Double replace or single re.sub?

2005-10-26 Thread SPE - Stani's Python Editor
red, not guessed. Stani -- SPE - Stani's Python Editor http://pythonide.stani.be http://pythonide.stani.be/manual/html/manual.html -- http://mail.python.org/mailman/listinfo/python-list

ANN: SPE 0.7.5.d released!

2005-10-27 Thread SPE - Stani's Python Editor
I'm currently packaging the new SPE. The release is a matter of minutes. Next releases (0.8.*) will focus on the Mac in honour of the fund raising for the purchase of a Mac. Read more on the homepage. New features: * UML export to bitmap (bmp, gif, jpg, pcx, png, pnm, tif, xbm, xpm), to vecto

Re: ANN: SPE 0.7.5.d released!

2005-10-27 Thread SPE - Stani's Python Editor
I forgot to include a sample of an exported Uml diagram, so here it is as a pdf: http://www.stani.be/python/spe/images/smdi.pdf Previous announcement: I'm currently packaging the new SPE. The release is a matter of minutes. Next releases (0.8.*) will focus on the Mac in honour of the fund raising

Re: Typing tutor help script needed, please

2005-10-28 Thread SPE - Stani's Python Editor
#---Input data #List of words; every word or sentence on one line #If from file: WORDS = open(fileName).readlines() WORDS = """\ Afrikaans Anna Bread red word bored python""".split('\n') #---Main program import re PATTERN = ['[^(%s)]+','[%s]+'] FILENAME= ['not_%s.txt','%s.txt']

Re: Expanding Python as a macro language

2005-10-28 Thread SPE - Stani's Python Editor
Well on Windows I used some time ago for similar tasks the wmi module. It is able to analyse running programs, press buttons and activate menu items. As you didn't mention it, you might have a look at it. It works pretty well. http://tgolden.sc.sabren.com/python/wmi.html For linux I don't know.

Re: Print to printer

2005-10-28 Thread SPE - Stani's Python Editor
You should be more specific. What do you want to print? Text, images, ... If you want a cross platform solution you could use wxPython: http://wiki.wxwidgets.org/docbrowse.cgi/wxwin_printingoverview.html#printingoverview For text you could use wxHtmlEasyPrinting: http://wiki.wxpython.org/index.cgi

Re: Expanding Python as a macro language

2005-10-29 Thread SPE - Stani's Python Editor
> some future Firefox version might perhaps integrate a Python engine For those who never heard about Firefox 1.9, check the following urls. It looks very promising: 1) http://wiki.mozilla.org/Roadmap_Scratchpad#Python_for_XUL Python for XUL Significant potential contributors in both the Python

SPE 0.7.5.e - Python IDE with improved uml, debugger & unicode support

2005-11-02 Thread SPE - Stani's Python Editor
What's new? SPE now creates backup files and can insert your standard signature (with for example license and copyright information) in your code. A bug that prevented SPE to start on Linux has been fixed and also a lot of bugfixes were implemented, especially for unicode. You can read more on the

Re: An FAQ Please Respond

2005-11-02 Thread SPE - Stani's Python Editor
Hi Clinton, If I was you, I would stick for a little while with python 2.3 untill Blender 2.40 gets stable. In the meantime you can use Movable Python (python on an usb stick) to program in Python 2.4: http://www.voidspace.org.uk/python/movpy/ But I guess Blender will become stable soon. Stani

Re: ? MDI depreciated

2005-11-06 Thread SPE - Stani's Python Editor
f next year. I think it would be a major step if a module can handle all the worries of the design of a document interface as this can be treated independently from the application. If you want to see some screenshots of SPE in different DI's: http://pythonide.stani.be/screenshots Good luck! St

Built windows installers and Cygwin

2005-11-22 Thread SPE - Stani's Python Editor
A SPE user reported this on the SPE users forum (http://developer.berlios.de/forum/message.php?msg_id=21944): >My setup is as follows: >SPE-0.7.5 >Python 2.4 (from the Cygwin packages) > >Installer does not continue. "No Python installation found in the registry". > >Are there other workarounds fo

Can bdist_wininst built installer require minimum python version?

2005-11-23 Thread SPE - Stani's Python Editor
A SPE user reported this: http://developer.berlios.de/bugs/?func=detailbug&bug_id=4878&group_id=4161 >SPE Installer gives option for installing for python22 (i have python22, 23, >and 24 installed) >I thought that spe requried 2.3+ (ie it should allow for 23, 24 but not 22). Is there anyway that

ANN: SPE 0.8.0.b Python IDE (new: Mac support, doc viewer and workspaces)

2005-12-01 Thread SPE - Stani's Python Editor
:**What's new?**: SPE 'Kay release' 0.8.0.b This release is a major step forward for all platforms, especially for MacOS X. It offers you basic project management through workspaces (thanks to Thurston Stone), an improved sidebar and pydoc viewer. This is the first release which is also develop

Python riddle

2005-12-05 Thread SPE - Stani's Python Editor
I know that this code is nonsense, but why does this print 'Why?' a = 1 if a >2: try: 5/0 except: raise else: print 'why?' -- http://mail.python.org/mailman/listinfo/python-list

Re: Python riddle

2005-12-05 Thread SPE - Stani's Python Editor
Forget it, it's not 1st of april yet. -- http://mail.python.org/mailman/listinfo/python-list

SPE 0.7.5.b IDE: New windows installer (with working shortcuts)

2005-08-17 Thread SPE - Stani's Python Editor
Thanks to Jose Galvez, there is a now a working python installer for python2.4 SPE 0.7.5.b now features a remote, encrypted and embedded python debugger of Nir Aides. Stani Spe is a free python IDE with auto indentation & completion, call tips, syntax coloring & highlighting, UML diagrams, class

ANN: SPE 0.7.5.c: Improved documentation & bugfixes

2005-08-25 Thread SPE - Stani's Python Editor
With special thanks to Dimitri Pater to contribute his documenation from http://www.serpia.com and Nir Aides for the documentation about the debugger. Also thanks to all Mac donors who bring real Mac support for SPE more and more close. For more info visit the homepage. Stani Spe is a free python

Re: Would you pls tell me a tool to step debug python program?

2005-09-20 Thread SPE - Stani's Python Editor
SPE ships with a debugger as well: http://pythonide.stani.be It's free & open source. Johnny Lee wrote: > Hi, >I've met a problem to understand the code at hand. And I wonder > whether there is any useful tools to provide me a way of step debug? > Just like the F10 in VC... > > Thanks for you

Re: spe stani collapse all method?

2005-09-21 Thread SPE - Stani's Python Editor
It shouldn't be hard to implement. If you have a bit of python knowledge you could contact me & write a patch. Otherwise file it as a feature request. Stani http://pythonide.stani.be [EMAIL PROTECTED] wrote: > hello, > > I wonder if anyone used spe stani, I'm looking for how to collapse all > cod

Re: Visual Python, really "Visual"?

2005-12-13 Thread SPE - Stani's Python Editor
Or try out SPE: http://pythonide.stani.be It ships with a visual gui designer, called wxGlade, debugger WinPdb, etc... Stani -- http://mail.python.org/mailman/listinfo/python-list

Re: attaching to running python program with the debugger?

2005-12-13 Thread SPE - Stani's Python Editor
Hi, The new version of SPE 0.8.1.b (Python IDE) supports this. On the toolbar press the "run/stop with winpdb button" button ('gear with bug in it' icon) and when you want to find out, press the debug button (bug icon), then the debugger will break your script and you are even able to alter values

ANN: SPE 0.8.1.b Python IDE (complete rewrite for running files)

2005-12-14 Thread SPE - Stani's Python Editor
Release news from http://pythonide.stani.be This release is the result of a complete rewrite of the run system. It's now possible to run multi-threaded applications (like wxPython, gtk, ...) with SPE and still control them through the debugger. Also selected text can be executed in the shell. Rea

Re: Python packages on OS X vs Windows

2005-12-14 Thread SPE - Stani's Python Editor
With some good guidance, it goes much more smooth than I thought, even for a total Mac newbie like me. For example to install the latest Python 2.4.2 and wxPython2.6 on the Mac was very easy. You can find instructions in the SPE Python IDE manual and also how to install SPE on the Mac in case you w

Re: Python IDE (was: PythonWin troubleshooting)

2005-12-16 Thread SPE - Stani's Python Editor
Thanks Tim, SPE is written in Python and uses wxPython for its user interface and is being actively developed. In case you want to know more: SPE is a python IDE with auto-indentation, auto completion, call tips, syntax coloring, UML viewer, syntax highlighting, class explorer, source index, auto

Re: How to use pydoc?

2005-12-16 Thread SPE - Stani's Python Editor
If it's just about displaying pydoc pages... SPE Python IDE has pydoc built in. Just open any file and click on the pydoc tab, next to the uml tab. Then you see the python documentation of that script, which is generated on the fly, If you want to see documentation about the sys module, just click

Re: Python IDE

2005-12-17 Thread SPE - Stani's Python Editor
SPE will be reviewed by the same person for the next PyCon against WingIDE, Komodo and Pydev. Maybe you say which features you want to give a better answer. I don't know about WingIDE but I do know about SPE ;-) Things which we want to have ready for the review: - integrated debugger (now WinPdb r

ANN: SPE 0.8.1.b IDE (realtime error underlining & script tooltips)

2005-12-21 Thread SPE - Stani's Python Editor
Release news from http://pythonide.stani.be This new release is for under your Christmas tree. (If you want more presents, just donate to SPE and receive the manual in your mailbox ;-) There are so many changes and fixes. The new cool features not to be missed are the realtime error underlingin

Re: ANN: SPE 0.8.1.b IDE (realtime error underlining & script tooltips)

2005-12-21 Thread SPE - Stani's Python Editor
Sorry, should be SPE 0.8.1.c Stani -- http://mail.python.org/mailman/listinfo/python-list

Anyone using SPE editor on Ubuntu?

2006-01-05 Thread SPE - Stani's Python Editor
Hi, I'm playing around with the latest (soon to be released) SPE on Ubuntu. This probably will increase the quality of SPE on Ubuntu and Linux/GTK in general. I already made some patches, but I would like to get in contact with SPE users on Ubuntu. The version of SPE which is now available on Ubun

Re: Anyone using SPE editor on Ubuntu?

2006-01-05 Thread SPE - Stani's Python Editor
So is Ubuntu your primary OS? Please email me privately at pythonide.stani.be_gmail.com News about new release you can follow here: http://pythonide.stani.be/blog -- http://mail.python.org/mailman/listinfo/python-list

Re: Wingide is a beautiful application

2006-01-14 Thread SPE - Stani's Python Editor
Sybren Stuvel schreef: > Sybren Stuvel enlightened us with: > > SPE is already annoying because of all the new windows it opens... > > Not a good start. If you mean terminal windows, that has gone with the latest release 0.8.1.d, see http://pythonide.stani.be/blog > > I remember using it before,

Re: SPE [was: Wingide is a beautiful application]

2006-01-15 Thread SPE - Stani's Python Editor
Sybren Stuvel wrote: > IMO displayed messages should be clear without having to resort to a > debugging mode. I can agree on that. > Debugging mode should only be for removing bugs, not > for enlightenment of the user. Unless he doesn't follow the installation instructions. > Anyway, apt-getting

Re: SPE [was: Wingide is a beautiful application]

2006-01-16 Thread SPE - Stani's Python Editor
Sybren Stuvel wrote: > It runs now, but some things aren't working. Besides the crashing down, what else? I am very curious. > When I open a file and > click on the "browse" tab, I see the current directory. If I then > double-click on a Python file, I'd expect SPE to open it, but nothing > happen

Firefox bug in webbrowser module on Ubuntu?!

2006-01-20 Thread SPE - Stani's Python Editor
Hi, During optimizing SPE for Ubuntu, I found something strange. I have Ubuntu 5.10 "The Breezy Badger" and unfortunately this code is not working: >>> import webbrowser >>> webbrowser.open("http://www.python.org";) It does not throw an exception, but is not able to launch a browser. Ubuntu shi

Re: Firefox bug in webbrowser module on Ubuntu?!

2006-01-21 Thread SPE - Stani's Python Editor
This seems ok... >>> import webbrowser >>> webbrowser._iscommand("firefox") True >>> webbrowser.register("firefox",None,webbrowser.Netscape("firefox")) >>> webbrowser._browsers {'galeon': [None, ], 'firefox': [None, ], 'mozilla': [None, ], 'mozilla-firefox': [None, ], 'w3m': [None, ]} But it is st

Re: help a newbie with a IDE/book combination

2006-07-11 Thread SPE - Stani's Python Editor
[EMAIL PROTECTED] schreef: > Is there a good IDE which would be well documented out there? You could choose for SPE (http://pythonide.stani.be). If you donate as little as $1 (more is of course welcome), you'll receive the SPE manual as a pdf. > PS: I use Debian GNU/Linux on all my computers, a 5

Re: import question on wx ?

2006-07-27 Thread SPE - Stani's Python Editor
es error > > Traceback (most recent call last): > > File "Project.py", line 6, in ? > > import wx > > ImportError: No module named wx > > > > > > But if I run the program from SPE (Stani's Python Editor) it just runs > > fine. > >

Re: War chest for writing web apps in Python?

2006-07-29 Thread SPE - Stani's Python Editor
Nick Vatamaniuc schreef: > I found Komodo to > be too slow on my machine, SPE was also slow, was crashing on me and > had strange gui issues, I hope you didn't install SPE from the MOTU repositories with synaptic or apt-get. I use SPE myself daily on Ubuntu and wrote this howto install SPE on Ubu

Re: SPE for 2.5?

2006-10-15 Thread SPE - Stani's Python Editor
John Salerno schreef: > Does anyone know if SPE is compatible with Python 2.5? I don't see a > Windows exe file for 2.5, so I wasn't sure if I should use the 2.4 version. > > Thanks. It should be. Contact me and I'll help you to make a 2.5 installer, which I'll gladly provide for download. I use

Re: SPE for 2.5?

2006-10-19 Thread SPE - Stani's Python Editor
still looking for people using with python 2.3 and (maybe in case John won't) 2.5 to create installers for windows. (I know I can do through vmware, but I prefer otherwise.) PS2 This was not written with FireFox2, so please forgive any spelling mistakes ;-) Fuzzyman schreef: > SPE - S

Re: SPE for 2.5?

2006-10-19 Thread SPE - Stani's Python Editor
Fuzzyman schreef: > Shame as it is a *very* nice IDE, but it had too many quirks (with > little chance of them being fixed it seemed) to use it for commercial > development at Resolver. I've never head from a company called Resolver. A commercial company can not assume if it picks up a free proje

ANN: SPE 0.8.3.c Python IDE editor

2006-10-30 Thread SPE - Stani's Python Editor
This is a maintenance release (mostly bug fixing) to prove that SPE is alive and well! In case you are using wxPython2.7 you'll need to upgrade to this release. Submitted patches will be reviewed and included if approved for next release. Thanks for all your patient support and continuing donations

Re: wxFrame don't have Bind attribute ??

2006-10-30 Thread SPE - Stani's Python Editor
Jia Lu schreef: > Hi all > I am using wxPy 2.6.3.2-2, But when run an application with self.Bind > , I got an error that there is no Bind. > > How can I fix it. thanx You can not bind an event to a wx application. You must bind an event to a wx frame or control. You'll get more and better suppo

Re: wxPython - which is the better sizer to use with notebook

2006-10-30 Thread SPE - Stani's Python Editor
Chris Brat schreef: > Hi, > > What sizers do people use to > - contain the notebook control in a Frame and, > - contain the contents of a single page of the notebook. > > At the moment Im using a GridBagSizer for both but this seems to be > overkill. > Is a BoxSizer a better option? Yes, use box

Re: ANN: SPE 0.8.3.c Python IDE editor

2006-11-01 Thread SPE - Stani's Python Editor
Chris > Bernard wrote: > > thanks Stani! > > > > SPE - Stani's Python Editor wrote: > > > This is a maintenance release (mostly bug fixing) to prove that SPE is > > > alive and well! In case you are using wxPython2.7 you'll need to > > > up

Re: SPE editor slow?

2006-11-06 Thread SPE - Stani's Python Editor
timmy schreef: > hello i've been using the SPE editor on a moderately large project and > it's constantly pausing during editing, like it's attempting to check > something as i edit. > as you can imagine a 4 second pause every few characters is EXTREMELY > annoying when you just want to get some w

Re: SPE editor slow?

2006-11-06 Thread SPE - Stani's Python Editor
timmy schreef: > SPE - Stani's Python Editor wrote: > > timmy schreef: > > > > > >>hello i've been using the SPE editor on a moderately large project and > >>it's constantly pausing during editing, like it's attempting to check >

Re: wing ide vs. komodo?

2006-11-06 Thread SPE - Stani's Python Editor
[EMAIL PROTECTED] schreef: > I have both, but the IDE I use every day is SPE, which is shareware. I'm > not savvy enough to enumerate a feature comparison, but I do find SPE > extremely friendly and intuitive. > > Gerry SPE is not shareware. It is open-source, gpl-licensed freeware. Donations ho

Re: Is python for me?

2006-11-13 Thread SPE - Stani's Python Editor
lennart schreef: > [*] As a photographer i like to build a picture management system Cornice, a cross-platform image viewer, might be a good start. Features Here is a list of the main features of Cornice: * Fully cross-platform: it should run wherever wxPython does; * Detail and thumbna

Re: SPE bug?

2006-11-13 Thread SPE - Stani's Python Editor
timmy schreef: > i can't paste from SPE into an xterm window. is this problem with SPE? No the problem is with the wxPython binding of stc (scintilla). It happens with the wxPython demo as well. I'll ask on the wxpython-users mailing list. Stani -- http://mail.python.org/mailman/listinfo/pytho

Stani's Python Editor is looking for a new webhost

2006-11-29 Thread SPE - Stani's Python Editor
SPE was hosted for a long while by Zettai. I'd like to thank them again for their wonderful service. Unfortunately they will go out of business. So SPE is looking for a new webhost. These are the requirements: - python framework (Zope/Plone, django, turbogears, ...) - I have the freedom to use thi

Re: SPE refuses.

2006-11-29 Thread SPE - Stani's Python Editor
If wxPython is rightly installed, which means that "import wx" works fine and "wx.VERSION" gives the right version, you can ignore the wxPython warning. Please cd do your site-packages directory and do "python SPE.py --debug" and see the error message. Stani On 29 nov, 19:51, egbert <[EMAIL PROT

Re: Good script editor for Python on Mac OS 10.3

2006-11-29 Thread SPE - Stani&#x27;s Python Editor
Install wxPython and than you can use SPE, a free Python IDE with UML, GUI builders, ... Stani Scott_Davies wrote: > Hi, > > I have an old Mac with OS X Panther installed. I also have the Python > language download file, but I haven't got a text/script editor to use > for it. Does anyone have a

Re: SPE refuses.

2006-11-29 Thread SPE - Stani&#x27;s Python Editor
Do you have python-wxversion installed? $sudo apt-get install python-wxversion Stani On 29 nov, 23:21, egbert <[EMAIL PROTECTED]> wrote: > On Wed, Nov 29, 2006 at 11:31:27AM -0800, SPE - Stani's Python Editor wrote:> > If wxPython is rightly installed, which means th

Re: SPE refuses.

2006-11-30 Thread SPE - Stani&#x27;s Python Editor
On 30 nov, 10:50, egbert <[EMAIL PROTECTED]> wrote: > On Wed, Nov 29, 2006 at 03:15:45PM -0800, SPE - Stani's Python Editor wrote:> > Do you have python-wxversion installed? > > > $sudo apt-get install python-wxversionThat helped. But why isn't it > > i

Re: SPE refuses.

2006-11-30 Thread SPE - Stani&#x27;s Python Editor
which version of SPE are you using? You'll need SPE 0.8.3.c for wxPython 2.7 I've fixed this bug already in the latest version. http://prdownload.berlios.de/python/SPE-0.8.3.c-wx2.6.1.0-no_setup.zip Stani On 30 nov, 12:23, Thomas Ploch <[EMAIL PROTECTED]> wrote: > SPE - St

Re: SPE website down?

2006-12-14 Thread SPE - Stani&#x27;s Python Editor
On 14 dec, 18:35, Laszlo Nagy <[EMAIL PROTECTED]> wrote: > The home page of SPE (Stani's editor) is not available. > > http://pythonide.stani.be/ > > Is there a mailing list for this editor? > Where should I ask questions about it? > Where can I report bugs and make suggestions? For now use: http:

Re: SPE website down?

2006-12-14 Thread SPE - Stani&#x27;s Python Editor
On 14 dec, 21:07, William Allison <[EMAIL PROTECTED]> wrote: > Laszlo Nagy wrote: > > The home page of SPE (Stani's editor) is not available. > > >http://pythonide.stani.be/ > > > Is there a mailing list for this editor? > > Where should I ask questions about it? > > Where can I report bugs and m

Re: "wxPython in Action" book

2006-01-24 Thread SPE - Stani&#x27;s Python Editor
You won't find a better book about wxPython. Stani -- http://pythonide.stani.be -- http://mail.python.org/mailman/listinfo/python-list

ANN: SPE 0.8.2.a Python IDE: configure styles, interactive terminals & ubuntu

2006-01-26 Thread SPE - Stani&#x27;s Python Editor
Release news from http://pythonide.stani.be This is an important a bugfix release for all platforms. As new features it can customize your fonts and colors (styles), supports interactive terminals and has improved support for Ubuntu. Thanks to Marco Ferreira there will be very soon a debian pack

Re: Curios issues with Editors

2006-02-09 Thread SPE - Stani&#x27;s Python Editor
How do you run your code in SPE? I advise you to run it with Tools>Run/Stop (Ctrl+R) There would be no reason why it wouldn't work. Stani -- http://mail.python.org/mailman/listinfo/python-list

[ANN] SPE IDE videos and more...

2006-02-19 Thread SPE - Stani&#x27;s Python Editor
I'm happy to spread the word about showmedo.com, an excellent collection of python programming videos. >From the website http://showmedo.com/videoListPage?listKey=TheBigPythonList: """Want to learn how to use some of the best Python programming tools out there, including the supercharged IPython

Re: editor for Python on Linux

2006-02-19 Thread SPE - Stani&#x27;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-20 Thread SPE - Stani&#x27;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: Video.

2006-02-21 Thread SPE - Stani&#x27;s Python Editor
- pymedia: http://www.pymedia.org/ - pyvideo: http://www.geocities.com/rtrocca/python/ (use avisynth) - videocapture: http://videocapture.sourceforge.net/ If you are on Mac, you probably have access to everything by pyobjc. Good luck, Stani -- http://pythonide.stani.be -- http://mail.python.org

Re: PythonCard or Dabo?

2007-06-02 Thread SPE - Stani&#x27;s Python Editor
On Jun 2, 7:20 am, Bill Maxwell <[EMAIL PROTECTED]> wrote: > On 19 Mar 2007 10:40:03 -0700, [EMAIL PROTECTED] wrote: > > ...>You might want to submit this to the wxpython news-group. > > ... > > What is the name of this newsgroup? I can't seem to locate it on my > news server. > > Thanks, > > Bill

Re: Creating a distro of python... What would you include in it?

2007-06-02 Thread SPE - Stani&#x27;s Python Editor
On May 30, 7:47 pm, yuce <[EMAIL PROTECTED]> wrote: > re: BJörn, I think selecting a GPL license will increase the number of > usable packages, since using Python license with GPL is perfectly fine > as long as the whole software is licensed under GPL [I am not really > sure it is a must to license

Re: subprocess.popen question

2007-06-23 Thread SPE - Stani&#x27;s Python Editor
On Jun 23, 5:35 am, "Gabriel Genellina" <[EMAIL PROTECTED]> wrote: > En Fri, 22 Jun 2007 10:08:49 -0300, [EMAIL PROTECTED] > <[EMAIL PROTECTED]> escribió: > > > I seemed to have it working sorta when I run it and save the results I > > am noticing that inspeit spaces correctly but when I save it to

Re: SPE

2007-04-27 Thread SPE - Stani&#x27;s Python Editor
On Apr 26, 9:06 pm, Glich <[EMAIL PROTECTED]> wrote: > After posting this message I realized the stupid mistake I had made! > But it was too late to change! I think patching it with py2exe would > be a good idea. > > Greetings also, > Glich Yes, it would. Please subscribe to the spe-dev list and I

gettext backwards

2007-05-28 Thread SPE - Stani&#x27;s Python Editor
I am developping an international application for which I use gettext. An user can fill in certain fields with variable names which are also localized, eg: filename _('filename') = 'bestandsnaam' #for dutch As an english user might save this configuration, I want that eg a Dutch user can open thi

Re: Eric on XP for Newbie

2007-03-03 Thread SPE - Stani&#x27;s Python Editor
On Mar 1, 11:39 am, [EMAIL PROTECTED] wrote: > Thanks guys > > Found this on another blog and it seems to work - you need to run theSPE.pyo > file ... Which blog? Can yo point me to the url? Stani -- http://mail.python.org/mailman/listinfo/python-list

SPE python IDE: Call for testers!

2007-03-06 Thread SPE - Stani&#x27;s Python Editor
I've been working a lot on fixing SPE and upgrading it with the latest plugins. The winpdb debugger no longer fails and wxGlade crashes are history. Is that not great? Are you eager to try it out yourself? Please do! Get it from subversion and test it for any critical bug, so I can iron it out. I h

Re: Graphviz Python Binding for Python 2.5 on Windows?

2007-03-06 Thread SPE - Stani&#x27;s Python Editor
On Mar 6, 8:39 am, "Nick Vatamaniuc" <[EMAIL PROTECTED]> wrote: > On Mar 5, 5:16 pm, "Alex Li" <[EMAIL PROTECTED]> wrote: > > > Hello, > > > I would like to use Python 2.5 on Windows with Graphviz to generate > > graphs. I used yapgvb but it only requires Python 2.4 (won't work > > with Python 2.5

Re: SPE python IDE: Call for testers!

2007-03-07 Thread SPE - Stani&#x27;s Python Editor
On 6 Mrz., 23:21, "MonkeeSage" <[EMAIL PROTECTED]> wrote: > Very nice. One issue I've come across is that it doesn't seem to work > with < wxwidgets-2.8 (segfault when trying to load a file), so you > should probably set MIN_WX_VERSION to 2.8. > > Regards, > Jordan Hi Jordan, Thanks for trying. D

Re: Debugging segmentation faults

2007-03-07 Thread SPE - Stani&#x27;s Python Editor
If the error is reproducable and you can run wxPython, you could use the excellent WinPdb debugger, which ships with SPE (python editor): http://www.digitalpeers.com/pythondebugger/ ... but if you can only run your script on a remote server this won't help you. Stani -- SPE - http://pythonide.st

Re: IDE for wxPython

2007-03-17 Thread SPE - Stani&#x27;s Python Editor
On Mar 18, 2:23 am, "sleek" <[EMAIL PROTECTED]> wrote: > On Mar 17, 4:12 pm, Ghirai <[EMAIL PROTECTED]> wrote: > > > Hellopython-list, > > > Can anyone suggest an IDE for wxPython? > > Or an IDE for TkInter? > > > Thanks. > > > -- > > Best regards, > > Ghirai. > > You might want to check outSPE. It

Re: SPE question

2007-03-27 Thread SPE - Stani&#x27;s Python Editor
On 27 Mrz., 14:01, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > I believe that just deleting the folders should work No, never delete the folder if you used the windows installer (*.exe)! Go to your control panel>Add/Remove Programs and there should be an entry "python*-spe*" with an unins

Re: What happened to SPE?

2007-02-24 Thread SPE - Stani&#x27;s Python Editor
On Feb 3, 2:18 am, Jaroslaw Zabiello <[EMAIL PROTECTED]> wrote: > Dnia 11 Jan 2007 17:02:49 +0100, Neil Cerutti napisa³(a): > > >SPElost its web host, and last I heard is looking for a new > > home. For now you can get it here: > > > http://sourceforge.net/projects/spe/ > > That is old addres. Nev

Re: Eric on XP for Newbie

2007-02-28 Thread SPE - Stani&#x27;s Python Editor
On Feb 28, 6:15 pm, [EMAIL PROTECTED] wrote: > On Feb 28, 4:27 pm, Alan Franzoni > > <[EMAIL PROTECTED]> wrote: > > Il 28 Feb 2007 08:13:42 -0800, [EMAIL PROTECTED] ha scritto: > > > [cut] > > > Forget the tars. > > >http://www.quadgames.com/download/pythonqt/ > > > Get the two EXEs here. BTW, I do

Re: Python IDE

2007-11-03 Thread SPE - Stani&#x27;s Python Editor
On 3 nov, 15:11, Simon Pickles <[EMAIL PROTECTED]> wrote: > Hi, > > I have recently moved from Windows XP to Ubuntu Gutsy. > > I need a Python IDE and debugger, but have yet to find one as good as > Pyscripter for Windows. Can anyone recommend anything? What are you all > using? > > Coming from a V

Re: Java Developer Exploring Python

2006-04-19 Thread SPE - Stani&#x27;s Python Editor
> Can anyone recommend an open source IDE for Python that runs on Linux? A lot of SPE (http://pythonide.stani.be) users are on all kinds of Linux flavours (but also Mac OSX and windows). I've started to use SPE on Ubuntu. There could be some improvements. As soon as I have time I'll implement them

howto py2exe/py2app for self updating application

2006-04-22 Thread SPE - Stani&#x27;s Python Editor
Hi, I'm creating a GUI program with wxPython which will be distributed for Mac and Windows. The audience of the program is not technical at all (eg they've never heard about Python yet ;-), so everything should go automatically. The program should be able to update itself and to update its databa

Re: howto py2exe/py2app for self updating application

2006-04-22 Thread SPE - Stani&#x27;s Python Editor
Can you be more specific? Which module do you mean at python.org? Stani -- http://mail.python.org/mailman/listinfo/python-list

Re: Recommended IDE for creating GUI?

2006-04-23 Thread SPE - Stani&#x27;s Python Editor
SPE also integrates with XRCed which is very stable. Google for more info. Stani -- http://mail.python.org/mailman/listinfo/python-list

ANN: Phatch = PHoto bATCH processor and renamer based on PIL

2008-02-18 Thread SPE - Stani&#x27;s Python Editor
I'm pleased to announce the release of Phatch which is a powerful batch processor and renamer. Phatch exposes a big part of the Python Imaging Library through an user friendly GUI. (It is using python-pyexiv2 to offer more extensive EXIF and IPTC support.) Phatch is not targeted at manipulating ind

Re: ANN: Phatch = PHoto bATCH processor and renamer based on PIL

2008-02-19 Thread SPE - Stani&#x27;s Python Editor
On Feb 19, 4:23 am, "Daniel Fetchinson" <[EMAIL PROTECTED]> wrote: > On 2/18/08, SPE - Stani's Python Editor <[EMAIL PROTECTED]> wrote: > > I'm pleased to announce the release of Phatch which is a > > powerful batch processor and renamer. Phatch expos

Re: ANN: Phatch = PHoto bATCH processor and renamer based on PIL

2008-02-22 Thread SPE - Stani&#x27;s Python Editor
On Feb 22, 1:41 am, Mike Driscoll <[EMAIL PROTECTED]> wrote: > On Feb 20, 4:19 am, Stani <[EMAIL PROTECTED]> wrote: > > Even without python-pyexiv2 Phatch features read-only EXIF support thanks to > > PIL. So you can name your files or write data stamps (date, aperature, > > velocity, > > ...) bas

  1   2   >