Re: Create a GUI and EXE for a python app?

2010-10-28 Thread bradenf
Thanks ill give it a try! Anyone know about the GUI then?

--Original Message--
From: Chris Rebert
Sender: ch...@rebertia.com
To: Braden Faulkner
Cc: python-list@python.org
Subject: Re: Create a GUI and EXE for a python app?
Sent: Oct 28, 2010 5:04 PM

On Thu, Oct 28, 2010 at 1:53 PM, Braden Faulkner  wrote:
> Having trouble with my mail client, so sorry if this goes through more than
> once.
> I'm worknig on a simple math program as my first application. I would like
> to make a cross-platform pretty GUI for it and also package it up in a EXE
> for distribution on Windows.
> What are the best and easiest ways I can do this?

For the latter, py2exe:
http://www.py2exe.org/

Cheers,
Chris



Sent wirelessly from my BlackBerry.
-- 
http://mail.python.org/mailman/listinfo/python-list


Re: Create a GUI and EXE for a python app?

2010-10-28 Thread bradenf
Thanks what is there to learn about each gui tools? 

--Original Message--
From: Alex Hall
To: brad...@hotmail.com
Cc: python-list@python.org
Subject: Re: Create a GUI and EXE for a python app?
Sent: Oct 28, 2010 5:49 PM

There is tkinter or WX for a gui solution. I use wx just because I
already know it and it does what I need it to do, so I see no reason
to switch to a different library to do the same thing.

On 10/28/10, brad...@hotmail.com  wrote:
> Thanks ill give it a try! Anyone know about the GUI then?
>
> --Original Message--
> From: Chris Rebert
> Sender: ch...@rebertia.com
> To: Braden Faulkner
> Cc: python-list@python.org
> Subject: Re: Create a GUI and EXE for a python app?
> Sent: Oct 28, 2010 5:04 PM
>
> On Thu, Oct 28, 2010 at 1:53 PM, Braden Faulkner 
> wrote:
>> Having trouble with my mail client, so sorry if this goes through more
>> than
>> once.
>> I'm worknig on a simple math program as my first application. I would like
>> to make a cross-platform pretty GUI for it and also package it up in a EXE
>> for distribution on Windows.
>> What are the best and easiest ways I can do this?
>
> For the latter, py2exe:
> http://www.py2exe.org/
>
> Cheers,
> Chris
>
>
>
> Sent wirelessly from my BlackBerry.
> --
> http://mail.python.org/mailman/listinfo/python-list
>


-- 
Have a great day,
Alex (msg sent from GMail website)
mehg...@gmail.com; http://www.facebook.com/mehgcap



Sent wirelessly from my BlackBerry.
-- 
http://mail.python.org/mailman/listinfo/python-list


Re: Land Of Lisp is out

2010-10-28 Thread bradenf
Sounds interesting

--Original Message--
From: Lawrence D'Oliveiro
Sender: python-list-bounces+bradenf=hotmail@python.org
To: Python List
Subject: Re: Land Of Lisp is out
Sent: Oct 28, 2010 7:34 PM

In message 
, kodifik 
wrote:

> On Oct 28, 1:55 am, Lawrence D'Oliveiro 
> wrote:
>
>> Would it be right to say that the only Lisp still in common use is the
>> Elisp built into Emacs?
> 
> Surely surpassed by autolisp (a xlisp derivative inside the Autocad
> engineering software).

How many copies of AutoCAD are there? Given its price, probably something in 
the five or six figures at most.
-- 
http://mail.python.org/mailman/listinfo/python-list



Sent wirelessly from my BlackBerry.
-- 
http://mail.python.org/mailman/listinfo/python-list


Re: Discussion board software?

2010-10-28 Thread bradenf
Not that I'm aware of 

--Original Message--
From: Gnarlodious
Sender: python-list-bounces+bradenf=hotmail@python.org
To: Python List
Subject: Discussion board software?
Sent: Oct 28, 2010 9:12 PM

Is there such a thing as website discussion board software written in
Python?
-- 
http://mail.python.org/mailman/listinfo/python-list



Sent wirelessly from my BlackBerry.
-- 
http://mail.python.org/mailman/listinfo/python-list


Re: Python 2.7 or 3.1

2010-10-30 Thread bradenf
I agree +1
Sent wirelessly from my BlackBerry.

-Original Message-
From: Lawrence D'Oliveiro 
Sender: python-list-bounces+bradenf=hotmail@python.org
Date: Sun, 31 Oct 2010 13:30:38 
To: 
Subject: Re: Python 2.7 or 3.1

