How should I learn to use the Windows API with Python?

前端 未结 12 1213
迷失自我
迷失自我 2020-12-07 10:52

I have very little experience building software for Windows, and zero experience using the Windows API, but I\'m reasonably familiar with Python. How should I go about learn

12条回答
  •  长情又很酷
    2020-12-07 11:27

    " > free resource to learn how to use the windows API (preferably with python)

    1. You may refer Python Programming on Win32 by Mark Hammond and Andy Robinson along with pywin32.

    2. If you are not interested to use pywin32, you can use ctypes — A foreign function library for Python and the Forger's Win32 API Programming Tutorial.

    3. Refer Example Code : Shared Memory with Mutex (pywin32 and ctypes)

提交回复
热议问题