This file contains 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 dependencies | |
import requests | |
import pandas as pd | |
import re | |
from datetime import datetime as dt | |
from bs4 import BeautifulSoup | |
#Create function that scrapes PeopleFirst jobs and filters for salary where the floor is $60k or above | |
#or $60k is atleast in the salary range, and puts results in an excel file for us |
This file contains 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 dependencies | |
import pandas as pd | |
import os | |
import re | |
import tkinter as tk | |
from tkinter import ttk | |
from tkinter import filedialog | |
from tkinter import messagebox | |