Skip to content

Commit

Permalink
Delete commented out code
Browse files Browse the repository at this point in the history
  • Loading branch information
Crinibus committed Jan 30, 2023
1 parent 41510f0 commit 119f40e
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions main.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,12 +52,6 @@ def scrape() -> None:
# Create instances of class "Scraper"
products = [scraper.Scraper(category, url) for category, url in zip(products_df["category"], products_df["url"])]

# Scrape and save scraped data for each product (sequentially)
# for product in products:
# time.sleep(request_delay)
# product.scrape_info()
# product.save_info()

with alive_progress.alive_bar(len(products), title="Scraping") as bar:
# Scrape and save scraped data for each product (sequentially)
for product in products:
Expand Down

0 comments on commit 119f40e

Please sign in to comment.