WxPython and TK

2011-08-07 Thread azrael
Today I found a quote from Guido. wxPython is the best and most mature cross-platform GUI toolkit, given a number of constraints. The only reason wxPython isn't the standard Python GUI toolkit is that Tkinter was there first. -- Guido van Rossum OK, now. Isn't it maybe time to throw out TK

wrapping data from groups

2010-03-31 Thread azrael
Hi Could anyone give me a hint about a problem I have. I want to wrap data from newsgroups like comp.lang.python. Is there anywhere out some module for this or does google has something for this. -- http://mail.python.org/mailman/listinfo/python-list

Re: wrapping data from groups

2010-03-31 Thread azrael
I tried to use some servers I know but they have a limited amount of stored threads. not like google that has every thread ever opened. so I tried to wrap google's html but I get a 403 error. any sugesstions? On Mar 31, 3:28 pm, Steve Holden st...@holdenweb.com wrote: azrael wrote: Hi

On screen keyboard application

2009-09-28 Thread azrael
Has anyone done already an on screen keyboard applicatioin like the native windows one. I am supossed to make one for a tuchscreen project for my dad's business. It's not a problem about the gui. I guess I will use wx but if I have to use something different it will be no problem. My problem is

Python and 3d

2009-09-13 Thread azrael
Has anyone any exipience with python and 3d. I mean, is there a module to deal with popular 3d formats like 3ds, or vrml. is it possible to import into python opengl models and then use it in application for GUI purposes like through WX. I know that WX supports OpenGL but how to import models

i Don't get why it makes trouble

2009-08-13 Thread azrael
j [u'Tata', u'Oriovac', u'PrimorskoGoranska', u'hrvatska', u'Kuna'] len(j) 5 h = SELECT distinct u.id_ulica, o.id_opcina, z.id_zupanija, d.id_drzava, v.id_valuta FROM ulica as u, opcina as o, zupanija as z, drzava as d, valuta as v WHERE u.naziv = '%s' AND o.naziv = '%s' AND z.naziv =

Re: i Don't get why it makes trouble

2009-08-13 Thread azrael
On 13 kol, 21:12, Jan Kaliszewski z...@chopin.edu.pl wrote: Me wrote: 13-08-2009 azrael jura.gro...@gmail.com wrote: j [u'Tata', u'Oriovac', u'PrimorskoGoranska', u'hrvatska', u'Kuna'] len(j) 5 h = SELECT distinct u.id_ulica, o.id_opcina, z.id_zupanija,   d.id_drzava, v.id_valuta

Re: i Don't get why it makes trouble

2009-08-13 Thread azrael
On 13 kol, 22:09, Philip Semanchuk phi...@semanchuk.com wrote: On Aug 13, 2009, at 2:56 PM, azrael wrote: j [u'Tata', u'Oriovac', u'PrimorskoGoranska', u'hrvatska', u'Kuna'] len(j) 5 h = SELECT distinct u.id_ulica, o.id_opcina, z.id_zupanija,   d.id_drzava, v.id_valuta FROM   ulica

Re: i Don't get why it makes trouble

