Example #1
0
 def _create_patent_objects(self):
     """
     Create a Patent object for each patent id and store them in a list
     """
     print('Creation of the patent Python objects')
     self.patent_list = []
     for patent_id in list(self.patent_ids):
         a = Patent(patent_id)  # updated
         self.patent_list.append(a)  # updated