Re: Python and OLAP?

2005-12-08 Thread Mike Thompson
Wolfgang Keller wrote: > Hello, > > does anyone know of Python modules for OLAP work? E.g. efficient > manipulation of large multi-dimensional structures (arrays) of arbitrary > (not only numeric) data? > > TIA, > > Sincerely, > > Wolfgang Keller > > Perhaps this might be useful: ht

Continuations Based Web Framework - Seaside.

2005-01-02 Thread Mike Thompson
'Seaside' is a Smalltalk framework for what might be called "Modal Web Development" or "Synchronous Web Programming", or even "Continuation Based Web Apps". http://www.beta4.com/seaside2/ Very sexy it looks too. And it seems to be generating a lot of interest - Ruby and Java variants have

Re: Python evolution: Unease

2005-01-05 Thread Mike Thompson
Alex Martelli wrote: Carlos Ribeiro <[EMAIL PROTECTED]> wrote: ... - IDE: Better than what? Than IDLE? Than Eclipse? Than SPE? Than Pythonwin? I would like to seee Eric3, with some polish & opensourced on Win (which means solving the Qt licensing problem). Perhaps someone could convince Trolltec

Re: Another PythonWin Excel question

2005-01-06 Thread Mike Thompson
It's me wrote: I followed the example in http://stompstompstomp.com/weblog/technical/2004-05-20 and learned that to add a new worksheet to an Excel workbook, you would use the workbook.Worksheets.Add() method. That works. However, the new worksheet got added *in front* of the last worksheet I w

Re: Another PythonWin Excel question

2005-01-06 Thread Mike Thompson
It's me wrote: Yes, Mike, Others pointed that out as well. For good reason. The difficulty is that they are all in VBAs. Most of them can be translated to Python fairly easily, and some I can get from looking at the recorded macro - but some requires quite a bit of head scratching. For instance,

Re: lies about OOP

2004-12-13 Thread Mike Thompson
Paul McGuire wrote: "Jive" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] But by '86, the Joy of OOP was widely known. "Widely known"? Errr? In 1986, "object-oriented" programming was barely marketing-speak. Computing hardware in the mid-80's just wasn't up to the task of dealing

Re: Winge IDE Issue - an suggestions?

2004-12-16 Thread Mike Thompson
Mike Thompson wrote: I've run into a problem using WingIDE. I have a dead simple script (which uses ElementTree): from elementtree.ElementTree import Element, SubElement, tostring Just to be clear: that's the effbot's ElementTree package at http://effbot.org/zone/element-ind

Re: Winge IDE Issue - an suggestions?

2004-12-16 Thread Mike Thompson
Marco Aschwanden wrote: Without further checking I would propose you let WingIDE ignore this exception - most probably WingIDE is choking on a exception that was thrown intentionally by the module writer. I hope you know how to let WingIDE ignore exceptions? (In the upper part of the Excepti

Winge IDE Issue - an suggestions?

2004-12-16 Thread Mike Thompson
I've run into a problem using WingIDE. I have a dead simple script (which uses ElementTree): from elementtree.ElementTree import Element, SubElement, tostring e = Element("Outer") sub = SubElement(e, 'Version').text = "v1.0" print tostring(e) When I run this script from the command line, it work

Re: pyUnitPerf

2004-12-28 Thread Mike Thompson
Roy Smith wrote: "Grig" <[EMAIL PROTECTED]> wrote: "Problem with porting patterns/api's from java straight to python is that most of the outcome feels unpythonic. I'll not go about my own feelings python vs. java here now, but I just want to point out that there's already a rather large core of har

Re: utf encoding error

2005-05-04 Thread Mike Thompson
Timothy Smith wrote: > hi there, this one is in relation to my py2exe saga. > > when i compile a package using py2exe i get the error msg below, if i > just run the py files it doesn't error, so i assume pysvn is trying to > use something thats not being included in the build. only i have no ide