2009-08-13 Thread azrael
On 14 kol, 00:14, Philip Semanchuk phi...@semanchuk.com wrote: On Aug 13, 2009, at 6:00 PM, azrael wrote: On 13 kol, 22:09, Philip Semanchuk phi...@semanchuk.com wrote: On Aug 13, 2009, at 2:56 PM, azrael wrote: j [u'Tata', u'Oriovac', u'PrimorskoGoranska', u'hrvatska', u'Kuna

wxpython question

2009-08-10 Thread azrael
Is there maybe a method bounded to the class SpinCtrl() that could hide the widget. One that is maybe also implemented in any other control. self.spcKvadDo = wx.SpinCtrl(id=-1, initial=0, max=100, min=0, name='spcKvadDo', parent=self.pnlFilteri, pos=wx.Point(10, 10), size=wx.Size(118, 21),

Re: Best way to pickle functions

2009-04-05 Thread azrael
As in Python everythong is an object you could use __name__. import cPickle def def1(): ...pass def def2(): ...pass def1.__name__ def1 def2.__name__ def2 in this case you can combine __name__ to get the object name and then combine it with eval to pickle. pickleString = stored =

Need advise about an application

2009-04-05 Thread azrael
I am currently working on an application and I need a advise. I am supposed to read data from a device connected to a serial port. I am reading data using pySerial. The devise is sending signals with a time between two signals of one second. The application is supposed to collect the data and

Re: Need advise about an application

2009-04-05 Thread azrael
, except these related to GUI. How do you mean WYSIWYG. I know what you mean but Don't know egactly what you mean. On Apr 5, 8:31 pm, azrael jura.gro...@gmail.com wrote: I am currently working on an application and I need a advise. I am supposed to read data from a device connected

Re: Need advise about an application

2009-04-05 Thread azrael
I guess that this is not an option because of the case that the calculation of the needed statistics takes not always the same time nad I am afraid tht using sleep() would after a couple of time periods skip a meassurement. -- http://mail.python.org/mailman/listinfo/python-list

Re: Need advise about an application

2009-04-05 Thread azrael
On Apr 5, 9:48 pm, Dennis Lee Bieber wlfr...@ix.netcom.com wrote: On Sun, 5 Apr 2009 10:14:08 -0700 (PDT), azrael jura.gro...@gmail.com declaimed the following in gmane.comp.python.general: DB saving, and anotherone for statistics and other stuff because it is very important to save

google earth

2009-03-02 Thread azrael
did anyone ply with the google earth python api. this is totaly awsome. anyone got exampals? -- http://mail.python.org/mailman/listinfo/python-list

is there a project running (GUI Builder for Python ) ?

2009-02-12 Thread azrael
To be honest, in compare to Visual Studio, Gui Builders for wx widgets are really bad. Also completly for python there is not one good GuiBuilder. The only one I have seen that would come near VS was BoaConstructor, But the number of Bugs is just horrific. Too bad that no one is developing it

A little bit else I would like to discuss

2009-02-12 Thread azrael
Sometimes I really get confused when looking out for a modul for some kind of need. Sometimes I get frightened when I get the resaults. 8 wraper for this, 7 wrapers for that, 10 modules for anything. Between them are maybe some kind of small differences, but to work with any of the modules, I have

Re: is there a project running (GUI Builder for Python ) ?

2009-02-12 Thread azrael
On Feb 12, 8:25 pm, J Kenneth King ja...@agentultra.com wrote: azrael jura.gro...@gmail.com writes: To be honest, in compare to Visual Studio, Gui Builders for wx widgets are really bad. That's because Visual Studio is a Microsoft product to build interfaces for Microsoft products. wx

A little bit else I would like to discuss

2009-02-12 Thread azrael
Sometimes I really get confused when looking out for a modul for some kind of need. Sometimes I get frightened when I get the resaults. 8 wraper for this, 7 wrapers for that, 10 modules for anything. Between them are maybe some kind of small differences, but to work with any of the modules, I have

Re: A little bit else I would like to discuss

2009-02-12 Thread azrael
On Feb 12, 9:24 pm, Tim Golden m...@timgolden.me.uk wrote: Philip Semanchuk wrote: On Feb 12, 2009, at 3:04 PM, azrael wrote: Why will Microsoft's products kick the ass of open source. Because anyone does what he wants. Let's say There are 5 GUI libraries competing against each other

Re: A little bit else I would like to discuss

2009-02-12 Thread azrael
On Feb 12, 9:40 pm, Christian Heimes li...@cheimes.de wrote: azrael wrote: I think that there should be a list on python.org of supported or sugested modules for some need. For example Database access. Or GUI Building. It is a complete pain in the ass. Let's face the true, TK is out

Re: is there a project running (GUI Builder for Python ) ?

2009-02-12 Thread azrael
On Feb 12, 9:42 pm, Christian Heimes li...@cheimes.de wrote: azrael wrote: On Feb 12, 8:25 pm, J Kenneth King ja...@agentultra.com wrote: azrael jura.gro...@gmail.com writes: To be honest, in compare to Visual Studio, Gui Builders for wx widgets are really bad. That's because Visual

Re: A little bit else I would like to discuss

2009-02-12 Thread azrael
There is no need to make it elephant size. Python takes only 14 MB if I am not wrong. Compare 10 GB of VS package in compare with that. nothing. Python enthought edition is something really sweet. For starters, Why does Python not have a build in library to handle images. I don't get this. Why?

python an sqlite objects

2008-12-03 Thread azrael
is it possible to save a python object into a sqlite database as an atribute of type BLOB -- http://mail.python.org/mailman/listinfo/python-list

Re: python an sqlite objects

2008-12-03 Thread azrael
It logical that it would be more efficient and logical to use a object oriented database, but in this case I ask because of the portable nature of sqlite. so, if I get it right, this should be possible class a: def __init__(self, a, b): self.c = a+b self.d = a*b ob = a(1,3) oc =

Re: is there really no good gui builder

2008-11-09 Thread azrael
It would be rally great if wingIDE would have integrated controls for wxPython.This would be really great. -- http://mail.python.org/mailman/listinfo/python-list

is there really no good gui builder

2008-11-08 Thread azrael
whoever I ask, everyone tells me when it come to python and GUI-s and that there is the best way to use WX. I am browsing for the 10th time during the last year and I can still not bealive that there is not one project to make gui-building easy as maybe in VB for python. Each I tried was a pain in

Re: Need some advice

2008-10-22 Thread azrael
I mean shttp. (secure hyper text transfer protocol) On Oct 22, 9:48 am, Bruno Desthuilliers bruno. [EMAIL PROTECTED] wrote: azrael a écrit : There have been some discutions with my partner about which protocol to use. We agreed to use also http. But we are looking for a possibility

Re: Commercial Products in Python

2008-10-22 Thread azrael
Why don't you give a try to IronPython. I began playin with it yesterday, and as far as I can see, My worries about selling a python application are gone, so far. On Oct 22, 12:08 pm, Paul Boddie [EMAIL PROTECTED] wrote: On 21 Okt, 19:50, Paulo J. Matos [EMAIL PROTECTED] wrote: I was

Need some advice

2008-10-21 Thread azrael
I am starting to work on a application and need some advice. I am planing to develop a desktop application which would have some usage, but also it should be able to comunicate to a web server which hosts a php web application. So I wanted to ask if someone has some expirience with connecting PHP

Re: Need some advice

2008-10-21 Thread azrael
of datacapturing, is there a better soulutioon to suggest to be more secure like shttp if it is implemented in python On Oct 21, 6:34 pm, Bruno Desthuilliers [EMAIL PROTECTED] wrote: azrael a écrit : I am starting to work on a application and need some advice. I am planing to develop a desktop

Need help with Wxpython

2008-10-14 Thread azrael
I need to implement a tree which will append a root. Any other node in the tree will be triggered when a button is pressed. I created the button, all the needed events, tree and a root. But when I want to append a node pressing the button I don't know How. My idea is using the

Re: Need help with Wxpython

2008-10-14 Thread azrael
Seen it already but looks to complicated. Someone knows a better way? -- http://mail.python.org/mailman/listinfo/python-list

Suggestion for the PythonDevelopment for next version

2008-10-13 Thread azrael
You know, sometimes it annoys me to write a for loop in Python. If we use a list a=[1,2,3,4], and want to loop through it, Python offers the next option for i in a: print i 1 2 3 4 I love this. So simple and smooth. But what happens if we need also the position of an object in a list. Then

Re: Suggestion for the PythonDevelopment for next version

2008-10-13 Thread azrael
I know that. enumerate is a great function. But this way it always adds some complexity. I think that it is more better to give a man a better tool then to let him play with a not so good one. People like Python because of his simplicity in comparison with c++. Maybe People would like him even

Re: Suggestion for the PythonDevelopment for next version

2008-10-13 Thread azrael
case closed -- http://mail.python.org/mailman/listinfo/python-list

Data wont stay saved in Database using Pysqlite

2008-10-12 Thread azrael
I am working on an application using Python, wxPython and Sqlite (Pysqlite) So my problem is that I can connect top the database. When I open a dialog through a form I am able to make a select, even insert data into the database. Even if I open again the Dialog. But as soon as I close the main

Re: Data wont stay saved in Database using Pysqlite

2008-10-12 Thread azrael
On Oct 12, 8:26 pm, azrael [EMAIL PROTECTED] wrote: I am working on an application using Python, wxPython and Sqlite (Pysqlite) So my problem is that I can connect top the database. When I open a dialog through a form I am able to make a select, even insert data into the database. Even if I

Python - ubuntu

2008-08-29 Thread azrael
Hy folks A friend of mine told me something about Guido and google developing an Ubuntu distribution based and totaly oriented for the Python appliction development. I googled for it with no results. Is it possible that My Buddy is trying to foole me or is it possible that someone knows something

Re: Eclipse, Python, wxPython and code completion

2008-08-11 Thread azrael
if you need a good python ide with great code completition, then why don't you try WingIde. On 11 kol, 10:49, [EMAIL PROTECTED] wrote: On 11 ago, 04:34, SPE - Stani's Python Editor [EMAIL PROTECTED] wrote: On 10 aug, 20:42, [EMAIL PROTECTED] wrote: Hello, I've installed

Ascii to binary conversion

2008-08-09 Thread azrael
Hy folks, I googled, and searched, and can not bealive that I have not found a built in way to convert the easy and elegant python way a function to easily convert simple ascii data to binary and back. I've written some my own but they were pretty slow using binascii linbrary with hexifly and

Re: Ascii to binary conversion

2008-08-09 Thread azrael
pm, azrael [EMAIL PROTECTED] wrote: Hy folks, I googled, and searched, and can not bealive that I have not found a built in way to convert the easy and elegant python way a function to easily convert simple ascii data to binary and back. I've written some my own but they were pretty

Re: Ascii to binary conversion

2008-08-09 Thread azrael
PROTECTED] wrote: azrael wrote: looks nice. is there an oposite function of ord() so I could also bring a binary number also back to ascii. the speed matters if you plan to exchange about 10 M ascii chars and don't wont to wait a year for the results. :) On 9 kol, 15:39, John Machin [EMAIL

Python Success stories

2008-04-22 Thread azrael
Hy guys, A friend of mine i a proud PERL developer which always keeps making jokes on python's cost. Please give me any arguments to cut him down about his commnets like :keep programing i python. maybe, one day, you will be able to program in VisualBasic This hurts. Please give me informations

Re: last mouse movment or keyboard hit

2008-03-26 Thread azrael
You can use wxPython. Take a look on the DemoFiles that you can download also from the site. I remember that there has been a demo of capturing mouse coordinates and also one example about capturing Which key has been pressed at which time. Just start the time, count the interactions of key

wx and pil conversion

2008-03-13 Thread azrael
A little problem. Can I directly show Pil objects image.open(bla.jpg) in Wx or do I have to transform them. If I have to transofm them How can I do it. Pixel by pixel or is there somethin built in in pil or wx or python. pilj-wx and wx-pil. --

Re: wx and pil conversion

2008-03-13 Thread azrael
I thought of using Temp files but I am afraid of the JPG destorsion while saving because of the compresion.I am looking for a way to directly transform it. On Mar 13, 5:09 pm, Diez B. Roggisch [EMAIL PROTECTED] wrote: azrael wrote: A little problem. Can I directly show Pil objects

Re: wx and pil conversion

2008-03-13 Thread azrael
On Mar 13, 6:57 pm, Diez B. Roggisch [EMAIL PROTECTED] wrote: azrael wrote: I thought of using Temp files but I am afraid of the JPG destorsion while saving because of the compresion.I am looking for a way to directly transform it. Then don't use JPEG, use PNG. It's lossless. Diez

fromfunc functions

2008-02-13 Thread azrael
I came across the fromfunc() function in numpy where you pass as an argument the name of a function as a string and also the atributes for the desired function. I find this extremly usefull and sexy. Can someone point me how write a function of such capabilities --

Re: fromfunc functions

2008-02-13 Thread azrael
Thaks guys. this helped -- http://mail.python.org/mailman/listinfo/python-list

PYS file

2008-01-28 Thread azrael
A I Understood correctly, pyc files are compiled py scripts. Is it possible to decomplite them. I guess it's possible, but how hard is it. -- http://mail.python.org/mailman/listinfo/python-list

constructor question

2008-01-21 Thread azrael
lets supose i have a object class a: __init__(self,b): self.b=b object=a(2) how can I bind the object with print. I supose that this should be possible with a constructor. but I don't know how. print a 2 Something like this Thnx --

Re: constructor question

2008-01-21 Thread azrael
5 days ago I looked at it and didn't take a notice. thnx, this helped On Jan 22, 12:10 am, TeroV [EMAIL PROTECTED] wrote: azrael wrote: lets supose i have a object class a:   __init__(self,b):        self.b=b object=a(2) how can I bind the object with print. I supose

py2exe and modules question

2008-01-20 Thread azrael
I'm working on an application and i'm having some questions. I am working with python 2.5, numpy and PIL. does anyone know if there are some problems while compiling the source because of the modules.. It has to be closed source. I didn't try Py2exe but I heard about it. Is there any other and

how to keep order key in a dictionary

2007-11-04 Thread azrael
I 'm currenty working on a project for which it would be great to use a dictionary. At the begining I have a list of strings that should represent the keys in the dictionary. When I try to create a dictionary it rearanges the keys. For this dictionary it is realy important to keep the right order.

Re: how to keep order key in a dictionary

2007-11-04 Thread azrael
thanks, the links where successfull -- http://mail.python.org/mailman/listinfo/python-list

Re: Creating a custom python python distribution

2007-10-02 Thread azrael
Maybe you should check the Slax distro. Go to www.slax.org. There is one special slax distro caled Frodo. I think that it includes nearly nothing but the core. There are also several packages for the distro that you can put inside the distro and create your own distribution. There are also

wxpython combined with vpython

2007-09-29 Thread azrael
One question. I didn't try it, just one idea Is it possible to put a Vpython window inside a WX frame like it is a part of the wxframe between sizers or anything els -- http://mail.python.org/mailman/listinfo/python-list

Re: Help for Otsu implementation from C

2007-09-22 Thread azrael
Thanks Man, I did it. It works fantastic. On Sep 19, 9:33 pm, azrael [EMAIL PROTECTED] wrote: I know. The translation is not so important to me, because this is going to just a little function that is working in the last step of the whole proces. The whole implementation wont be published

Video from image

2007-09-22 Thread azrael
I'd like to ask you if you know a module that makes it possible to create a number of images and than to use them as frames and finaly export them to a video file -- http://mail.python.org/mailman/listinfo/python-list

help, I'll go crazy

2007-09-19 Thread azrael
Some time ago I started a thread about the Otsu Threshold. Well I didn' manage to make any progress to acomplish this task. I tried to implement it from other Languages including Java and C. Well, this is the example list. histogram=[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,

Re: Help, I'm going mad with this

2007-09-19 Thread azrael
I didn't found this one. Looks interesting and complex because I ran away from C to Python because of the developing speed and pointers. Thanks mate, I'll try it. Other C implementations I found were much shorter, at least this is going to be a little challenge. :D --

Help for Otsu implementation from C

2007-09-19 Thread azrael
Can somone look at this def otsu(hi): fmax=-1.0 border=len(hi) for i in range(border): if hi[i]!=0:break for j in range(border-1,0-1,-1): if hi[j] != 0:break s = sum([k*hi[k] for k in range(border)]) n = sum(hi) # product(im.size) n1=n2=csum=0.0 for

Re: Help for Otsu implementation from C

2007-09-19 Thread azrael
finished, and this is the only function I am missing. For this purpose I need it to work EXACTLY. I know that it doesnt look pythonic. After I know that it works correctly, I am going to write a total Rewrite for the Beta Version. On Sep 19, 1:55 pm, Peter Otten [EMAIL PROTECTED] wrote: azrael

Help, I'm going mad with this

2007-09-18 Thread azrael
Meanwhile I tried about 5 different implementations of the otsu threshold algorithm. I'll go mad. Please help me. I don't know what to do. I even tried to implement it from c and java, but no way. nothing. I've been reading about 5 ppt presentations and 4 pdf's and I failed. Can someone look at

Re: Pivy problem and some other stuff

2007-09-01 Thread azrael
Look, what I think about is this. I'd like to make a multi dimensional list in which evry single element would represent a function. By looping through the list I would execute the functions. But not only that, it is possible to experiment with recoursions. the return 1 2 and 3 examples are just a

Pivy problem and some other stuff

2007-08-30 Thread azrael
Hy Guys Did anyone manage to install and use Pivy. I'm trying it and cant come closer to the goal I get the message: Please set the COIN3DDIR environment variable to your Coin root directory! ** Aborting ** Familiar to anyone? And there is anoher question in my mind. Is there a way to make a

Re: Hot subject: a good python editor and/or IDE?

2007-08-19 Thread azrael
Try the WingIDE Great Code Completition, Source Assistant, Debugger, PythonShell, projects, The codeCompletition is really great. Give it a try On Aug 19, 3:37 pm, Buchoux Sébastien [EMAIL PROTECTED] wrote: Bjoern Schliessmann wrote: Sébastien wrote: I am currently using Eclipse+PyDev

Re: otsu threshold in python

2007-06-06 Thread azrael
. I'm working on a project for my clases, and the last thing I need to accomplish my goal is this filter. Is there anyone who implemented it. Thanks Hyuga On Jun 5, 6:02 pm, Hyuga [EMAIL PROTECTED] wrote: On Jun 5, 10:19 am, azrael [EMAIL PROTECTED] wrote: Hy guys. I'd like to ask you

otsu threshold in python

2007-06-05 Thread azrael
Hy guys. I'd like to ask you for a favour. I tried several times to implement the otsu threshold filter in python. but I failed every time. I found the soucre code i n Java from the ImageJ project but I never worked in Java and there have been used some built in Java functions which I don't know

Re: Creating search engine in Python Good or Bad [in performance]

2007-04-19 Thread azrael
That's right. It all depends on your design. When you do a select you could brute force it to to return the data, but the speed comes from elegant designing and programing skills. Using C++ or even Better C would probably boost your database model. Try to sort the data in the database so you can

Re: Problem with algorithm

2007-04-13 Thread azrael
I think that this would be very silly to do. bad kung foo. The recoursion technique would be more satisfying. You sholud consider that this would take about 4 lines to write. Also be avare of the default recoursion depth in python wich is 1000. you can get and set the recoursion limit hrough

Re: Problem with algorithm

2007-04-13 Thread azrael
: azrael wrote: I think that this would be very silly to do. bad kung foo. The recoursion technique would be more satisfying. You sholud consider that this would take about 4 lines to write. Also be avare of the default recoursion depth in python wich is 1000. you can get and set

Re: Python editor/IDE on Linux?

2007-04-13 Thread azrael
try wing ide. i tried it and i love it. it's available for windows as well for linux On Apr 13, 9:11 pm, Christoph Haas [EMAIL PROTECTED] wrote: On Fri, Apr 13, 2007 at 11:20:23AM -0700, Jack wrote: I wonder what everybody uses for Python editor/IDE on Linux? I use PyScripter on Windows,

Re: Problem with algorithm

2007-04-13 Thread azrael
Are you maybe trying to create a rainbow table, or a very big dictionary -- http://mail.python.org/mailman/listinfo/python-list

favourite IDE

2007-04-12 Thread azrael
Some time ago I posted a question about the favourite IDE. I finally found it. WING IDE i the best I've ever seen for python. Code completition is amazing, automated help, python comand line. evrything i need. Who didnt try, doesnt know what he is missing. just one word: Amazing respect to the

opinion needed

2007-03-09 Thread azrael
id like to hear your opinion about something. I just started using Prolog yesterday and i have my doubts about it, but it seems to me something like object oriented. so i wanted to ask you how usefull prolog is. Sure this is no prolog newsgroup so my question is: because it seems object oriented,

pattern matching

2007-03-01 Thread azrael
can someone give me good links for pattern matching in images using python -- http://mail.python.org/mailman/listinfo/python-list

imagemagick

2007-03-01 Thread azrael
Hy did anyone manage to work with imahemagick through python. I've been googling like a crazy for some instalation instructions, but i cant find anything. please help. thnx -- http://mail.python.org/mailman/listinfo/python-list

Re: imagemagick

2007-03-01 Thread azrael
. On Mar 1, 4:12 pm, Terry Hancock [EMAIL PROTECTED] wrote: azrael wrote: Hy did anyone manage to work with imahemagick through python. I've been googling like a crazy for some instalation instructions, but i cant find anything. please help. There have been a few wrappers for ImageMagick over

Re: Testers please

2007-02-13 Thread azrael
it would be nice when someone would paste some instructions or tutorial how to bound it all together. where to paste the file. a dummy tutorial if possible. -- http://mail.python.org/mailman/listinfo/python-list

Re: favourite editor

2007-02-12 Thread azrael
I expirienced some big craches. tra running some aplication vith using Vpython. when you close the vpython window, pyscripter also crashes. sometimes im writing some code and suddenly get about 300 error messages without running anything. I like pyscripter, but sometimes it drives me crazy On

Re: Testers please

2007-02-12 Thread azrael
I took a first look on the video. Amazing. I love it. You got a tester good job, man // but one thing, why not zope and postgre? martien friedeman je napisao/la: I have written this tool that allows you to look at runtime data and code at the same time. And now I need people to test it.

morpholgy toolbox

2007-02-11 Thread azrael
does any one have any expirience with mmorph module. At first i was unable to run it because some file was missing (instalation problem), but i managed it. but, did anyone manage to save the new mask, or anything created with it. -- http://mail.python.org/mailman/listinfo/python-list

Re: help please!!

2007-02-11 Thread azrael
well, this sounds funn. 1) dont expect someone to do your homework. 2) dont expect someone to do dirty homework 3) dont expect someone to do your home work especially when it's something that could make you problems, or the person that is helping you 4) from your message i can read that you need

