send email with bcc

2012-11-30 Thread Ed
CC recipients, but not the BCC. Any help is very much appreciated. Thx, Ed . from email.mime.text import MIMEText from email.mime.image import MIMEImage from email.mime.application import MIMEApplication from email.mime.multipart import MIMEMultipart from smtplib import SMTP to = '

Re: send email with bcc

2012-11-30 Thread Ed
ou both for the quick responses!! ~Ed -- http://mail.python.org/mailman/listinfo/python-list

threads/sockets quick question.

2005-09-18 Thread ed
this script should create individual threads to scan a range of IP addresses, but it doesnt, it simple ... does nothing. it doesnt hang over anything, the thread is not being executed, any ideas anyone? -- import socket import threading import traceback MAX_THREADS = 50 class scanThrea

Re: threads/sockets quick question.

2005-09-19 Thread ed
import socket import threading import traceback class scanThread(threading.Thread): def run(self): try: ss = socket.socket(socket.AF_INET, socket.SOCK_STREAM) ss.connect((ip, port_counter)) print "%s | %d OPEN" % (ip, port_counter) ss.cl

how to list files with extension .txt in windows?

2004-12-02 Thread ed
hi I ahve a simple question and is new to python. I have a folder in windows that contains some .txt files. the fucntion that i want to do is whenever there is new directory created (say 249, thos enew directorys are always in numbers in 3 digit), i want to grap that 249 and the previous created on

Re: how to list files with extension .txt in windows?

2004-12-03 Thread ed
I do have permission toa ccess the file as that file is careted and read my me. I have read/write access to that location. regards Aaron Bingham <[EMAIL PROTECTED]> wrote in message news:<[EMAIL PROTECTED]>... > ed wrote: > > >I have used batch script to do it but it

learn from the masters of python and other languages, free

2014-11-17 Thread ed
Hey all, Wanted to let you know about a special opportunity for subscribers to this list.. I'm hosting a virtual conference called hack.summit() happening December 1-4, where you can learn from some of the best programmers in the world. An unprecedented line-up of programmers are speaking, in

Building Python with gdbm support

2005-06-05 Thread Ed
ipt? I have no idea what that does, or where I would call it, but the name of it sounds like it should be included? Thanks for any help, Ed -- http://mail.python.org/mailman/listinfo/python-list

Re: Building Python with gdbm support

2005-06-05 Thread Ed
;s an easier way, I'm all ears... :) Thanks, Ed -- http://mail.python.org/mailman/listinfo/python-list

Newbie question: how to get started?

2007-06-16 Thread ed
Hi, I'm interested in starting to learn python. I'm looking for any reccomendations or advice that I can use to get started. Looking forward to any help you can give! Thanks! -e -- http://mail.python.org/mailman/listinfo/python-list

Re: Newbie question: how to get started?

2007-06-16 Thread ed
I should also mention that I know C/C++, Perl, Javascript, the basics of mySQL, and HTML/CSS. If anyone has tried to enter python from these angles, I'd be grateful to hear from you. On 2007-06-16 22:48:32 -0400, ed <[EMAIL PROTECTED]> said: > Hi, > > I'm intere

Re: The Modernization of Emacs

2007-06-19 Thread Ed
an, so maybe you've seen things few others have. Have you ever seen an, "Extract method," function for emacs? Whereby you highlight some lines of code, press a key, and the code is whisked into its own method, with the appropriate method invocation left in its place. If yo

Re: The Modernization of Emacs

2007-06-20 Thread Ed
gwmf.shtml .ed -- www.EdmundKirwan.com - Home of The Fractal Class Composition -- http://mail.python.org/mailman/listinfo/python-list

Re: The best platform and editor for Python

2007-07-03 Thread ed
aunch code in the IDE, you have an inserted console etc. Oh and it's written in python :) ./ed -- http://mail.python.org/mailman/listinfo/python-list

Why can't I assign a class method to a variable?

