dnspod_com.py 393 B

123456789101112131415161718
  1. # coding=utf-8
  2. """
  3. DNSPOD Global (国际版) API
  4. http://www.dnspod.com/docs/domains.html
  5. @author: NewFuture
  6. """
  7. from .dnspod import DnspodProvider # noqa: F401
  8. class DnspodComProvider(DnspodProvider):
  9. """
  10. DNSPOD.com Provider (国际版)
  11. This class extends the DnspodProvider to use the global DNSPOD API.
  12. """
  13. API = "https://api.dnspod.com"
  14. DefaultLine = "default"