Re: help please!!

2007-02-11 Thread azrael
Hey yo kiddie, I hope that you are using the web for some time. So you can get the meaning from my post.: LOL, ROTF, LOL, ROTF, LOL, ROTF, LOL, ROTF, LOL, ROTF, LOL, ROTF, LOL, ROTF, LOL, ROTF, LOL, ROTF, LOL, ROTF, LOL, ROTF, LOL, ROTF, LOL, ROTF, LOL, ROTF, LOL, ROTF, LOL, ROTF, LOL, ROTF,

Re: unique elements from list of lists

2007-02-10 Thread azrael
no heart feelings. i was just throwing ideas. no time to testing it. On Feb 9, 3:55 pm, Tekkaman [EMAIL PROTECTED] wrote: Thanks everybody!Azrael: your suggestions involve python-level membership testing and dummy list construction just like my uniter3 example, so I'm afraid they would

favourite editor

2007-02-10 Thread azrael
Since i'm new on this forum, and first time meeting a python comunity, i wanted to ask you for your python editors. Im looking for some good python editor, with integrated run function, without having to set it up manualy like komodo. I found the pyscripter, and it has all i need, but it's

Re: unique elements from list of lists

2007-02-09 Thread azrael
try something else. im posting the code from a kiosk which has no python, sooo. no code. only explanation if my memory works well there is a function in python that takes a multidimensional list and returns its values as a one-dimension list. def main(): list =unknownFunction([['a', 'b',

Re: unique elements from list of lists

2007-02-09 Thread azrael
tra using the firs sublist (list[1]) as cell.then take zhe second sublist and take a value from it at once and if the value from list[2] doesnt exist in list[1] then insert it into list[1] at the correct place. Something like the insertionsort. --

Re: uml and python

2007-02-08 Thread azrael
tahks guys -- http://mail.python.org/mailman/listinfo/python-list

python linux distro

2007-02-08 Thread azrael
Hy guys last night i was lying in my bed and thinking about something. is there any linux distro that is primary oriented to python. you know what i mean. no need for php, java, or something like this. pure python and containig all the funky modules like scipy, numpy, boaconstructor (wx of

Re: python linux distro

2007-02-08 Thread azrael
the lik here. i will look out (if i mange to do it) to use the slax distro and just add some packages. thnx On Feb 8, 5:56 pm, Steve Holden [EMAIL PROTECTED] wrote: azrael wrote: Hy guys last night i was lying in my bed and thinking about something. is there any linux distro

Re: Can Parallel Python run on a muti-CPU server ?

2007-02-08 Thread azrael
no, not renting. i need such one at home. when you say rent it sounds like buy a hosting package. i need one to work all the time on max power. cracking md5 needs power. :-D -- http://mail.python.org/mailman/listinfo/python-list

Re: Newbie Question

2007-02-08 Thread azrael
but look out for pyqt. there is one thing in the eula i don't like. there is written that if you use qtWidgets and they like the aplication, you have to give up all your rights of the aplication. patent, idea, money everything is gone. i know this is open source, but maybe one day i will manage to

Re: Is Python for me?

2007-02-08 Thread azrael
i hope you know that for this task, if you want it to be successfull, you need a really big database. it sounds very simple to this. it sounds like go through all possible permutations. before you start writing any code take a pencil and a big paper and do some maths. i sugesst you read and

Re: Is Python for me?

2007-02-08 Thread azrael
i forgot a query language. something like postgre or mysql On Feb 9, 7:37 am, azrael [EMAIL PROTECTED] wrote: i hope you know that for this task, if you want it to be successfull, you need a really big database. it sounds very simple to this. it sounds like go through all possible

Re: Thanks for the help

2007-02-08 Thread azrael
On Feb 9, 4:06 am, Reid [EMAIL PROTECTED] wrote: Hello All Thanks for taking the time to answer my question. I do not need 3d stuff. Just a couple of buttons and menu's. The reason I am looking at python is it is free to download. I cannot afford VB or other commercial languages. Reid

Re: Can Parallel Python run on a muti-CPU server ?

2007-02-07 Thread azrael
On Feb 7, 3:13 am, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Hi all, I'm interested in Parallel Python and I learned from the website of Parallel Python that it can run on SMP and clusters. But can it run on a our muti-CPU server ? We are running an origin3800 server with 128 CPUs.

  1   2   >