0
Toggling settings in Windows 10
I am creating a virtual assistant project. It is wholly based on Python. I've done some jobs like executing simple commands. But I was searching for how to toggle Windows settings like WiFi, Bluetooth, etc. using programming. Can it be done using Python or I have use something else for it?
3 Antworten
+ 2
Python allows you to access native APIs such as the C based Windows API. I'm not sure off hand if there is a package that wraps this API yet but if you take a look at the ctypes package in Python you'll see how you can do this.
+ 1
It can be done but you may need to use some C bindings for the Windows API.
0
can you explain it more please