Hey there,

Yes, the part of having the pyd modules built in in library is already
done. I followed the instructions in the README. What I would like to know
now is how to embed the non frozen python (py) modules. Can you guys please
point me in the right direction.

Thank you

On Sun, Jul 8, 2018 at 7:07 AM Nick Coghlan <ncogh...@gmail.com> wrote:

> On 8 July 2018 at 21:34, Paul Moore <p.f.mo...@gmail.com> wrote:
> > This question is probably more appropriate for python-list, but yes,
> > you certainly can do this. The "Embedded" distributions of Python for
> > Windows essentially do this already. IIRC, they are only available for
> > Python 3.x, so you may find you have some hurdles to overcome if you
> > have to remain on Python 2.7, but in principle it's possible.
> >
> > One further point you may need to consider - a proportion of the
> > standard library is in the form of shared C extensions (PYDs in
> > Windows - I don't know if you're using Windows or Unix from what you
> > say above). You can't (without significant extra work) load a binary
> > extension direct from a zip file, so you'll need to either do that
> > extra work (which is platform specific and fragile, I believe) or be
> > prepared to ship supporting DLLs alongside your application (this is
> > the approach the embedded distribution takes).
>
> That's the part of the problem that Alberto's static linking solves -
> all of the standard library's extension modules are top level ones (at
> least as far as I am aware), so we support building them as statically
> linked builtin modules instead (we just don't do it routinely, because
> we don't have any great desire to make the main executable even larger
> than it already is).
>
> Cheers,
> Nick.
>
> --
> Nick Coghlan   |   ncogh...@gmail.com   |   Brisbane, Australia
>


-- 
Alberto GarcĂ­a Illera

GPG Public Key: https://goo.gl/twKUUv
_______________________________________________
Python-ideas mailing list
Python-ideas@python.org
https://mail.python.org/mailman/listinfo/python-ideas
Code of Conduct: http://python.org/psf/codeofconduct/

Reply via email to