s that for those without your aversion to
installing useful tools, Dabo provides a ton of functionality. Also, as my
partner Paul McNett pointed out, I could have done it in *two* lines:
import dabo
dabo.dApp().start()
;-)
--
-- Ed Leafe
-- http://leafe.com
-- http://dabodev.com
--
http://mail.python.org/mailman/listinfo/python-list
dbapi-compliant modules,
and, of course, wxPython. If someone mis-installs one of the pre-requisites,
do you expect Dabo to catch that and present you with a diagnostic message?
I'm serious here: I want to know what people consider acceptable for a
software package that relies on other
On Monday 01 August 2005 09:28, Harald Armin Massa wrote:
> it is not that you use twisted, but
> you provide twisted with callbacks so that it uses you?
+1 QOTW
--
-- Ed Leafe
-- http://leafe.com
-- http://dabodev.com
--
http://mail.python.org/mailman/listinfo/python-list
opers using the framework who have
questions/problems/comments about Dabo.
http://leafe.com/mailman/listinfo/dabo-dev
http://leafe.com/mailman/listinfo/dabo-users
--
-- Ed Leafe
-- http://leafe.com
-- http://dabodev.com
--
http://mail.python.org/mailman/listinfo/python-list
nted out, we
address it. But one problem with that is when you only have a handful of
people actively using and testing it, you limit your potential for
discovering problems. If nothing else, this thread has helped by pointing out
one such shortcoming. ;-)
--
-- Ed Leafe
-- http://leafe.c
where we can see what your software does. Take a look at the SciPy module
> for good instructions. It would have been hell without the precise list of
> prerequisites in the INSTALL.txt file.
OK, thanks for the pointer. We appreciate all of these good ideas!
--
-- Ed Leafe
-- h
nly an issue when you build wxPython from
source. Those who aren't inclined to go this route have the option of several
binaries, all of which include everything. So in a way, I *do* expect someone
who has foregone the binary route and chosen the source route to at least
read the build ins
> becoming a standard part of Tk:
> http://wiki.tcl.tk/14522
That's certainly an improvement. But when we reviewed the various toolkits a
year and a half ago, we just looked at the standard Tk stuff.
--
-- Ed Leafe
-- http://leafe.com
-- http://dabodev.com
--
http://mail.python.org/mailman/listinfo/python-list
s that non-developers will then use, so
packaging/distribution certainly comes into play at some point.
--
-- Ed Leafe
-- http://leafe.com
-- http://dabodev.com
--
http://mail.python.org/mailman/listinfo/python-list
-generated crash file and forget about it.
Thanks! This looks like a great approach - I may have to borrow it!
--
-- Ed Leafe
-- http://leafe.com
-- http://dabodev.com
--
http://mail.python.org/mailman/listinfo/python-list
to create
Dabo classes visually, and have made some great progress, but this is still
very much an unfinished product.
The Class Designer has progressed to the point where you can lay out a form
using a sizer-centric approach, modify the properties of controls and their
sizers from a
ction) visual design
tools.
As usual, it can be found, along with our other stuff, at
http://dabodev.com/download.
--
-- Ed Leafe
-- http://leafe.com
-- http://dabodev.com
--
http://mail.python.org/mailman/listinfo/python-list
ovember, but the exact date will depend on how quickly we can
turn around the production."
So while it's still a little ways off, it's certainly within sight!
--
-- Ed Leafe
-- http://leafe.com
-- http://dabodev.com
--
http://mail.python.org/mailman/listinfo/python-list
Just migrating now from ASP/to MySQL and Python.
I am trying to create a simple script to access a MySQL DB.
The Module for MySQL looks very easy, however I do not understand one thing ...
In ASP, you can just create a new DB with Access. In MySQL, how do I create a database to start playing w
What's the best module for encryption with python, anyone out there using python and encryption together?-- edward hotchkiss
--
http://mail.python.org/mailman/listinfo/python-list
So I have a script, first part of a script that I am making to determine each possible combination of IP addresses that are out there.
This part is just to get the end of the IP (the last 3 digits). So, they are from 0 - 255. I just want to print 0 - 255, HOWEVER
If the number is only say ...
perties as theunix printf. In python, I think its called "string formatting".JamesOn Thursday 15 September 2005 20:33, Ed Hotchkiss wrote:
> So I have a script, first part of a script that I am making to determine> each possible combination of IP addresses that are out there.&g
Is this for running an SQL database, then using a separate python module to access the database?
On 15 Sep 2005 21:31:27 -0700, gsteff <[EMAIL PROTECTED]> wrote:
SQLite rocks, its definitely the way to go. Its binary is around 250K,but it supports more of the SQL standard than MySQL. It CAN be
Awesome. I just started Python today so I'd have no idea ... how good is this encryption compared to PGP? Any info on using this file? Didn't see any on this guys site ...
On 9/16/05, Robert Kern <[EMAIL PROTECTED]> wrote:
Ed Hotchkiss wrote:> Gmail was just an example, I j
Sweet, time to play with python for a whole day today :P
On 9/16/05, Gary Wilson Jr <[EMAIL PROTECTED]> wrote:
Ed Hotchkiss wrote:> def ZeroThrough255():> x = 0> while x <= 255:
> if len(x) == 1:> mySet = '00'
Awesome, I'm checking both out right now, trying to get it setup - thanks.
On 9/16/05, Christoph Haas <[EMAIL PROTECTED]> wrote:
On Thu, Sep 15, 2005 at 11:00:46PM +0200, ionel wrote:> I'm looking for a thread-safe database.
> Preferably an embedded, sql database.>> What are the best choices in ter
So I opted actually to stick with MySQL since I got hooked up with a DB free and It's more of a standard.
I'm looking at documentation, and wondering why not just use _mysql which is built in, versus the MySQLdb module? I don't get this ...
-edward
--
http://mail.python.org/mailman/listinfo/py
This script should just be writing every possibly IP (yea, there are billions i know blah blah) to a txt file. Instead of just writing the IP, it continues and the number goes past 4 groups. IE: The possible IP keeps getting 3 characters longer every time. And at the end of the last loops do I some
Address = '%03.d.%03.d.%03.d.%03.d\n' % (octet1, octet2,octet3, octet4)
ipFile.write(ipAddress)
ipFile.close()
# execute the function
findIPs()Thanks though, your response helps me understand variables better now..
On 9/16/05, John Hazen <[EMAIL PROTECTED]> wrote:
* Ed Hotchkis
So I changed the code a little, still throwing the SQL syntax error. I still cannot seem to identify the problem.
# Script to add links from a comma deliminated file to a MySQL database# 9/16/05
import MySQLdb
conn=MySQLdb.connect( host="www.freesql.org", user="edhotchkiss", port=3306, pas
On Sep 17, 2005, at 3:04 PM, Ed Hotchkiss wrote:
> There is no oreilly in the code ... I still get an error, any other
> ideas? sorry ...
Strange; can you explain where the text quoted (reilly, Python,
Archive, http://
python.oreilly.com/archive.html) came from, then?
Ok. I am trying to read a csv file with three strings separated by commas.
I am trying to insert them into a MySQL DB online.
MySQLdb is installed, no problems.
I think that I am having some kind of error with my csv going into the
fields and being broken apart correctly. Can someone please help?
Let us say that I am trying to create a very small and simple private network/connection between several scripts on different machines, to communicate instructions/data/files etc. to each other over the net. Is SSL the best method? Any recommendations of something to get started with? Thanks in adv
Let us say that I am trying to create a very small and simple private network/connection between several scripts on different machines, to communicate instructions/data/files etc. to each other over the net. Is SSL the best method? Any recommendations of something to get started with? Thanks in adv
Let us say that I am trying to create a very small and simple private network/connection between several scripts on different machines, to communicate instructions/data/files etc. to each other over the net. Is SSL the best method? Any recommendations of something to get started with? Thanks in adv
I have used fetchall() to insert the values from a table into a tuple. anywhere from 0 - ? many rows could be in this tuple, so it is a row within a row. How do I use a loops to iterate through the nested tuple, and assign the tuples integers and strings to variables, ugh :P
The Tables data is l
Well, I fixed those problems, now what I have is this:
but i am getting errors with the global variables or something ... am i supposed to use this class and def together differently? I just don't seem to understand ...
-edward
import socketimport threadingimport traceback
class scanThread(thr
Let's say that I avoid the complexities of using classes, and that I avoid using anything to count the threads...
import socketimport threading
def scan(ip, port): try: s = socket.socket(socket.AF_INET, socket.SOCK_STREAM) s.connect((ip, port)) s.close() print '%s |
wrote:
SSH can be used for functionality like this, through tunneling. You can eventunnel interprocess communication through SSH. Its not exceptionally
complicated.On Sunday 18 September 2005 13:36, Ed Hotchkiss wrote:> Let us say that I am trying to create a very small and simple private
I apologize for misreading your H my dear professor. Perhaps you can google:asshole and see if your image is present, I would highly doubt that it is not within the first page of results.
I'm sorry that I did not see the message in the thread which recommended SSH rather than SSL. There is no
No worries, I apologize for my outburst. I will check out the viability of using an SSH module, or using pyCrypto or something to encrypt the data.
Here's my mission: simple P2P class with encryption of whatever type of file is being sent, and authentication via encrypted user name/password. So
hah :P awesome, I will be busy this week!
-edward
On 20 Sep 2005 14:23:10 -0700, Paul Rubin <"http://phr.cx"@nospam.invalid> wrote:
Steve Holden <[EMAIL PROTECTED]> writes:> > Here's my mission: simple P2P class with encryption of whatever type
> > of file is being sent, and authentication via enc
please feed the trolls.
On 9/21/05, Steve Holden <[EMAIL PROTECTED]> wrote:
Rudy Schockaert wrote:>> >> • Do think clearly before writing.
>> >> You should start thinking before you write something. Do you really> think anyone takes you serious the way you talk?> I haven't seen anything constru
I'm new to Python, not programming. I agree with the point regarding the interpreter. what is that? who uses that!? Why are most examples like that, rather than executed as .py files?
Another problem that I have (which does get annoying after awhile), is not using foo and bar. Spam and Eggs sucks
?
___/
/
__/
/
/
Ed Leafe
http://leafe.com/
http://dabodev.com/
Come to PyCon http://www.python.org/pycon/2005/
--
http://mail.python.org/mailman/listinfo/python-list
to incorporate as much as possible into the Python
code and imported packages, rather than relying on pipes to a bunch of
external programs.
Same question regarding SANE -- I can't seem to find the supposed PIL
support for SANE in the release on my system. Anyone know about that, or
alternat
Replying to my own post, this looks like a very promising tool:
"Pytiff is a library for using TIFF files and advanced imaging in Python."
http://pubweb.northwestern.edu/~omh221/software_projects/pytiff/pytiff.html
Ed Suominen wrote:
> I'd like to write a Python-based commandl
I will be providing a release and possibly read-only public access to the
SVN repository for the underlying code soon. It will be distributed under
the LGPL.
---
Ed Suominen
Registered Patent Agent
Open-Source Software Author (yes, both...)
Web Site: http://www.eepatents.com
Travis Oliphant wrote:
mport *" % modulename)
___/
/
__/
/
/
Ed Leafe
http://leafe.com/
http://dabodev.com/
Come to PyCon http://www.python.org/pycon/2005/
--
http://mail.python.org/mailman/listinfo/python-list
Matches any non-whitespace character; this is equivalent to the set [^
\t\n\r\f\v].
___/
/
__/
/
/
Ed Leafe
http://leafe.com/
http://dabodev.com/
Come to PyCon http://www.python.org/pycon/2005/
--
http://mail.python.org/mailman/listinfo/python-list
, NY, and might be interested in
the job, but man, that commute would be a pain! ;-)
___/
/
__/
/
/
Ed Leafe
http://leafe.com/
http://dabodev.com/
--
http://mail.python.org/mailman/listinfo/python-list
are my steps (gtk 2.4 was already
installed):
You could have saved yourself some grief with
http://wxpython.org/builddoc.php
___/
/
__/
/
/
Ed Leafe
http://leafe.com/
http://dabodev.com/
--
http://mail.python.org/mailman/listinfo/python-list
ith a database much, much
simpler.
Even though Dabo is still in development, I've used it to create an
app that helps me manage the archives of the technical email lists I
host (currently holding over a quarter-million rows).
___/
/
__/
/
/
Ed Leafe
http://leafe.
erver could not handle the request GET /."
Nah, it was my own doing. I was changing some things on the server,
and you must have hit the site just when I was restarting Zope. Try it
again.
___/
/
__/
/
/
Ed Leafe
http://leafe.com/
http://dabodev.com/
--
http://mail.python.
on' when it
comes from Doug, but it's a 'flame' when it is directed at Doug.
Unless there is something more substantial then whining, howzabout we
all just ignore it and let it die a quick death?
___/
/
__/
/
/
Ed Leafe
http://leafe.com/
http://dabodev.com/
--
http://mail.python.org/mailman/listinfo/python-list
elief that there is a good chance that we will reach a
critical mass where enough people are using the tool that it may become
a 'standard'.
___/
/
__/
/
/
Ed Leafe
http://leafe.com/
http://dabodev.com/
--
http://mail.python.org/mailman/listinfo/python-list
e coded them the wx-way, but I wanted to remove that
wxPython dependency, so I took a detour from the UI Designer to create
the menu classes. That's pretty much the pattern: things get written as
they are needed.
___/
/
__/
/
/
Ed Leafe
http://leafe.com/
http://d
ned into the UI designer, so that you can drag and drop
fields from the tables in the connection onto the design surface, and
create data-bound controls in one step.
___/
/
__/
/
/
Ed Leafe
http://leafe.com/
http://dabodev.com/
--
http://mail.python.org/mailman/listinfo/python-list
on before undertaking the writing of it myself.
___/
/
__/
/
/
Ed Leafe
http://leafe.com/
http://dabodev.com/
--
http://mail.python.org/mailman/listinfo/python-list
losely by those communities.
___/
/
__/
/
/
Ed Leafe
http://leafe.com/
http://dabodev.com/
--
http://mail.python.org/mailman/listinfo/python-list
ek of January. But we do have
our sights set pretty high.
___/
/
__/
/
/
Ed Leafe
http://leafe.com/
http://dabodev.com/
--
http://mail.python.org/mailman/listinfo/python-list
I imagined.
Thanks for the impetus to run this test.
___/
/
__/
/
/
Ed Leafe
http://leafe.com/
http://dabodev.com/
--
http://mail.python.org/mailman/listinfo/python-list
On Dec 29, 2004, at 3:38 PM, Rocco Moretti wrote:
So to summarize:
Commas define tuples, except when they don't, and parentheses are only
required when they are necessary.
Exactly! Now can we clear anything else up for you? ;-)
___/
/
__/
/
____/
Ed Leafe
http://leaf
ds to complete! I tried also passing the optional path to the
module, but it had no effect on the speed. Is this normal? Is there
anything I can do to improve performance?
I'm running Python 2.3.4 on Mac OS X 10.3.
___/
/
__/
/
/
Ed Leafe
http://leafe.com/
http://d
m/download.
___/
/
__/
/
/
Ed Leafe
http://leafe.com/
http://dabodev.com/
Come to PyCon http://www.python.org/pycon/2005/
--
http://mail.python.org/mailman/listinfo/python-list
me of that program? it was one
of the coolest things i've ever seen :)
SubEthaEdit (http://www.codingmonkeys.de/subethaedit/). And yes, it is
*very* cool.
___/
/
__/
/
/
Ed Leafe
http://leafe.com/
http://dabodev.com/
--
http://mail.python.org/mailman/listinfo/python-list
return [x for x in range(1,N-2) if not divmod(N,x)[1]]
---
Ed Suominen
Registered Patent Agent
Open-Source Software Author (yes, both...)
Web Site: http://www.eepatents.com
--
http://mail.python.org/mailman/listinfo/python-list
This will be very simple to most of you I guess but it's killing me!
print ("Please type in your age")
age = input ()
leave = 16
print ("You have" + leave - age + "years left at school")
I want to have an input where the users age is inserted and then subtracted
from the variable age which is s
clean interface? Preferably this would remain
accessible through a one-line import like ``from future import
standard_library``.
Thanks in advance for any ideas!
Best wishes,
Ed
--
Dr. Edward Schofield
(M) +61 (0)405 676 229
Python Charmers
http://pythoncharmers.com
--
https://mail.python.org/mailman/listinfo/python-list
does this already? Preferably open
source? If not, any resources you could bring to my attention? I' a complete
Newb!
Thanks for your help.
Ed
--
https://mail.python.org/mailman/listinfo/python-list
27;
cond = '' if bp.cond is None else ', ' + bp.cond
print("%s %s:%d%s" % (command, bp.file, bp.line, cond))
if not bp.enabled:
print("disable %d" % (bp_num))
if bp.ignore > 0:
print("ignore %d %d" % (bp_num, bp.ignore))
print('')
--
Ed Blackman
--
https://mail.python.org/mailman/listinfo/python-list
sheet page when they are online.
I would be happy to accept pull requests for additions or changes to the Py2/3
cheat-sheet. The source is here:
https://github.com/PythonCharmers/python-future/blob/master/docs/notebooks/Writing%20Python%202-3%20compatible%20code.ipynb
Best wishes,
Ed
--
I got an excel sheet having,2 blocks of data in 2 different formats, in any
given cell.
Lets take cell A1 for example, 1st block has font = Arial, character size =10
2nd block has font = Times New Roman, character size = 16 OR **no data**
sample: "abcd123
PQRS456"
A python code need to be dev
On Sep 5, 2011, at 8:33 AM, Simon Cropper wrote:
> Dabo is a great product. Spoke extensively with Ed Leafe and Paul McNett.
> Unfortunately the framework is not 'dynamic'. If you have an fixed database
> and tables it can quite quickly create a basic data entry setup and m
bizobjs for many-to-many relationships
- improved efficiency in detecting changed records
- added the dDatePicker control
- added the option of vertical text for grid headers
- integrated a code editor into the command window
You can grab the latest version, as always, from
http://dabo
d toward database applications, although a database connection is
completely optional. We wrap the wxPython GUI toolkit, hiding its C++ roots and
presenting a more Pythonic interface for creating your UI.
See more at http://dabodev.com, and feel free to ask any more
questions.
--
ike so: I want a button, I click and drag it to a window,
> give two clicks and encode their actions, understand?
Check out Dabo: http://dabodev.com
-- Ed Leafe (one of the authors)
--
http://mail.python.org/mailman/listinfo/python-list
= Test()
# Here's where the magic is needed
# so that the rest of this example works.
testInstance.normal()
-> 'normal', 'sample'
testInstance.dynamic()
-> 'dynamic', 'sample'
So? Am I nuts? Or is this possible?
-- Ed Leafe
-- http://leafe.com
-- http://dabodev.com
--
http://mail.python.org/mailman/listinfo/python-list
namic()
Thanks! I knew I had done this before. My mistake was that I was
setting the exec'd code to the instance, and not to the class. That
works, but makes it a function, which doesn't automatically get sent
the 'self' reference.
-- Ed Leafe
-- http://leafe.com
-- http://dabodev.com
--
http://mail.python.org/mailman/listinfo/python-list
u're correct - I hadn't noticed that, since all my tests
had single instances.
-- Ed Leafe
-- http://leafe.com
-- http://dabodev.com
--
http://mail.python.org/mailman/listinfo/python-list
still has a 'magical' feel to it!
-- Ed Leafe
-- http://leafe.com
-- http://dabodev.com
--
http://mail.python.org/mailman/listinfo/python-list
uld be for there to be a way for newbies to get heard
more easily.
Newbies were all quite recently nonPythonPeople, and as such have some
very valuable insights into what it is like being a normal,
nonPythonPerson.
They normally get told they aren't pythonic yet, or that they should
write a PEP
On 22/12/05, A.M. Kuchling <[EMAIL PROTECTED]> wrote:
> On Thu, 22 Dec 2005 14:05:08 +,
> Ed Singleton <[EMAIL PROTECTED]> wrote:
> >> Yes; I've long worried about this, but have no idea how to fix the
> >> problem. Python users large
Steven D'Aprano <[EMAIL PROTECTED]> wrote:
> I don't want to nit-pick all my way through the article, which
> is very decent and is worth reading, but I will say one more thing: you
> describe Python as "an expressive, interpreted language". Python is no
> more interpreted than Java. Like Java, it
Steven D'Aprano <[EMAIL PROTECTED]> wrote:
> I don't want to nit-pick all my way through the article, which
> is very decent and is worth reading, but I will say one more thing: you
> describe Python as "an expressive, interpreted language". Python is no
> more interpreted than Java. Like Java, it
It's my first time posting to the list so I hope I don't sound like an idiot!
The other day I was looking for a way to keep track of whether a user had
changed the contents of a Tk text widget. After a little bit of searching I
found edit_modified. This should let me get/set the modified flag o
value for his
> money...)
The only thing you really need to be happy is to find something you
enjoy doing and to do it. Money is definitely secondary to that. If
you have a chance to be paid for working in Python, then go for it;
even if you fail, you will have spent your days in a happy state.
Ed
--
http://mail.python.org/mailman/listinfo/python-list
this
reasonable, or am I being too simplistic in my approach?
-- Ed Leafe
-- http://leafe.com
-- http://dabodev.com
--
http://mail.python.org/mailman/listinfo/python-list
get a very accurate real-time monitoring system with
> this setup.
They aren't interested in real-time monitoring; their main concern
is Sarb-ox compliance.
Thanks for your help!
-- Ed Leafe
-- http://leafe.com
-- http://dabodev.com
--
http://mail.python.org/mailman/listinfo/python-list
; sessions, thus reducing privacy issues.
Thanks for the suggestions; I'll run them by the client. They don't
want to do it at the individual desktop level; they want a central
location to ensure that someone doesn't have the capability to
disable the logging, so
Diez B. Roggisch <[EMAIL PROTECTED]> wrote:
> Ah, you mean like in JAVA
Java is not an acronym. That is: it's "Java", not "JAVA".
> where the compiler prevents you from accessing
> private variables, but the runtime allows access to these very variables
> via reflection?
Java does not allow ac
Diez B. Roggisch <[EMAIL PROTECTED]> wrote:
>> Java is not an acronym. That is: it's "Java", not "JAVA".
>
> Now THAT was an important information RIGHT on topic.
It was not meant offensively.
>> Java does not allow access to private members via reflection.
>
> For somebody nitpicking on natur
Diez B. Roggisch <[EMAIL PROTECTED]> wrote:
> Which puts us to the next question: the sealing itself doesn't do
> anything to restrict the code, the SecurityManager does. Which AFAIK is
> something hooked into the VM. Now, I'm not on sure grounds here on how
> to altere its behaviour, but I'd sa
infidel <[EMAIL PROTECTED]> wrote:
> Where are they-who-hate-us-for-our-whitespace? Are "they" really that
> stupid/petty? Are "they" really out there at all? "They" almost sound
> like a mythical caste of tasteless heathens that "we" have invented.
> It just sounds like so much trivial nitpicke
diting. There is nothing
that prevents you from modifying a design in the editor of your
choice; the Dabo visual editing tools simply give you WYSIWYG
feedback as you edit.
-- Ed Leafe
-- http://leafe.com
-- http://dabodev.com
--
http://mail.python.org/mailman/listinfo/python-list
ginal object definition. So
you can edit your code in your favorite Python editor, and it all
just works.
-- Ed Leafe
-- http://leafe.com
-- http://dabodev.com
--
http://mail.python.org/mailman/listinfo/python-list
Paul Boddie <[EMAIL PROTECTED]> wrote:
> People who bring up stuff about self and indentation are just showing
> their ignorance
Ouch. That stings.
Python's "indentation determines scope" makes it hard for me to discuss
Python via mediums like IRC and instant messengers.
It also makes it hard t
#x27;s an alias for a list, I first unsub using the old
alias, and then re-sub with the new one.
-- Ed Leafe
-- http://leafe.com
-- http://dabodev.com
--
http://mail.python.org/mailman/listinfo/python-list
g with all the relevant settings in one place. As you change
them in the dialog, the design surface updates so that you can see
the effect of your changes before you commit them. If you don't like
your changes, click 'Cancel' and things return to the way they were
before
??ukasz Langa <[EMAIL PROTECTED]> wrote:
> Java was at 1.2 (and compiling Hello World took over 5 minutes)
Bullshit. Complete and utter bullshit.
--
http://mail.python.org/mailman/listinfo/python-list
cts break our
code. We will be focusing on making Dabo work with these later
wxPython versions in the coming weeks, but for now, you need to stick
with 2.6.
-- Ed Leafe
-- http://leafe.com
-- http://dabodev.com
--
http://mail.python.org/mailman/listinfo/python-list
ng out your GUI designs, as well as a simplified, more Pythonic
API than wxPython provides.
-- Ed Leafe
-- http://leafe.com
-- http://dabodev.com
--
http://mail.python.org/mailman/listinfo/python-list
to get
> the exact
> link).
http://mg.pov.lt/blog/profilehooks-1.0.html
Note that the license has been changed from GPL to MIT, making it
distributable with non-GPL projects.
-- Ed Leafe
-- http://leafe.com
-- http://dabodev.com
--
http://mail.python.org/mailman/listinfo/python-list
thors and several other helpful folks. You
can sign up for the dabo-users list at http://leafe.com/mailman/
listinfo/dabo-users.
-- Ed Leafe
-- http://leafe.com
-- http://dabodev.com
--
http://mail.python.org/mailman/listinfo/python-list
foundation for the ActiveStates business.
>
> An Open Source Komodo IDE would allow the several dynamic language
> communities to collaborate on a common goal.
If Komodo were to go open source, I would certainly consider it as
the basis for the Dabo IDE project.
-- Ed Leafe
--
101 - 200 of 378 matches
Mail list logo