def fetch(self):
"""Fetch report from PDB website
Yields:
dict: Dictionary with keys same as ['structureId', 'chainID'] + self.fields
"""
response = urlopen(self.url)
return parse_csv_file(response)