Skip to content

This Python web scrapper scrapes job openings on indeed and stackoverflow, and saves it as csv file

Notifications You must be signed in to change notification settings

ChoiBoyoon/python-web-scraper-2021

Repository files navigation

Three web-scraper projects below were designed mainly using Python, BeautifulSoup, Requests, and Flask.

Flask web application

Github doesn't support flask. Check the result & code on : https://replit.com/@BoyoonChoi/SuperScrapper#main.py

스크린샷 2021-12-20 23 22 03

Python web scraper

we scrape Python job listings on both Indeed and StackOverflow, mainly using BeautifulSoup

code example below

def extract_job(html):
    title = html.find("span", title=True).string
    company = html.find("span",{"class":"companyName"}).string
    location = html.select_one("pre>div").text
    job_id=html['data-jk']
    return {
        'title':title, 
        'company':company, 
        'location':location, 
        'link':f"https://www.indeed.com/viewjob?jk={job_id}"}

AlbaHeaven_webscraper

we scrape job listing from each company, and save them in individual csv files.
you can run my code here: https://replit.com/@BoyoonChoi/AlbaHeaven-Scraper#main.py

스크린샷 2021-12-13 17 19 18

스크린샷 2021-12-13 17 22 49

About

This Python web scrapper scrapes job openings on indeed and stackoverflow, and saves it as csv file

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published