py2exe to generate dlls?

后端 未结 5 1409
暗喜
暗喜 2020-12-14 10:58

Is there a way using py2exe or some other method to generate dll files instead of exe files?

I would want to basically create a normal win32 dll with normal function

5条回答
  •  一整个雨季
    2020-12-14 11:39

    I think you could solve this by doing some hacking:

    • Take a look at the zipextimporter module in py2exe . It helps with importing pyd-files from a zip.
    • Using that, you might be able to load py2exe's output file in your own app/dll using raw python-api. (Use boost::python if you can and want)
    • And, since py2exe's outputfile is a zip, you could attach it at the end of your dll, making the whole thing even more integrated. (Old trick that works with jar-files too.)

    Not tested, but I think the theory is sound.

    Essentially, you reimplement py2exe's output executable's main() in your dll.

提交回复
热议问题