This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| \NeedsTeXFormat{LaTeX2e} | |
| \ProvidesPackage{fyz}[2025/09/20 v1.2 pink kawaii theme] | |
| \RequirePackage[utf8]{inputenc} | |
| \RequirePackage{tikz} | |
| \RequirePackage{enumitem} | |
| \RequirePackage{titlesec} | |
| \RequirePackage{amsmath, amssymb, amsthm} | |
| \RequirePackage[most]{tcolorbox} | |
| \RequirePackage{xcolor} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import sys | |
| from selenium import webdriver | |
| from selenium.webdriver.common.by import By | |
| from selenium.webdriver.common.keys import Keys | |
| from selenium.webdriver.support.ui import WebDriverWait | |
| from selenium.webdriver.support import expected_conditions as EC | |
| from chromedriver_autoinstaller import install | |
| has_chrome = input("Do you have the LATEST VERSION of chrome? (Y/N)\n") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Insert your SerpAPI API Key in lines 13 and 42 | |
| from serpapi import GoogleSearch | |
| from difflib import SequenceMatcher | |
| business_name = input("What is the name of the business?\n") | |
| try: | |
| params = { | |
| "engine": "google_maps", |