Skip to content

Commit

Permalink
Merge pull request #17 from SEProjGrp5/Anant
Browse files Browse the repository at this point in the history
functionality to view saved products
  • Loading branch information
antgad authored Nov 2, 2021
2 parents 85d9ff5 + 15fede3 commit a762d24
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/full_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,11 @@ def search_fn(self):
pass

def extract_list(self):
if os.path.exists(self.user_list):
old_data=pd.read_csv(self.user_list)
print(old_data)
else:
print("No saved data found.")
pass

def scrape(self,prod):
Expand Down

0 comments on commit a762d24

Please sign in to comment.