2008-10-22 Thread ed
I'm trying to make a shortcut by doing this: t = Globals.ThisClass.ThisMethod Calling t results in an unbound method error. Is it possible to do what I want? I call this method in hundreds of locations and I'm trying to cut down on the visual clutter. Thank you! -- http://mail.python.org/ma

Message box always appears on 2nd monitor

2009-09-11 Thread ed
No matter what I do, the MessageBox always appears on the 2nd monitor. I've forced all the other widgets to monitor 1. I thought that creating a class and forcing the position would help, but it hasn't. I'm using Ubuntu Jaunty, python 2.6. Any ideas what I can do to force widgets to a specific

Re: Message box always appears on 2nd monitor

2009-09-14 Thread ed
Sean DiZazzo wrote: On Sep 11, 8:27 am, ed wrote: No matter what I do, the MessageBox always appears on the 2nd monitor. I've forced all the other widgets to monitor 1. I thought that creating a class and forcing the position would help, but it hasn't. I'm using Ubuntu Jau

Re: PEP8 79 char max

2013-07-29 Thread Ed Leafe
aracter limit, and as a result become much less readable. -- Ed Leafe -- http://mail.python.org/mailman/listinfo/python-list

Re: PEP8 79 char max

2013-07-29 Thread Ed Leafe
d back because I found I lost productivity switching from vim to a graphical text editor. -- Ed Leafe -- http://mail.python.org/mailman/listinfo/python-list

Re: Foxpro goto command and deleted records

2012-07-18 Thread Ed Leafe
ired up VFP, but the above doesn't sound correct. If you have SET DELETED OFF and the GOTO 7, the pointer should move to the 7th record, whether it is marked deleted or not. With SET DELETED ON, the pointer should not move, since 7 is not a valid record. -- Ed Leafe -- http://mail.python.org/mailman/listinfo/python-list

Re: Foxpro goto command and deleted records

2012-07-18 Thread Ed Leafe
s that with my dbf module it is > possible to create an index that does /not/ include certain records: Deleting a record in VFP doesn't remove it from the index; I believe it marks that index entry as deleted, too. I think that as long as you treat the deleted status as th

Re: Foxpro goto command and deleted records

2012-07-18 Thread Ed Leafe
ythonic as >> possible. >> > I disagree. I think that if you can see it should be able to go to it. The use case was a deleted record with SET DELETED ON, which means you shouldn't "see" it. -- Ed Leafe -- http://mail.python.org/mailman/listinfo/python-list

Re: dbf.py API question

2012-08-07 Thread Ed Leafe
ting from paradigms in other languages, I've often been tempted to follow the accepted pattern for that language, and I've almost always regretted it. When in doubt, make it as Pythonic as possible. -- Ed Leafe -- http://mail.python.org/mailman/listinfo/python-list

Re: Quickie - Regexp for a string not at the beginning of the line

2012-10-25 Thread Ed Morton
f producing the same output, but that's not the question you're asking. Ed. I want to search and modify. I dont wanna be tied to a specific language etc so I just want a regexp and as many versions as possible. Maybe I should try in emacs and so I am now posting to emacs groups also

Re: Quickie - Regexp for a string not at the beginning of the line

2012-10-26 Thread Ed Morton
pecific, you still can't say "here's an RE that does this", you've got to say "here's how to find this text using tool ". Ed. I guess, this requires the ability to ignore the CARAT as the beginning of the line. I am a satisfied custormer. No need for

Re: PEP 8 and extraneous whitespace

2011-07-21 Thread Ed Leafe
width because of vim. It doesn't take as long to get used to as you might think. -- Ed Sent from my iPhone, so please excuse any top-posting. On Jul 21, 2011, at 8:12 PM, Roy Smith wrote: > There are very few things I am absolutely religious about, but > programming in a fixed wi

Re: Abandoning Python

