FW: IDE+hg
From: NiklasRTZ [mailto:nikla...@gmail.com] Sent: 26 November 2009 12:38 PM To: python-list@python.org Subject: Re: IDE+hg On Nov 25, 7:28 am, alex23 wrote: > NiklasRTZ wrote: > > no py IDE I found has easy hg access. > > ActiveState's Komodo IDE has support for CVS, Perforce, subversion, > bazaar, git and mercurial. unavailable via synaptic ubuntu karmic repos, presuming its commercially bound like wing. Boa constructor, PIDA, Eric, drPython are 4 where all should be configurable for obvious reasons + I like it. thanks for anyway prompt reply my friend Eclipse with PyDev and SVN Team Provider works very well too. -- http://mail.python.org/mailman/listinfo/python-list
Graphical nodes
Hi everyone Please could someone tell me of any libraries that you could use to make use of graphical nodes in python. Each node would hold data and properties. I am trying to achieve a similar effect, as in the application spoken about below. If you have seen an application called Nuke, by the foundry, you will see what I mean. It uses graphical nodes such as rectangles etc (similar to UML) to link operations on images together with arrows etc. I know that Nuke is made using the Qt toolkit, so maybe someone could tell me what classes were probably used to make this node based interface. Maybe the QGraphicsItem and QGraphicsScene classes? It looks cool so if anyone has any ideas on how to do something like this, it would be great. Thanks -- http://mail.python.org/mailman/listinfo/python-list
Colour sampling
Does anyone know what python libraries are available to do the following: 1. I would like to take a photograph of an object with a colour. In this case, it is a sheet of sponge. 2. Feed this image into a function in a python library and let the function "automatically scan" this image's pixel colours, and return an average of all the pixels' colours in the image. 3. I could then use the rgb values to set a colour swatch for the object's colour. Please let me know if you have any ideas. It would be appreciated. In the meantime, I will search Google and see what I can find. Thanks -- http://mail.python.org/mailman/listinfo/python-list
RE: Python GUI
PyQt is what we use at work and it is excellent and easy to learn too! I definitely recommend it. -Original Message- From: Philip Semanchuk [mailto:phi...@semanchuk.com] Sent: 26 October 2009 03:42 AM To: Python-list (General) Subject: Re: Python GUI On Oct 25, 2009, at 8:39 PM, Ronn Ross wrote: > I need to create a gui for python. I'm looking for something that is > easy to learn and cross platform. Any suggestions? If you have any > good tutorials please send along. Thanks in advance. wxPython (which wraps wxWidgets) is popular and IMO reasonably well laid out. I hear great things about PyQt (which wraps QT) but I haven't used it. PySide is a new wrapper for QT that has generated a lot of excitement but is still its infancy, I think. HTH Philip -- http://mail.python.org/mailman/listinfo/python-list
Choosing GUI Module for Python
-Original Message- From: catalinf...@gmail.com [mailto:catalinf...@gmail.com] Sent: 13 November 2009 10:06 AM To: python-list@python.org Subject: Re: Choosing GUI Module for Python Tkinter is deafult on python . Is more easy to use any editor text (geany). I don?t see a good IDE for GUI On Nov 9, 6:49 am, Antony wrote: > Hi all > I just wanted to know which module is best for developing designing > interface in python . > i have come across some modules which are listed here . please tell > your suggestions and comments to choose best one > 1. PyGTK > 2. PyQT > 3. PySide > 4. wxPython > 5 . TKinter > > Also i need to know is there any IDE for developing these things . . . PyQt is an excellent toolkit for us at work. It has nice documentation and very easy to learn. We use Eclipse IDE at work with the PyDev workspace loaded for the coding. Eclipse has nice features for integration with subversion all from one place, so it makes it more manageable when you have more than 1 person working on a project. There's only 2 of us here working together, but the subversion integration makes our lives so much easier. We use eclipse for gui design in code or we use Qt Creator which is very intuitive to use if you want to design a gui visually. Also, there's a python script we use called MakePyQt that you can find here: http://www.qtrac.eu/pyqtbook.tar.gz to convert the ui files from Qt Creator to python files. Then all you need to do is implement these generated python files in your program and add functionality etc. -- http://mail.python.org/mailman/listinfo/python-list