Re: Is Django v1.3 documentation the newest version?

2012-07-02 Thread Jonathan Harris
Hello

It isn't
Having been frustrated with out of date books, specifically the Apress
published 'Definitive Guide To Django', I've downloaded the Kindle edition
of Django 1.4 documentation
It's a good tutorial

J

On Mon, Jul 2, 2012 at 11:00 AM, levi nie  wrote:

> Is  Django v1.3 documentation the newest version?
> i use the Django book 2.0.
>
> --
> http://mail.python.org/mailman/listinfo/python-list
>
>
-- 
http://mail.python.org/mailman/listinfo/python-list


Re: running python from a memory stick?

2006-07-13 Thread Jonathan Harris
John Salerno wrote:
> Is there a way to 'install' and use Python on a memory stick
...
 > and then just write and run scripts normally straight from
> your memory stick?

Do you actually want a full python environment? Or do you just want an 
easy way to run your scripts on another machine?

If the latter, then look at http://www.py2exe.org/ - "convert python 
scripts into standalone windows programs".

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


Re: I need some help

2006-07-12 Thread Jonathan Harris
Tim Heaney wrote:
> Several different people have written modules to help you read (and
> write) ID3 tags.

On a related topic, I have a Perl module that reads MP4/AAC tags -
http://search.cpan.org/~jhar/MP4-Info/ - that I'm considering porting to 
Python.

But before I start, is anyone aware of an existing Python module to read 
MP4/AAC tags?

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


Re: Py2exe make wxPython window looks bad

2006-07-04 Thread Jonathan Harris
Ray wrote:
> http://wiki.wxpython.org/index.cgi/FAQ#head-4cc058aed6216dd200d55a6e4c077ccbe82bd142


Here's a trick that embeds the manifest into the executable (which is a 
little cleaner) and adds meta info.


1. Add this to the top of your setup.py. Supply your application's name, 
version number and description as appname, appversion and appdescrip:

manifest=('\n'+
   '\n'+
   '\n'+
   '%s.\n' % appdescrip +
   '\n'+
   '\n'+
   '\n'+
   '\n'+
   '\n'+
   '\n')


2. Within your setup routine, change your 'windows' entry to:

windows = [{'script': 'mainframe.py',
 'other_resources': [(24,1,manifest)],
 }],


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