Skip to content

Commit

Permalink
GA
Browse files Browse the repository at this point in the history
  • Loading branch information
davidmfinol committed Sep 22, 2024
1 parent b62f5da commit 0d386c3
Show file tree
Hide file tree
Showing 2 changed files with 100 additions and 100 deletions.
4 changes: 2 additions & 2 deletions docs/games/grand_archive_gabrary_spoilers/scraper.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from selenium.webdriver.chrome.options import Options
from selenium.webdriver.chrome.service import Service
from bs4 import BeautifulSoup
import uuid
import re
import json

# URL to scrape
Expand Down Expand Up @@ -65,7 +65,7 @@

# Append to card_data list
card_data["data"].append({
'uuid': uuid.uuid4().hex,
'uuid': re.sub(r'\W+', '', name),
'name': name,
'image_url': image_url,
'editions': editions
Expand Down
Loading

0 comments on commit 0d386c3

Please sign in to comment.