In message , Christian 
Heimes wrote:

> Am 29.10.2010 23:16, schrieb Lawrence D'Oliveiro:
>
>> In message , Jorge
>> Biquez wrote:
>> 
>>> I was wondering if you can comment more about what alternatives to
>>> use instead to MySql. My web solutions do not need "all the power" of
>>> a true database,
>> 
>> Is more than one process likely to access the data at the same time? If
>> so, use MySQL.
> 
> You have to store and acces a LOT of data? Hadoop may the solution.

I don’t think the OP is quite at the level where they need to think in terms 
of something as heavy-hitting as that.

I suggested MySQL because that’s the usual thing people start with for a 
multiuser situation, unless/until they decide they need something more.
-- 
http://mail.python.org/mailman/listinfo/python-list
-- 
http://mail.python.org/mailman/listinfo/python-list


Re: How to write pbm file in Python 3?

2010-10-30 Thread bradenf
Sorry for the newb question but, what would this be for?

Just out of curiousuty 
Thanks 

--Original Message--
From: André
Sender: python-list-bounces+bradenf=hotmail@python.org
To: Python List
Subject: How to write pbm file in Python 3?
Sent: Oct 30, 2010 11:32 PM

I'm trying to create pbm (portable bitmap) files using Python 3 and
have run into a problem.   The example I am using is the Python 2
Mandelbrot program found at
http://shootout.alioth.debian.org/u32/program.php?test=mandelbrot&lang=python&id=1

When I run it using Python 2 with size=100, I get a file of size 1311
bytes.  This file contains the correct image.

When I run it using Python 3 with the same parameter (and replacing
xrange by range - the only change suggested by 2to3), I get a file of
size 1812 bytes; this file does not contain the right image.

Any help would be much appreciated.

André

-- 
http://mail.python.org/mailman/listinfo/python-list



Sent wirelessly from my BlackBerry.
-- 
http://mail.python.org/mailman/listinfo/python-list


Re: [Beginer Question] I heard about python needing some sort of_VariableName_ boiler plate?

2010-10-31 Thread bradenf
Sorry, to clarify I heard that when you declare a variable in python you have 
to use some sort of standard boiler plate _variable_ however this has not been 
my experience using IDLE so is this even true?

Thanks!

--Original Message--
From: Chris Rebert
Sender: ch...@rebertia.com
To: Braden Faulkner
Cc: Python List
Subject: Re: [Beginer Question] I heard about python needing some sort 
of_VariableName_ boiler plate?
Sent: Oct 31, 2010 11:18 PM

On Sun, Oct 31, 2010 at 7:09 PM, Braden Faulkner  wrote:
> I heard about python needing some sort of _VariableName_ boiler plate?
> Can anyone explain to me how this works, I don't seem to have to do it in
> IDLE?

Your question is extremely vague. Please give more details.

Regards,
Chris



Sent wirelessly from my BlackBerry.
-- 
http://mail.python.org/mailman/listinfo/python-list


Would you recommend python as a first programming language?

2010-11-01 Thread bradenf
I was thinking of recommending this to a friend but what do you all think?

Thanks!

Sent wirelessly from my BlackBerry.
-- 
http://mail.python.org/mailman/listinfo/python-list


Re: [Beginer Question] I heard about python needing somesort of_VariableName_ boiler plate?

2010-11-01 Thread bradenf
Sorry that is what I mean. What is it for?
Sent wirelessly from my BlackBerry.

-Original Message-
From: MRAB 
Sender: python-list-bounces+bradenf=hotmail@python.org
Date: Mon, 01 Nov 2010 17:33:22 
To: 
Reply-To: python-list@python.org
Subject: Re: [Beginer Question] I heard about python needing some
sortof_VariableName_ boiler plate?

On 01/11/2010 04:51, Ben Finney wrote:
> brad...@hotmail.com writes:
>
>> Sorry, to clarify I heard that when you declare a variable in python
>> you have to use some sort of standard boiler plate _variable_ however
>> this has not been my experience using IDLE so is this even true?
>
> I don't know what “some sort of boiler plate _variable_” might mean.
>
> Can you point to someone's actual message saying this, so we can see
> what they might be talking about?
>
Perhaps the OP means:

 if __name__ == "__main__":
 ...

although the "declare a variable" bit has me puzzled.
-- 
http://mail.python.org/mailman/listinfo/python-list
-- 
http://mail.python.org/mailman/listinfo/python-list