SyncFolder.init(self, name, refurl, contentsurl)
SyncFolder class initialization. Requires folder name, reference url, and a content url.
Example
#find folder information in XML
name = f.find("displayName").text
ref = f.find("ref").text
contents = f.find("contents").text
#Strip host's off of both ref/contents URLs
ref = ref.split("/")
ref = "/" + "/".join(ref[ref.index("folder"):] )
contents = contents.split("/")
contents = "/" + "/".join(contents[contents.index("folder"):])
folder = SyncFolder(name, ref, contents)