Re: can python import class or module directly from a zip package

2009-03-12 Thread Coonay
On Mar 11, 9:47 pm, Lorenzo  wrote:
> On Mar 10, 2:13 pm, Flank  wrote:
>
> > can python import class or  module directly from  a zip package ,just
> > like jave does from jar package without extracting the class file into
> > directory
>
> > so far as i know ,python module should be unzip to file system in
> > order to use them,
>
> After a little digging/googling, the answer came right from the docs:
>
> http://docs.python.org/library/zipimport.html
>
> I think that this module is just right what you need.
>
> Cheers!

thanks  you 2 guys
--
http://mail.python.org/mailman/listinfo/python-list


Re: can python import class or module directly from a zip package

2009-03-11 Thread Gabriel Genellina

En Wed, 11 Mar 2009 11:47:54 -0200, Lorenzo  escribió:

On Mar 10, 2:13 pm, Flank  wrote:



can python import class or  module directly from  a zip package ,just
like jave does from jar package without extracting the class file into
directory

so far as i know ,python module should be unzip to file system in
order to use them,


After a little digging/googling, the answer came right from the docs:

http://docs.python.org/library/zipimport.html

I think that this module is just right what you need.


Note that you don't have to do anything special to use zipimport; it's  
enabled by default.
Just make sure your zip file name is present in sys.path, as if it were a  
directory.


--
Gabriel Genellina

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


Re: can python import class or module directly from a zip package

2009-03-11 Thread Lorenzo
On Mar 10, 2:13 pm, Flank  wrote:
> can python import class or  module directly from  a zip package ,just
> like jave does from jar package without extracting the class file into
> directory
>
> so far as i know ,python module should be unzip to file system in
> order to use them,

After a little digging/googling, the answer came right from the docs:

http://docs.python.org/library/zipimport.html

I think that this module is just right what you need.

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


Re: [!! SPAM] can python import class or module directly from a zip package

2009-03-10 Thread Seairth Jacobs

Flank wrote:

can python import class or  module directly from  a zip package ,just
like jave does from jar package without extracting the class file into
directory

so far as i know ,python module should be unzip to file system in
order to use them,
--
http://mail.python.org/mailman/listinfo/python-list

  

See http://peak.telecommunity.com/DevCenter/PythonEggs.

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


Re: can python import class or module directly from a zip package

2009-03-10 Thread Stefan Behnel
Flank wrote:
> can python import class or  module directly from  a zip package

Yes, just put the .zip file into your PYTHONPATH.

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


can python import class or module directly from a zip package

2009-03-10 Thread Flank
can python import class or  module directly from  a zip package ,just
like jave does from jar package without extracting the class file into
directory

so far as i know ,python module should be unzip to file system in
order to use them,
--
http://mail.python.org/mailman/listinfo/python-list