Sample code for 30+ languages & platforms
CkPython

Load XML from a Remote URL

Demonstrates how to load XML from a remote URL, such as https://www.chilkatsoft.com/hamlet.xml

Chilkat CkPython Downloads

CkPython
import sys
import chilkat

success = False

# This example assumes the Chilkat HTTP API to have been previously unlocked.
# See Global Unlock Sample for sample code.

http = chilkat.CkHttp()
sbXml = chilkat.CkStringBuilder()

# Download the XML from the URL into sbXml
success = http.QuickGetSb("https://www.chilkatsoft.com/hamlet.xml",sbXml)
if (success == False):
    print(http.lastErrorText())
    sys.exit()

xml = chilkat.CkXml()

# Load the XML contained in sbXml
success = xml.LoadSb(sbXml,True)
if (success == False):
    print(xml.lastErrorText())
    sys.exit()

print("Success.")