You basically call these methods on a list line (which is of type SharePointListRow ). The open() method is actually a urllib2 method, which you usually use like this:
import urllib2 opener = urllib2.build_opener() response = opener.open('http://www.example.com/') print ('READ CONTENTS:', response.read()) print ('URL :', response.geturl())
So you should be able to use it like this (I don't have a Sharepoint site to check this out):
from sharepoint import SharePointSite, basic_auth_opener opener = basic_auth_opener(server_url, "domain/username", "password") site = SharePointSite(server_url, opener) sp_list = site.lists['ListName'] for row in sp_list.rows():
source share