"""Python SDK for the ISPConfig remote SOAP API. Quick start:: from ispconfig import ISPConfigClient with ISPConfigClient("https://panel.example.com:8080/remote/index.php", "admin", "password") as c: site = c.sites.web_domain_get(156) print(site["domain"], site["php"]) See the individual module docstrings for the full set of wrapped calls. """ from __future__ import annotations from .client import ISPConfigClient from .exceptions import ( AuthError, FaultError, ISPConfigError, NotFoundError, PermissionError, ) __version__ = "0.1.0" __all__ = [ "AuthError", "FaultError", "ISPConfigClient", "ISPConfigError", "NotFoundError", "PermissionError", "__version__", ]