The reason is that I have a Python script running on Linux that needs to access our DHCP which is on a Windows Server. I know I can do it with Powersell with a command:
Get-DhcpServerv4Lease -ComputerName WinServer -ScopeId 192.168.0.0 | Select-Object -Property ClientID, HostName, IPAddress
But I'd prefer to do it with Python on Linux so I can expand my existing script.