als Newbie habe ich gerade meine Probleme mit Python.
Ich versuche eine externe Api einzubinden.
Der Code:
Code: Alles auswählen
import ctypes
NETZApi = ctypes.cdll.LoadLibrary ("NetApi.Netz")
Die Variante"Modul nicht gefunden"
Code: Alles auswählen
import ctypes
NETZApi = ctypes.LibraryLoader.LoadLibrary ("NetApi.Netz")
"LoadLibrary() takes exactly 2 positional arguments (1 given)"
Was mache ich falsch? Brauche ich ein anderes Modul als ctypes?
Danke
Gab