Advertisement
Forage

Untitled

Sep 8th, 2015
155
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.29 KB | None | 0 0
  1. import logging
  2. from pysimplesoap.client import SoapClient
  3.  
  4. DOMAIN = 'scratchingmyitch.com'
  5. SERVICE_URL = 'https://api.transip.nl/wsdl/?service=DomainService'
  6.  
  7. logging.basicConfig(level=logging.DEBUG)
  8.  
  9. client = SoapClient(wsdl=SERVICE_URL, trace=True)
  10. response = client.getInfo(DOMAIN)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement