https://github.com/austinjhunt/ibew-data-scraper
Automation of merged data collection and cleaning from ibew.org and unionfacts.com for an Upwork job.
https://github.com/austinjhunt/ibew-data-scraper
beautifulsoup multithreading python scraper union upwork web
Last synced: 3 months ago
JSON representation
Automation of merged data collection and cleaning from ibew.org and unionfacts.com for an Upwork job.
- Host: GitHub
- URL: https://github.com/austinjhunt/ibew-data-scraper
- Owner: austinjhunt
- Created: 2024-09-17T20:55:22.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2024-09-18T02:15:05.000Z (9 months ago)
- Last Synced: 2025-02-07T23:04:47.315Z (4 months ago)
- Topics: beautifulsoup, multithreading, python, scraper, union, upwork, web
- Language: Python
- Homepage:
- Size: 222 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Upwork Job - Build simple Python script to query specific website’s API directly, with Excel output
## Client: *******
## Start Date: September 17, 2024
## Est. Time: 2-3 hrs.
### Detailed Client Requirements
Hi there:
There are two websites this will sift through. First is a union directory search tool (URL: ibew.org/Tools/Local-Union-Directory) that allows, on the front end, for users to search by local (which is a number), by VP District, and by State/Province. First, this needs to hit the API (which I’ve already done, but not on an iterative level), by querying by the following states: NY, CT, RI, MA, VT, NH, and ME. When you do, you’ll get a JSON response for local union ID and city / state. I need these 3 fields likely added to a data frame, and then I need it to do the search by Local, and, per local union ID found from the first pull, first pull in the classifications from the output, and then clicking on show county information, and then showing the counties listed, the population, the sq miles, percent, and jurisdiction per county.
Next, the script, after appending that data, will go to the website (Unionfacts.com/locals/International_Brotherhood_of_Electrical_Workers) containing the number of members per local union ID. It will search for the Union, and output the number of members. After consolidating all of that into a single dataframe, it’ll provide it as an excel output.
As I am very pressed for time and don’t have time to code it right now, please let me know how soon you can get this to me, and the number of hours you intend to take to work on it.
Best,
Michael## Solution: IBEW Data Scraper
### Overview
This Python script ([main.py](./main.py)) scrapes and merges data about local unions from the **IBEW (International Brotherhood of Electrical Workers)** directory and the **UnionFacts** website. The data is retrieved using a combination of API requests and web scraping (where an API is not available) then processes and saves the data as an Excel file.
### Features:
- Queries IBEW API by state to retrieve local union details.
- Scrapes the UnionFacts website for additional union data (API not available, so I'm using BeautifulSoup). The table on this site has data for 800+ unions, so we filter out only those with a Local identifier.
- Enhances union data by adding classifications and county information using multithreading for efficiency.
- Cleans and flattens nested JSON structures (like `Counties`) for easier data processing.
- Outputs the result as an Excel file.## Installation
### Requirements:
Make sure you have Python installed (>= 3.6) and install the required dependencies listed in the `requirements.txt`:
```bash
pip install -r requirements.txt
```### Script Arguments
The script can be passed 3 optional arguments: `states`, `logfile`, and `output`. See the help output below for a description of these arguments.
```bash
(venv) austinhunt@Austins-MBP-2 unionfacts % python main.py -h
usage: main.py [-h] [--states STATES] [--logfile LOGFILE] [--output OUTPUT]IBEW Data Scraper
options:
-h, --help show this help message and exit
--states STATES Comma-separated list of state abbreviations to query, e.g. NY,CT,RI
--logfile LOGFILE Optional log file name
--output OUTPUT Output file name (must end with .xlsx)
```### Example with arguments:
```bash
(venv) austinhunt@Austins-MBP-2 unionfacts % python main.py --states=NY,CT,RI,MA,VT,NH,ME --output merged_union_data.xlsx --logfile main.log```
### Example without arguments:
```bash
(venv) austinhunt@Austins-MBP-2 unionfacts % python main.py
```If you run without arguments, the data will be written to `merged_union_data.xlsx` ([see sample file here](./merged_union_data.xlsx)), and it will collect data for the following default states: `["NY", "CT", "RI", "MA", "VT", "NH", "ME"]`
### Logging
You can optionally pass `--logfile ` to output logs to a file in addition to standard output. A [sample log file](./main.log) is included in the repo.