2011-05-22 Thread Ed Keith
Have you looked at Falcon (http://www.falconpl.org/)? It seems to have a lot of what you are looking for. I do not have much experience with it but I like what I've seen so far, except that there are not any third party tools or libraries libraries. Which is where Python shines. -Ed

Re: Kind of OT - Books on software development?

2011-05-25 Thread Ed Keith
I do not have my library with me, but I remember a book that fits the bill exactly, is was from Microsoft Press, I think it was called "Writing Solid Code" Hope this helps, -EdK Ed Keith e_...@yahoo.com Blog: edkeith.blogspot.com --- On Wed, 5/25/11, Matty Sarro wrote: >

Re: Kind of OT - Books on software development?

2011-05-25 Thread Ed Keith
--- On Wed, 5/25/11, Ed Keith wrote: > I do not have my library with me, but > I remember a book that fits the bill exactly, is was from > Microsoft Press, I think it was called "Writing Solid Code" I have done some research at amazon.com, and while "Writing Solid Cod

Re: How do you debug in Python? Coming from a Matlab and R user. I'm already aware of pdb.

2021-01-26 Thread Ed Leafe
into ipython if I need to run some quick code. For me, this is much faster than trying to write an additional program that is close enough to the problem code to be useful. -- Ed Leafe -- https://mail.python.org/mailman/listinfo/python-list

I need help with this python regex

2018-04-27 Thread Ed Manning
Here is the source code. import re log = open("csg.txt", "r") # Opens a file call session.txt regex = re.compile(r'policy id \d+') # search for the policy ID regex1 = re.compile(r'log count \d+') # search for the policy ID for match in log: x = regex.findall(match) y = regex1.findall(m

Re: Python web server weirdness

2018-06-07 Thread Ed Kellett
On 2018-06-07 14:32, Steven D'Aprano wrote: > I'm following the instructions here: > > https://docs.python.org/3/library/http.server.html > > > and running this from the command line as a regular unprivileged user: > > python3.5 -m http.server 8000 > > What I expected was a directory listing o

Re: Why exception from os.path.exists()?

2018-06-09 Thread Ed Kellett
On 2018-06-08 03:42, Chris Angelico wrote: > Apart from the one odd bug with SimpleHTTPServer not properly sending > back 500s, I very much doubt that the original concern - namely that > os.path.exists() and os.stat() raise ValueError if therels a %00 in > the URL - can be abused effectively. Dism

Re: Splitting up large python module impact on performance?

2018-06-13 Thread Ed Kellett
On 2018-06-13 05:24, Chris Angelico wrote: > Oh wait, your code isn't anything remotely sane. But for the rest of > us, large files aren't a problem. I don't like large files--I think mostly because files are an organisational tool, they're quite good at that job, and one might as well use them. B

Re: Does inspect.getstack work on other Python implementations?

2018-06-17 Thread Ed Kellett
On 2018-06-17 10:19, Steven D'Aprano wrote: > Anyone here use IronPython, Jython or PyPy? > > Does inspect.getstack always work? Is it considered an implementation > detail for CPython or something promised to work on any compliant > Python interpreter? > > I see that it doesn't even exist on Jyt

Re: syntax difference

2018-06-18 Thread Ed Kellett
On 2018-06-18 13:18, Chris Angelico wrote: > 1) Parse the code, keeping all the non-essential parts as well as the > essential parts. > 2) Find the comments, or find the annotations > 3) If comments, figure out if they're the ones you want to remove. > 4) Reconstruct the file without the bits you w

Re: syntax difference

2018-06-18 Thread Ed Kellett
are you someone's ironic 3rd-year art project signature.asc Description: OpenPGP digital signature -- https://mail.python.org/mailman/listinfo/python-list

Re: syntax difference

2018-06-19 Thread Ed Kellett
On 2018-06-19 11:21, Chris Angelico wrote: > Isn't it nice how comments, being terminated exclusively by > end-of-line, allow the introduction of subtle bugs? Let's see how many > people spot the (presumably deliberate) bug in Steve's code here. Hardly subtle. It does also make them considerably

Re: Static variables [was Re: syntax difference]

2018-06-23 Thread Ed Kellett
On 2018-06-23 06:21, Chris Angelico wrote: > Let's start finding all the edge cases that don't work, so I can work > on fixing them :) Very long functions (or, more specifically, functions with a very large number of consts) will likely prove annoying. signature.asc Description: OpenPGP digital

