Original title: Beginner in Python and Web Scraping – Looking for Feedback on My Script [closed]
I’m a software engineering student currently doing an internship in the Business Intelligence area at a university. As part of a project, I decided to create a script that scrapes job postings from a website to later use in data analysis. Here’s my situation:
I’m completely new to both Python and web scraping.
I’ve been learning through documentation, tutorials, and by asking ChatGPT :’( .
After some effort, I managed to put together a semi-functional script, but it still contains many errors and inefficiencies.
import os import csv import time import threading import tkinter as tk
from datetime import datetime
from selenium import webdriver
from selenium.common.exceptions import NoSuchElementException
from selenium.webdriver import Chrome from selenium.webdriver.chrome.service import Service from selenium.webdriver.common.by import By from selenium.webdriver.support.ui import WebDriverWait from selenium.webdriver.support import expected_conditions as EC
from webdriver_manage