Skip to content

Commit

Permalink
functionality to view saved products
Browse files Browse the repository at this point in the history
  • Loading branch information
antgad committed Nov 2, 2021
1 parent 2311be9 commit 15fede3
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 15fede3

Please sign in to comment.