Re: Static variables [was Re: syntax difference]

2018-06-24 Thread Ed Kellett
From: Ed Kellett This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --Xw5fa1GFtucLPGBT1sLtLtUpmbraGkiYl Content-Type: multipart/mixed; boundary="lDyl22ZCUIEM3fl5YMnfJ3B8O9bwBCY9r"; protected-headers="v1" From: Ed Kellett To: python-list@python.org Message-ID: <

Re: variable scope in try ... EXCEPT block.

2018-07-12 Thread Ed Kellett
nce counting, general garbage collection, *and* nasty hacks like this, one could be forgiven for thinking Python has chosen the worst of all memory-management worlds. That said, in this case it's entirely livable-with once one knows about it. Unrelatedly, having stared at this email for

Re: variable scope in try ... EXCEPT block.

2018-07-12 Thread Ed Kellett
k subscoping is way more applicable: at least to me, it'd make all code more readable by default, because it'd tend to make namespaces emptier and therefore easier to hold in memory. Could we fix: for x in something: blah(lambda a: a + x) while we're at it? Also, since

Re: variable scope in try ... EXCEPT block.

2018-07-13 Thread Ed Kellett
On 2018-07-12 18:00, Chris Angelico wrote: > What do you mean by "fix"? Make the 'x' bind eagerly? That would break > basically every other use of closures. No. I mean make each x a new variable--closures would work as before, for-loops would change. If we have subscopes, it seems natural that ent

Re: Cult-like behaviour [was Re: Kindness]

2018-07-15 Thread Ed Kellett
On 2018-07-15 15:52, Steven D'Aprano wrote: > On Sun, 15 Jul 2018 14:17:51 +0300, Marko Rauhamaa wrote: > >> Steven D'Aprano : >> >>> On Sun, 15 Jul 2018 11:43:14 +0300, Marko Rauhamaa wrote: Paul Rubin : > I don't think Go is the answer either, but it probably got strings > right. W

Re: How to force "python -m site" ENABLE_USER_SITE to false?

2019-06-21 Thread Ed Leafe
Python ... or via a command line option > when starting a Python session? >From StackOverflow: >https://stackoverflow.com/questions/25584276/how-to-disable-site-enable-user-site-for-an-environment -- Ed Leafe -- https://mail.python.org/mailman/listinfo/python-list

Request help w/pip install jq

2020-07-19 Thread Ed Walser
d not build wheels for jq which use PEP 517 and cannot be installed directly -- Ed Walser e...@walseranalyticsconsulting.com 571.364.9618 -- https://mail.python.org/mailman/listinfo/python-list

Re: Which SQL module to use?

2005-10-04 Thread Ed Hotchkiss
I'm using MySQLdb. I use a FREE MySQL server at freesql.org. I also have an example class and some functions that use the module. even a simple script that turns a .cvs into a mysql table. contact me if interested.   -edward -- http://mail.python.org/mailman/listinfo/python-list

[ANN] Dabo 0.4.2 released!

2005-10-08 Thread Ed Leafe
o the wizard-generated apps, too. Needless to say, there have also been a few bug fixes. A list of all the changes follows my sig. You can grab the latest, as always, from http://dabodev.com/download. -- Ed Leafe -- http://leafe.com -- http://dabode

Re: UI toolkits for Python

2005-10-19 Thread Ed Jensen
Claudio Grondi <[EMAIL PROTECTED]> wrote: > I haven't seen any really platform-independent software yet and I don't > expect to see any in the future. > It is simply not possible to have one, even if much progress was done lately > in many areas in order to try to approach it as close as possible.

Re: UI toolkits for Python

2005-10-20 Thread Ed Jensen
Kenneth McDonald <[EMAIL PROTECTED]> wrote: > I'd have to agree with this. Unfortunately, the only way to use Swing > (in a > reasonable manner) from Python is to use Jython, and Jython has other > shortcomings that make me not want to use it. What shortcomings? -- http://mail.python.org/mailma

Re: Python vs Ruby

