Re: How to make a python file to a DLL?

2006-11-16 Thread Larry Bates
many_years_after wrote: > Any solution? > > Thanks. > You can certainly make python program/function into a COM object which can be called from other languages quite easily and I think is the more preferred method in newer software. py2exe has examples of creating COM objects. -Larry -- http:/

Re: How to make a python file to a DLL?

2006-11-16 Thread Diez B. Roggisch
many_years_after schrieb: > Any solution? http://wiki.python.org/moin/elmer -- http://mail.python.org/mailman/listinfo/python-list

Re: How to make a python file to a DLL?

2006-11-16 Thread Fredrik Lundh
many_years_after wrote: > Any solution? python modules are usually shipped in ZIP archives, not DLLs. if you really need a DLL, you can use "freeze" and some custom hacking. or bytecode resources, and some more custom hacking. -- http://mail.python.org/mailman/listinfo/python-list

How to make a python file to a DLL?

2006-11-16 Thread many_years_after
Any solution? Thanks. -- http://mail.python.org/mailman/listinfo/python-list