Skip to content

Commit

Permalink
adding .gitignore and showing data
Browse files Browse the repository at this point in the history
  • Loading branch information
lalalaurentiu committed Sep 16, 2023
1 parent 1d5070f commit f5a02f4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
env/
__pycache__/
2 changes: 2 additions & 0 deletions sites/website_scraper_bs4.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
from sites.update_logo import update_logo
from math import ceil
import uuid
import json


class BS4Scraper:
Expand Down Expand Up @@ -84,3 +85,4 @@ def send_to_viitor(self):
api_load = UpdatePeviitorAPI(self.company_name, self.formatted_data)
api_load()
update_logo(self.company_name, self.logo_url)
print(json.dumps(self.formatted_data, indent=4, sort_keys=True))

0 comments on commit f5a02f4

Please sign in to comment.