2005-10-21 Thread Ed Jensen
Sion Arrowsmith <[EMAIL PROTECTED]> wrote: > I have here a library (it's the client side of a client-server > interface including a pile of class definitions) which has > implementations in pure C++, Java and Python, taking about 3000, > 3500 and 1500 loc respectively. And there's an associated mod

Re: Python vs Ruby

2005-10-21 Thread Ed Jensen
Bryan <[EMAIL PROTECTED]> wrote: > i would not say sion's ratio of 5:1 is dubious. for what it's worth, i've > written i pretty complex program in jython over the last year. jython > compiles > to java source code and the number of generated java lines to the jython > lines > is 4:1. Most c

testing for modules?

2005-10-25 Thread Ed Hotchkiss
i have a generic script that is using several modules on windows and linux boxes. i need to have the scripts test if a module is installed, and then if not - then to install the module. can anyone give me a headsup on how to test for a module, returning something to indicate whether or not it is in

Re: Rename files with numbers

2005-11-01 Thread Ed Singleton
rint fname As you can see, I use the path module rather than os.path. it's a much more intuitive way of handling files. http://www.jorendorff.com/articles/python/path/ Ed On 01/11/05, Dave Benjamin <[EMAIL PROTECTED]> wrote: > On Mon, 31 Oct 2005, Micah Elliott wrote: > > >

Re: WTF?

2005-11-01 Thread Ed Hotchkiss
happens to me too. -- http://mail.python.org/mailman/listinfo/python-list

Re: Python's website does a great disservice to the language

2005-11-02 Thread Ed Singleton
elopers point of view it's a badly made website. Ed On 01/11/05, CppNewB <[EMAIL PROTECTED]> wrote: > I was trying to advocate using Python for an upcoming prototype, so my boss > went out to take a look at the documentation and try and get a feel for what > the language is al

Re: how to modify code while debugging it without having to stop and then restart debugger

2005-11-10 Thread Ed Singleton
ven't needed these features as much (though I still would have liked to have them available). Ed On 08/11/05, python <[EMAIL PROTECTED]> wrote: > hello and thanks for reading this, > > i have been a dos/windows user using some form of the basic language for 30 > years

Re: Python obfuscation

2005-11-16 Thread Ed Jensen
Steven D'Aprano <[EMAIL PROTECTED]> wrote: > I'm not sure if that is meant to be a rhetorical > question or not, but something of the order of 95% of > all software written is never distributed to others, > and so copyright or the lack of copyright is not an issue. Can you cite your source(s) f

Re: wxPython Licence vs GPL

2005-11-23 Thread Ed Jensen
Paul Boddie <[EMAIL PROTECTED]> wrote: > That would be "free as in freeloading", right? (And no, I'm not > intending to start a licensing flame war with that remark, but I think > it's inappropriate to ignore central licensing concepts such as > end-user freedoms, and then to make sweeping statemen

Re: wxPython Licence vs GPL

2005-11-23 Thread Ed Jensen
Paul Boddie <[EMAIL PROTECTED]> wrote: > It's interesting that you bring this tired thought experiment up in the > context of the original remark: "Its license is far more "free" than > GPL is." If we were focusing on the "vox pop" interpretation of the > word "free", that remark wouldn't make any

Re: wxPython Licence vs GPL

2005-11-23 Thread Ed Jensen
Grow up, Steven. -- http://mail.python.org/mailman/listinfo/python-list

Re: wxPython Licence vs GPL

2005-11-24 Thread Ed Jensen
Paul Boddie <[EMAIL PROTECTED]> wrote: >> I'm aware of this concern. I don't think it's justified. Unless >> you'd like to point out all those closed, proprietary Python >> implementations that are destroying civilization as we know it. > Well, there was some concern voiced at EuroPython that a

Re: wxPython Licence vs GPL

2005-11-25 Thread Ed Jensen
Paul Boddie <[EMAIL PROTECTED]> wrote: > We'll have to wait and see what happens. There's a risk that versions > of Python with different semantics or characteristics to the original > could cause the development of parallel communities, instead of > everyone working on/with the same project. The "

Re: wxPython Licence vs GPL

2005-11-25 Thread Ed Jensen
Christophe <[EMAIL PROTECTED]> wrote: > If you don't like the GPL, then by all means, *do not use GPL code !* > > Please, I mean, when you use without authorisation some code in your > project, you are in trouble, no matter what licence the code was using. I'm not sure why you felt compelled to

Re: wxPython Licence vs GPL

2005-11-25 Thread Ed Jensen
Paul Rubin wrote: > Python and *BSD are getting far less volunteer development love than, > say, GCC or Linux, and the licensing is at least part of the reason. I disagree. I believe *BSD gets less volunteer development because of some legal wrangling in the early 90s t

ANN: Dabo 0.5 released!

2005-11-30 Thread Ed Leafe
eport Designer continues to improve: it now has an integrated Property Sheet for altering the appearance of objects, as well as improved layering. It also supports full 2-way editing: both visual and XML editing changes are reflected in the other. -- Ed Leafe -- http://leafe.com -- http://dabodev.

Re: General question about Python design goals

2005-12-01 Thread Ed Singleton
aybe you need better underwear? http://www.google.co.uk/search?q=skid+marks+slang Sorry to lower the tone. Ed -- http://mail.python.org/mailman/listinfo/python-list

Re: ANN: Dao Language v.0.9.6-beta is release!

2005-12-04 Thread Ed Leafe
ence. Just don't make general damning comments without any specifics to back them up. -- Ed Leafe -- http://leafe.com -- http://dabodev.com -- http://mail.python.org/mailman/listinfo/python-list

Re: ANN: Dao Language v.0.9.6-beta is release!

2005-12-04 Thread Ed Leafe
ype 5. You hit backspace, which deletes 4 spaces, and you now have to mentally compute the difference in order to keep things aligned. See, I can make up bizarre scenarios where spaces cause problems, too. -- Ed Leafe -- http://leafe.com -- http://dabodev.com -- http://mail.pyth

Re: ANN: Dao Language v.0.9.6-beta is release!

2005-12-05 Thread Ed Leafe
On Dec 5, 2005, at 3:13 PM, Paul McNett wrote: > Indeed, there is only one user interface that needs no > documentation whatsoever. Yeah, and it sucks! ;-) -- Ed Leafe -- http://leafe.com -- http://dabodev.com -- http://mail.python.org/mailman/listinfo/python-list

Re: Is it possible to open a dbf

2005-01-03 Thread Ed Leafe
ch as auto-increment fields and BLOB support that were never even envisioned by the folks at JPL when they created Vulcan. As a result, there is no single DBF reader that can read all DBF files. ___/ / __/ / / Ed Leafe http://leafe.com/ http://dabodev.com/ -- http://mail.python.o

Re: Port blocking

2005-01-10 Thread Ed Leafe
Right now you still have to do all the UI stuff in code, but we're just starting to develop the visual UI Designer. Stay tuned! ___/ / __/ / / Ed Leafe http://leafe.com/ http://dabodev.com/ -- http://mail.python.org/mailman/listinfo/python-list

Dabo 0.3 Released

2005-01-10 Thread Ed Leafe
ews of changes. The editor can now toggle word wrap, jump to any line in the file, and comment/uncomment blocks of code. Dabo Demo: There's now a MineSweeper game - written in Dabo, of course! All of the other demos have been updated to work with the changes in the rest of the framework.

py2exe Excludes

2005-01-12 Thread Ed Leafe
= ["daborun.py"], #exclude the actual framework options = { "py2exe": {"excludes" : ["dabo"]} }, ) Yet the generated library.zip still contains all of the Dabo module code. Why is this? What am I doing wrong? ___/ / __/

Re: wxPython and CheckListBox

2005-01-13 Thread Ed Leafe
might want to try is to create a StaticBoxSizer with the label you want, and add the checkbox to that sizer. Then add the StaticBoxSizer to the panel's layout instead of the checkbox. ___/ / __/ / / Ed Leafe http://leafe.com/ http://dabodev.com/ -- http://mail.python.o

Re: py2exe Excludes

2005-01-13 Thread Ed Leafe
27;t realize that it would still pull those things in there. I wiped out the build directory and re-ran setup, and it's now what I expected. Thanks! ___/ / __/ / / Ed Leafe http://leafe.com/ http://dabodev.com/ -- http://mail.python.org/mailman/listinfo/python-list

Dabo Windows Runtime 0.3 Available

2005-01-13 Thread Ed Leafe
alled as source code, so not only can you look at the code to see what's going on, you can also update it as new releases are made without having to re-install anything. The Dabo Runtime installer is available from our Download page: http://dabodev.com/download. Enjoy! ___/ /

Re: Newbie inheritance question.

2005-01-16 Thread Ed Leafe
lass's __init__. ___/ / __/ / / Ed Leafe http://leafe.com/ http://dabodev.com/ -- http://mail.python.org/mailman/listinfo/python-list

Re: Native widgets for Python

2005-01-17 Thread Ed Leafe
irst reason is by far the more important of the two, but an eventual goal for Dabo post-1.0 release (we're at 0.3 now!) will be to allow TkInter and other toolkits to be used as well. ___/ / __/ / / Ed Leafe http://leafe.com/ http://dabodev.com/ -- http://mail.python.

Re: wx.BoxSizer problem

2005-01-21 Thread Ed Leafe
. ___/ / __/ / / Ed Leafe http://leafe.com/ http://dabodev.com/ -- http://mail.python.org/mailman/listinfo/python-list

Re: Tkinter vs wxPython

2005-01-27 Thread Ed Leafe
l to bring Python UI development up to level available to other languages. ___/ / __/ / / Ed Leafe http://leafe.com/ http://dabodev.com/ -- http://mail.python.org/mailman/listinfo/python-list

Re: extreme newbie

2005-06-18 Thread Ed Jensen
Grant Edwards <[EMAIL PROTECTED]> wrote: >> I've guessed that python is purely an interpreted language unless its >> compiled into another language (ie. it needs python installed in order >> to run programs). Is this correct? > > It's just like Java. It's compiled into bytecode and then the > byt

Re: extreme newbie

2005-06-18 Thread Ed Jensen
Renato Ramonda <[EMAIL PROTECTED]> wrote: > The only system (apart from solaris, I guess) that has a JVM by default > is OSX, and it's _NOT_ sun's one, but the internally developed one. Apple licenses Sun's JVM and makes the modifications necessary to run it on OSX. I know I'm being a pedant, bu

Re: Python exception hook simple example needed

2005-07-06 Thread Ed Leafe
re actively working on Dabo and improving it all the time. ___/ / __/ / / Ed Leafe http://leafe.com/ http://dabodev.com/ -- http://mail.python.org/mailman/listinfo/python-list

Re: Do a "Python beginners e-mail list" exist?

2005-07-07 Thread Ed Leafe
ng to help walk you through the learning process. And with your database programming background, you're sure to fit in with a Fox-flavored crowd! ___/ / __/ / / Ed Leafe http://leafe.com/ http://dabodev.com/ -- http://mail.python.org/mailman/listinfo/python-list

Re: Python exception hook simple example needed

2005-07-07 Thread Ed Leafe
much easier, and so much more Pythonic. ___/ / __/ / / Ed Leafe http://leafe.com/ http://dabodev.com/ -- http://mail.python.org/mailman/listinfo/python-list

Re: Python vs. Access VBA

2005-07-17 Thread Ed Leafe
atabases, such as PostgreSQL, MySQL and Firebird that can handle large data sets without getting stuck with huge license fees. ___/ / __/ / / Ed Leafe http://leafe.com/ http://dabodev.com/ -- http://mail.python.org/mailman/listinfo/python-list

Re: Wheel-reinvention with Python

2005-07-30 Thread Ed Leafe
C++ code of wxWidgets.  Thanks for the vote of encouragement!    Our goal isn't to muddy the waters; it is simply to create a consistent API for coding. There is already a great GUI toolkit for Python; we're just trying to make it easier to code. -- Ed Leafe -- http://leafe.com -- http:

Re: The state of OO wrappers on top of wxPython (was Re: Wheel-reinvention with Python)

2005-07-30 Thread Ed Leafe
Dabo has not wrapped, primarily the lower-level drawing classes and some of the newer graphics classes, mainly because they weren't needed for a database application framework. However, if there's a need, we'll be glad to add it. -- Ed Leafe -- http://leafe.com -- http://dabodev.com -- http://mail.python.org/mailman/listinfo/python-list

Re: The state of OO wrappers on top of wxPython (was Re: Wheel-reinvention with Python)

2005-07-30 Thread Ed Leafe
w, tying in ReportLab. -- Ed Leafe -- http://leafe.com -- http://dabodev.com -- http://mail.python.org/mailman/listinfo/python-list

Re: The state of OO wrappers on top of wxPython (was Re: Wheel-reinvention with Python)

2005-07-30 Thread Ed Leafe
there that could generate the image, which Dabo could then display. -- Ed Leafe -- http://leafe.com -- http://dabodev.com -- http://mail.python.org/mailman/listinfo/python-list

Re: Dabo in 30 seconds?

2005-07-30 Thread Ed Leafe
On Saturday 30 July 2005 21:16, EP wrote: > Ed Leafe wrote in response to the "Python vs. Access VBA" thread: > > You might want to look at Dabo, which is a database application > > framework for Python. In about 30 seconds you can create an application > > that q

Re: Dabo in 30 seconds?

2005-07-30 Thread Ed Leafe
thon is a base. You build from there. -- -- Ed Leafe -- http://leafe.com -- http://dabodev.com -- http://mail.python.org/mailman/listinfo/python-list

Re: Wheel-reinvention with Python

2005-07-31 Thread Ed Leafe
I don't think that this is a sign that we should discourage further work with wxPython. -- Ed Leafe -- http://leafe.com -- http://dabodev.com -- http://mail.python.org/mailman/listinfo/python-list

Re: Wheel-reinvention with Python

2005-07-31 Thread Ed Leafe
le one at a time, and after looking at them all and considering different issues, we chose wxPython as the best toolkit for creating platform-independent apps. -- -- Ed Leafe -- http://leafe.com -- http://dabodev.com -- http://mail.python.org/mailman/listinfo/python-list

Re: Wheel-reinvention with Python

2005-07-31 Thread Ed Leafe
cult for you, fine. But I don't think it's fair to insist that everyone else follow your particular preferences in Python. The only one who gets to do that is Guido, and he's already endorsed wxPython, and that's good enough for me and most of the Python community. -- Ed

Re: Wheel-reinvention with Python

2005-07-31 Thread Ed Leafe
iscussed the possibility, but he didn't seem to feel that it would worth it to him. He works on Wax as he needs to, and is kind enough to share his work with the rest of us. It certainly isn't his main focus, though. -- Ed Leafe -- http://leafe.com -- http://dabodev.com -- http://mail.python.org/mailman/listinfo/python-list

Re: Wheel-reinvention with Python

2005-07-31 Thread Ed Leafe
team B, team C ... ? FWIW, we view errors that occur in Dabo as our responsibility. We've had several reported that were our fault, and we corrected them. Others were the result of underlying bugs in wxPython, and we reported them to Robin, who quickly fixed them. -- Ed Leafe -- http://

Re: Wheel-reinvention with Python

2005-07-31 Thread Ed Leafe
On Sunday 31 July 2005 15:48, Kay Schluehr wrote: > Ed promised to support many GUI toolkits I promised nothing of the sort. I said that we had designed our UI layer to be toolkit-agnostic, with the design goal of making choice of UI toolkit irrelevant. I also said that we recognize the sh

Re: Wheel-reinvention with Python

2005-07-31 Thread Ed Leafe
. ;-) Oh, and that includes a full menu, too. -- Ed Leafe -- http://leafe.com -- http://dabodev.com -- http://mail.python.org/mailman/listinfo/python-list

  1   2   3   4   >