diff --git a/.github/workflows/python_application.yml b/.github/workflows/python_application.yml new file mode 100644 index 00000000..28f31842 --- /dev/null +++ b/.github/workflows/python_application.yml @@ -0,0 +1,51 @@ +# This workflow will install Python dependencies, run tests, and lint with a single version of Python +# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python + +name: Python application + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + +permissions: + contents: read + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v3 + - name: Set up Python 3.10 + uses: actions/setup-python@v3 + with: + python-version: "3.10" + + # Install dependencies + - name: Install dependencies + run: | + python -m pip install --upgrade pip + pip install flake8 pytest pylint black isort + if [ -f requirements.txt ]; then pip install -r requirements.txt; fi + + # Check Black formatting + - name: Check Black formatting + run: | + black --check . + + # Lint with Pylint + - name: Lint with Pylint + run: | + pylint *.py + + # Test with pytest + - name: Test with pytest + run: | + pytest + + # Sort imports with isort + - name: Sort imports with isort + run: | + isort *.py diff --git a/Makefile b/Makefile new file mode 100644 index 00000000..c6826910 --- /dev/null +++ b/Makefile @@ -0,0 +1,11 @@ +SRC_DIR := $(shell pwd)/jobhunter/src + +setup: + python3 -m venv jobhunter + . jobhunter/bin/activate && pip install -r requirements.txt + source jobhunter/bin/activate + +test: + cd $(SRC_DIR) && coverage run -m pytest + cd $(SRC_DIR) && coverage report + cd $(SRC_DIR) && coverage html -d coverage_html \ No newline at end of file diff --git a/app/__init__.py b/__init__.py similarity index 100% rename from app/__init__.py rename to __init__.py diff --git a/app/.DS_Store b/app/.DS_Store deleted file mode 100644 index fe38ae0a..00000000 Binary files a/app/.DS_Store and /dev/null differ diff --git a/app/utilities/extract_salary.py b/app/utilities/extract_salary.py deleted file mode 100644 index a2723dc0..00000000 --- a/app/utilities/extract_salary.py +++ /dev/null @@ -1,43 +0,0 @@ -import re - -def extract_salary(text): - # Match for salaries like "$150,000.00" or "$150,000" - salary_pattern_1 = r"\$([\d,]+)(?:\.(\d{2}))?" - # Match for salaries like "$150K" - salary_pattern_2 = r"\$([\d\.]+)(K)" - # Match for salaries like "$125K-$150K" or "$150,000 - $350K" - salary_pattern_3 = ( - r"\$([\d,]+)(?:\.(\d{2}))?\s*(K)?\s*-\s*\$([\d,]+)(?:\.(\d{2}))?(K)?" - ) - - # Find a match in the text for each pattern - match1 = re.search(salary_pattern_1, text) - match2 = re.search(salary_pattern_2, text) - match3 = re.search(salary_pattern_3, text) - - if match3: - # For salary ranges like "$125K-$150K" or "$150,000 - $350K" - salary_low = ( - float(match3.group(1).replace(",", "")) * 1000 - if match3.group(3) == "K" - else float(match3.group(1).replace(",", "")) - ) - salary_high = ( - float(match3.group(4).replace(",", "")) * 1000 - if match3.group(6) == "K" - else float(match3.group(4).replace(",", "")) - ) - elif match2: - # For salaries like "$150K" - salary_low = salary_high = float(match2.group(1).replace(",", "")) * 1000 - elif match1: - # For salaries like "$150,000.00" or "$150,000" - salary_low = salary_high = float( - match1.group(1).replace(",", "") + "." + match1.group(2) - if match1.group(2) - else match1.group(1).replace(",", "") - ) - else: - salary_low = salary_high = None - - return salary_low, salary_high \ No newline at end of file diff --git a/data/data_access.py b/data/data_access.py deleted file mode 100644 index e69de29b..00000000 diff --git a/app/utilities/__init__.py b/jobhunter/__init__.py similarity index 100% rename from app/utilities/__init__.py rename to jobhunter/__init__.py diff --git a/myenv/bin/Activate.ps1 b/jobhunter/bin/Activate.ps1 similarity index 94% rename from myenv/bin/Activate.ps1 rename to jobhunter/bin/Activate.ps1 index 2fb3852c..b49d77ba 100644 --- a/myenv/bin/Activate.ps1 +++ b/jobhunter/bin/Activate.ps1 @@ -96,6 +96,11 @@ function global:deactivate ([switch]$NonDestructive) { Remove-Item -Path env:VIRTUAL_ENV } + # Just remove VIRTUAL_ENV_PROMPT altogether. + if (Test-Path -Path Env:VIRTUAL_ENV_PROMPT) { + Remove-Item -Path env:VIRTUAL_ENV_PROMPT + } + # Just remove the _PYTHON_VENV_PROMPT_PREFIX altogether: if (Get-Variable -Name "_PYTHON_VENV_PROMPT_PREFIX" -ErrorAction SilentlyContinue) { Remove-Variable -Name _PYTHON_VENV_PROMPT_PREFIX -Scope Global -Force @@ -197,7 +202,7 @@ else { $Prompt = $pyvenvCfg['prompt']; } else { - Write-Verbose " Setting prompt based on parent's directory's name. (Is the directory name passed to venv module when creating the virutal environment)" + Write-Verbose " Setting prompt based on parent's directory's name. (Is the directory name passed to venv module when creating the virtual environment)" Write-Verbose " Got leaf-name of $VenvDir='$(Split-Path -Path $venvDir -Leaf)'" $Prompt = Split-Path -Path $venvDir -Leaf } @@ -228,6 +233,7 @@ if (-not $Env:VIRTUAL_ENV_DISABLE_PROMPT) { Write-Host -NoNewline -ForegroundColor Green "($_PYTHON_VENV_PROMPT_PREFIX) " _OLD_VIRTUAL_PROMPT } + $env:VIRTUAL_ENV_PROMPT = $Prompt } # Clear PYTHONHOME diff --git a/myenv/bin/activate b/jobhunter/bin/activate similarity index 90% rename from myenv/bin/activate rename to jobhunter/bin/activate index 83ddcc1a..8a4c0894 100644 --- a/myenv/bin/activate +++ b/jobhunter/bin/activate @@ -28,6 +28,7 @@ deactivate () { fi unset VIRTUAL_ENV + unset VIRTUAL_ENV_PROMPT if [ ! "${1:-}" = "nondestructive" ] ; then # Self destruct! unset -f deactivate @@ -37,7 +38,7 @@ deactivate () { # unset irrelevant variables deactivate nondestructive -VIRTUAL_ENV="/Users/jjespinoza/Documents/jobhunter/myenv" +VIRTUAL_ENV="/Users/jjespinoza/Documents/jobhunter/jobhunter" export VIRTUAL_ENV _OLD_VIRTUAL_PATH="$PATH" @@ -54,8 +55,10 @@ fi if [ -z "${VIRTUAL_ENV_DISABLE_PROMPT:-}" ] ; then _OLD_VIRTUAL_PS1="${PS1:-}" - PS1="(myenv) ${PS1:-}" + PS1="(jobhunter) ${PS1:-}" export PS1 + VIRTUAL_ENV_PROMPT="(jobhunter) " + export VIRTUAL_ENV_PROMPT fi # This should detect bash and zsh, which have a hash command that must diff --git a/myenv/bin/activate.csh b/jobhunter/bin/activate.csh similarity index 69% rename from myenv/bin/activate.csh rename to jobhunter/bin/activate.csh index 856cfbbd..a0783cbf 100644 --- a/myenv/bin/activate.csh +++ b/jobhunter/bin/activate.csh @@ -3,12 +3,12 @@ # Created by Davide Di Blasi . # Ported to Python 3.3 venv by Andrew Svetlov -alias deactivate 'test $?_OLD_VIRTUAL_PATH != 0 && setenv PATH "$_OLD_VIRTUAL_PATH" && unset _OLD_VIRTUAL_PATH; rehash; test $?_OLD_VIRTUAL_PROMPT != 0 && set prompt="$_OLD_VIRTUAL_PROMPT" && unset _OLD_VIRTUAL_PROMPT; unsetenv VIRTUAL_ENV; test "\!:*" != "nondestructive" && unalias deactivate' +alias deactivate 'test $?_OLD_VIRTUAL_PATH != 0 && setenv PATH "$_OLD_VIRTUAL_PATH" && unset _OLD_VIRTUAL_PATH; rehash; test $?_OLD_VIRTUAL_PROMPT != 0 && set prompt="$_OLD_VIRTUAL_PROMPT" && unset _OLD_VIRTUAL_PROMPT; unsetenv VIRTUAL_ENV; unsetenv VIRTUAL_ENV_PROMPT; test "\!:*" != "nondestructive" && unalias deactivate' # Unset irrelevant variables. deactivate nondestructive -setenv VIRTUAL_ENV "/Users/jjespinoza/Documents/jobhunter/myenv" +setenv VIRTUAL_ENV "/Users/jjespinoza/Documents/jobhunter/jobhunter" set _OLD_VIRTUAL_PATH="$PATH" setenv PATH "$VIRTUAL_ENV/bin:$PATH" @@ -17,7 +17,8 @@ setenv PATH "$VIRTUAL_ENV/bin:$PATH" set _OLD_VIRTUAL_PROMPT="$prompt" if (! "$?VIRTUAL_ENV_DISABLE_PROMPT") then - set prompt = "(myenv) $prompt" + set prompt = "(jobhunter) $prompt" + setenv VIRTUAL_ENV_PROMPT "(jobhunter) " endif alias pydoc python -m pydoc diff --git a/myenv/bin/activate.fish b/jobhunter/bin/activate.fish similarity index 78% rename from myenv/bin/activate.fish rename to jobhunter/bin/activate.fish index 30684c9b..8ea4c0d7 100644 --- a/myenv/bin/activate.fish +++ b/jobhunter/bin/activate.fish @@ -13,13 +13,17 @@ function deactivate -d "Exit virtual environment and return to normal shell env end if test -n "$_OLD_FISH_PROMPT_OVERRIDE" - functions -e fish_prompt set -e _OLD_FISH_PROMPT_OVERRIDE - functions -c _old_fish_prompt fish_prompt - functions -e _old_fish_prompt + # prevents error when using nested fish instances (Issue #93858) + if functions -q _old_fish_prompt + functions -e fish_prompt + functions -c _old_fish_prompt fish_prompt + functions -e _old_fish_prompt + end end set -e VIRTUAL_ENV + set -e VIRTUAL_ENV_PROMPT if test "$argv[1]" != "nondestructive" # Self-destruct! functions -e deactivate @@ -29,7 +33,7 @@ end # Unset irrelevant variables. deactivate nondestructive -set -gx VIRTUAL_ENV "/Users/jjespinoza/Documents/jobhunter/myenv" +set -gx VIRTUAL_ENV "/Users/jjespinoza/Documents/jobhunter/jobhunter" set -gx _OLD_VIRTUAL_PATH $PATH set -gx PATH "$VIRTUAL_ENV/bin" $PATH @@ -52,7 +56,7 @@ if test -z "$VIRTUAL_ENV_DISABLE_PROMPT" set -l old_status $status # Output the venv prompt; color taken from the blue of the Python logo. - printf "%s%s%s" (set_color 4B8BBE) "(myenv) " (set_color normal) + printf "%s%s%s" (set_color 4B8BBE) "(jobhunter) " (set_color normal) # Restore the return status of the previous command. echo "exit $old_status" | . @@ -61,4 +65,5 @@ if test -z "$VIRTUAL_ENV_DISABLE_PROMPT" end set -gx _OLD_FISH_PROMPT_OVERRIDE "$VIRTUAL_ENV" + set -gx VIRTUAL_ENV_PROMPT "(jobhunter) " end diff --git a/myenv/bin/pip3.9 b/jobhunter/bin/coverage similarity index 62% rename from myenv/bin/pip3.9 rename to jobhunter/bin/coverage index e8376c94..303a1f56 100755 --- a/myenv/bin/pip3.9 +++ b/jobhunter/bin/coverage @@ -1,8 +1,8 @@ -#!/Users/jjespinoza/Documents/jobhunter/myenv/bin/python3 +#!/Users/jjespinoza/Documents/jobhunter/jobhunter/bin/python3.11 # -*- coding: utf-8 -*- import re import sys -from pip._internal.cli.main import main +from coverage.cmdline import main if __name__ == '__main__': sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0]) sys.exit(main()) diff --git a/jobhunter/bin/coverage-3.11 b/jobhunter/bin/coverage-3.11 new file mode 100755 index 00000000..303a1f56 --- /dev/null +++ b/jobhunter/bin/coverage-3.11 @@ -0,0 +1,8 @@ +#!/Users/jjespinoza/Documents/jobhunter/jobhunter/bin/python3.11 +# -*- coding: utf-8 -*- +import re +import sys +from coverage.cmdline import main +if __name__ == '__main__': + sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0]) + sys.exit(main()) diff --git a/jobhunter/bin/coverage3 b/jobhunter/bin/coverage3 new file mode 100755 index 00000000..303a1f56 --- /dev/null +++ b/jobhunter/bin/coverage3 @@ -0,0 +1,8 @@ +#!/Users/jjespinoza/Documents/jobhunter/jobhunter/bin/python3.11 +# -*- coding: utf-8 -*- +import re +import sys +from coverage.cmdline import main +if __name__ == '__main__': + sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0]) + sys.exit(main()) diff --git a/myenv/bin/dotenv b/jobhunter/bin/dotenv similarity index 74% rename from myenv/bin/dotenv rename to jobhunter/bin/dotenv index f9183025..272d22b5 100755 --- a/myenv/bin/dotenv +++ b/jobhunter/bin/dotenv @@ -1,4 +1,4 @@ -#!/Users/jjespinoza/Documents/jobhunter/myenv/bin/python3 +#!/Users/jjespinoza/Documents/jobhunter/jobhunter/bin/python3.11 # -*- coding: utf-8 -*- import re import sys diff --git a/myenv/bin/f2py b/jobhunter/bin/f2py similarity index 75% rename from myenv/bin/f2py rename to jobhunter/bin/f2py index c99bbc0f..59b0cfe2 100755 --- a/myenv/bin/f2py +++ b/jobhunter/bin/f2py @@ -1,4 +1,4 @@ -#!/Users/jjespinoza/Documents/jobhunter/myenv/bin/python3 +#!/Users/jjespinoza/Documents/jobhunter/jobhunter/bin/python3.11 # -*- coding: utf-8 -*- import re import sys diff --git a/myenv/bin/f2py3 b/jobhunter/bin/f2py3 similarity index 75% rename from myenv/bin/f2py3 rename to jobhunter/bin/f2py3 index c99bbc0f..59b0cfe2 100755 --- a/myenv/bin/f2py3 +++ b/jobhunter/bin/f2py3 @@ -1,4 +1,4 @@ -#!/Users/jjespinoza/Documents/jobhunter/myenv/bin/python3 +#!/Users/jjespinoza/Documents/jobhunter/jobhunter/bin/python3.11 # -*- coding: utf-8 -*- import re import sys diff --git a/myenv/bin/f2py3.9 b/jobhunter/bin/f2py3.11 similarity index 75% rename from myenv/bin/f2py3.9 rename to jobhunter/bin/f2py3.11 index c99bbc0f..59b0cfe2 100755 --- a/myenv/bin/f2py3.9 +++ b/jobhunter/bin/f2py3.11 @@ -1,4 +1,4 @@ -#!/Users/jjespinoza/Documents/jobhunter/myenv/bin/python3 +#!/Users/jjespinoza/Documents/jobhunter/jobhunter/bin/python3.11 # -*- coding: utf-8 -*- import re import sys diff --git a/myenv/bin/jsonschema b/jobhunter/bin/jsonschema similarity index 74% rename from myenv/bin/jsonschema rename to jobhunter/bin/jsonschema index bedba301..3908ead2 100755 --- a/myenv/bin/jsonschema +++ b/jobhunter/bin/jsonschema @@ -1,4 +1,4 @@ -#!/Users/jjespinoza/Documents/jobhunter/myenv/bin/python3 +#!/Users/jjespinoza/Documents/jobhunter/jobhunter/bin/python3.11 # -*- coding: utf-8 -*- import re import sys diff --git a/myenv/bin/markdown-it b/jobhunter/bin/markdown-it similarity index 75% rename from myenv/bin/markdown-it rename to jobhunter/bin/markdown-it index eb969a06..49d8e575 100755 --- a/myenv/bin/markdown-it +++ b/jobhunter/bin/markdown-it @@ -1,4 +1,4 @@ -#!/Users/jjespinoza/Documents/jobhunter/myenv/bin/python3 +#!/Users/jjespinoza/Documents/jobhunter/jobhunter/bin/python3.11 # -*- coding: utf-8 -*- import re import sys diff --git a/myenv/bin/nltk b/jobhunter/bin/nltk similarity index 74% rename from myenv/bin/nltk rename to jobhunter/bin/nltk index a74cf05e..7aeb67c3 100755 --- a/myenv/bin/nltk +++ b/jobhunter/bin/nltk @@ -1,4 +1,4 @@ -#!/Users/jjespinoza/Documents/jobhunter/myenv/bin/python3 +#!/Users/jjespinoza/Documents/jobhunter/jobhunter/bin/python3.11 # -*- coding: utf-8 -*- import re import sys diff --git a/myenv/bin/normalizer b/jobhunter/bin/normalizer similarity index 77% rename from myenv/bin/normalizer rename to jobhunter/bin/normalizer index f255e685..abe0b02d 100755 --- a/myenv/bin/normalizer +++ b/jobhunter/bin/normalizer @@ -1,4 +1,4 @@ -#!/Users/jjespinoza/Documents/jobhunter/myenv/bin/python3 +#!/Users/jjespinoza/Documents/jobhunter/jobhunter/bin/python3.11 # -*- coding: utf-8 -*- import re import sys diff --git a/myenv/bin/pip b/jobhunter/bin/pip similarity index 75% rename from myenv/bin/pip rename to jobhunter/bin/pip index e8376c94..07e0ceed 100755 --- a/myenv/bin/pip +++ b/jobhunter/bin/pip @@ -1,4 +1,4 @@ -#!/Users/jjespinoza/Documents/jobhunter/myenv/bin/python3 +#!/Users/jjespinoza/Documents/jobhunter/jobhunter/bin/python3.11 # -*- coding: utf-8 -*- import re import sys diff --git a/myenv/bin/pip3 b/jobhunter/bin/pip3 similarity index 75% rename from myenv/bin/pip3 rename to jobhunter/bin/pip3 index e8376c94..07e0ceed 100755 --- a/myenv/bin/pip3 +++ b/jobhunter/bin/pip3 @@ -1,4 +1,4 @@ -#!/Users/jjespinoza/Documents/jobhunter/myenv/bin/python3 +#!/Users/jjespinoza/Documents/jobhunter/jobhunter/bin/python3.11 # -*- coding: utf-8 -*- import re import sys diff --git a/myenv/bin/pip3.11 b/jobhunter/bin/pip3.11 similarity index 75% rename from myenv/bin/pip3.11 rename to jobhunter/bin/pip3.11 index e8376c94..07e0ceed 100755 --- a/myenv/bin/pip3.11 +++ b/jobhunter/bin/pip3.11 @@ -1,4 +1,4 @@ -#!/Users/jjespinoza/Documents/jobhunter/myenv/bin/python3 +#!/Users/jjespinoza/Documents/jobhunter/jobhunter/bin/python3.11 # -*- coding: utf-8 -*- import re import sys diff --git a/myenv/bin/py.test b/jobhunter/bin/py.test similarity index 75% rename from myenv/bin/py.test rename to jobhunter/bin/py.test index 26dc8a57..b2d8b9b2 100755 --- a/myenv/bin/py.test +++ b/jobhunter/bin/py.test @@ -1,4 +1,4 @@ -#!/Users/jjespinoza/Documents/jobhunter/myenv/bin/python3 +#!/Users/jjespinoza/Documents/jobhunter/jobhunter/bin/python3.11 # -*- coding: utf-8 -*- import re import sys diff --git a/myenv/bin/pygmentize b/jobhunter/bin/pygmentize similarity index 75% rename from myenv/bin/pygmentize rename to jobhunter/bin/pygmentize index c1767982..54cfac0a 100755 --- a/myenv/bin/pygmentize +++ b/jobhunter/bin/pygmentize @@ -1,4 +1,4 @@ -#!/Users/jjespinoza/Documents/jobhunter/myenv/bin/python3 +#!/Users/jjespinoza/Documents/jobhunter/jobhunter/bin/python3.11 # -*- coding: utf-8 -*- import re import sys diff --git a/myenv/bin/pytest b/jobhunter/bin/pytest similarity index 75% rename from myenv/bin/pytest rename to jobhunter/bin/pytest index 26dc8a57..b2d8b9b2 100755 --- a/myenv/bin/pytest +++ b/jobhunter/bin/pytest @@ -1,4 +1,4 @@ -#!/Users/jjespinoza/Documents/jobhunter/myenv/bin/python3 +#!/Users/jjespinoza/Documents/jobhunter/jobhunter/bin/python3.11 # -*- coding: utf-8 -*- import re import sys diff --git a/jobhunter/bin/python b/jobhunter/bin/python new file mode 120000 index 00000000..6e7f3c7d --- /dev/null +++ b/jobhunter/bin/python @@ -0,0 +1 @@ +python3.11 \ No newline at end of file diff --git a/jobhunter/bin/python3 b/jobhunter/bin/python3 new file mode 120000 index 00000000..6e7f3c7d --- /dev/null +++ b/jobhunter/bin/python3 @@ -0,0 +1 @@ +python3.11 \ No newline at end of file diff --git a/jobhunter/bin/python3.11 b/jobhunter/bin/python3.11 new file mode 120000 index 00000000..3cf1fbdc --- /dev/null +++ b/jobhunter/bin/python3.11 @@ -0,0 +1 @@ +/opt/homebrew/opt/python@3.11/bin/python3.11 \ No newline at end of file diff --git a/myenv/bin/streamlit b/jobhunter/bin/streamlit similarity index 75% rename from myenv/bin/streamlit rename to jobhunter/bin/streamlit index 077d32a5..62134a74 100755 --- a/myenv/bin/streamlit +++ b/jobhunter/bin/streamlit @@ -1,4 +1,4 @@ -#!/Users/jjespinoza/Documents/jobhunter/myenv/bin/python3 +#!/Users/jjespinoza/Documents/jobhunter/jobhunter/bin/python3.11 # -*- coding: utf-8 -*- import re import sys diff --git a/myenv/bin/streamlit.cmd b/jobhunter/bin/streamlit.cmd similarity index 100% rename from myenv/bin/streamlit.cmd rename to jobhunter/bin/streamlit.cmd diff --git a/myenv/bin/tqdm b/jobhunter/bin/tqdm similarity index 74% rename from myenv/bin/tqdm rename to jobhunter/bin/tqdm index 920f0d6c..fb400ec2 100755 --- a/myenv/bin/tqdm +++ b/jobhunter/bin/tqdm @@ -1,4 +1,4 @@ -#!/Users/jjespinoza/Documents/jobhunter/myenv/bin/python3 +#!/Users/jjespinoza/Documents/jobhunter/jobhunter/bin/python3.11 # -*- coding: utf-8 -*- import re import sys diff --git a/jobhunter/data/raw/linkedinjobs-2023-08-27_12-30-30-375687.json b/jobhunter/data/raw/linkedinjobs-2023-08-27_12-30-30-375687.json deleted file mode 100644 index e69de29b..00000000 diff --git a/myenv/etc/jupyter/nbconfig/notebook.d/pydeck.json b/jobhunter/etc/jupyter/nbconfig/notebook.d/pydeck.json similarity index 100% rename from myenv/etc/jupyter/nbconfig/notebook.d/pydeck.json rename to jobhunter/etc/jupyter/nbconfig/notebook.d/pydeck.json diff --git a/jobhunter/pyvenv.cfg b/jobhunter/pyvenv.cfg new file mode 100644 index 00000000..fbc21f33 --- /dev/null +++ b/jobhunter/pyvenv.cfg @@ -0,0 +1,5 @@ +home = /opt/homebrew/opt/python@3.11/bin +include-system-site-packages = false +version = 3.11.5 +executable = /opt/homebrew/Cellar/python@3.11/3.11.5/Frameworks/Python.framework/Versions/3.11/bin/python3.11 +command = /opt/homebrew/opt/python@3.11/bin/python3.11 -m venv /Users/jjespinoza/Documents/jobhunter/jobhunter diff --git a/myenv/share/jupyter/nbextensions/pydeck/extensionRequires.js b/jobhunter/share/jupyter/nbextensions/pydeck/extensionRequires.js similarity index 100% rename from myenv/share/jupyter/nbextensions/pydeck/extensionRequires.js rename to jobhunter/share/jupyter/nbextensions/pydeck/extensionRequires.js diff --git a/myenv/share/jupyter/nbextensions/pydeck/index.js b/jobhunter/share/jupyter/nbextensions/pydeck/index.js similarity index 100% rename from myenv/share/jupyter/nbextensions/pydeck/index.js rename to jobhunter/share/jupyter/nbextensions/pydeck/index.js diff --git a/myenv/share/jupyter/nbextensions/pydeck/index.js.map b/jobhunter/share/jupyter/nbextensions/pydeck/index.js.map similarity index 100% rename from myenv/share/jupyter/nbextensions/pydeck/index.js.map rename to jobhunter/share/jupyter/nbextensions/pydeck/index.js.map diff --git a/database/__init__.py b/jobhunter/src/__init__.py similarity index 100% rename from database/__init__.py rename to jobhunter/src/__init__.py diff --git a/app/utilities/all_jobs.sql b/jobhunter/src/all_jobs.sql similarity index 100% rename from app/utilities/all_jobs.sql rename to jobhunter/src/all_jobs.sql diff --git a/app/config.py b/jobhunter/src/config.py similarity index 100% rename from app/config.py rename to jobhunter/src/config.py diff --git a/app/utilities/delete_local.py b/jobhunter/src/delete_local.py similarity index 98% rename from app/utilities/delete_local.py rename to jobhunter/src/delete_local.py index 220067f8..185284b3 100644 --- a/app/utilities/delete_local.py +++ b/jobhunter/src/delete_local.py @@ -2,8 +2,7 @@ import logging import pprint - -from app import config +import config # Initialize pretty printer and logging pp = pprint.PrettyPrinter(indent=4) diff --git a/app/utilities/extract.py b/jobhunter/src/extract.py similarity index 88% rename from app/utilities/extract.py rename to jobhunter/src/extract.py index 1fa7b34c..969c96a6 100644 --- a/app/utilities/extract.py +++ b/jobhunter/src/extract.py @@ -7,20 +7,21 @@ import time from dotenv import load_dotenv -<<<<<<< HEAD +import config as config +from tqdm import tqdm +# Load the .env file +load_dotenv("../../.env") + + +# change current director to location of this file +THIS_DIR = os.path.dirname(os.path.abspath(__file__)) +os.chdir(THIS_DIR) -from dotenv import load_dotenv -======= ->>>>>>> 75eaf3c (made code pip installable) -import app.config as config -from tqdm import tqdm # Get the API key from the environment variable RAPID_API_KEY = os.environ.get("RAPID_API_KEY") -# Load the .env file -load_dotenv("../.env") # Initialize pretty printer and logging pp = pprint.PrettyPrinter(indent=4) @@ -33,6 +34,19 @@ JOB_SEARCH_URL = config.JOB_SEARCH_URL +def create_data_folders_if_not_exists(): + """ + Creates the data folders if they don't exist. + """ + try: + os.makedirs("temp/data/raw", exist_ok=True) + os.makedirs("temp/data/processed", exist_ok=True) + logging.info("Created data folders successfully.") + + except Exception as e: + logging.error("An error occurred while creating data folders: %s", str(e)) + + def search_linkedin_jobs(search_term, location, page): """ This function takes in a search term, location and an optional page number as input and uses them to make a request to the LinkedIn jobs API. The API returns a json object containing job search results that match the search term and location provided. The function also sets up logging to log the request and any errors that may occur. @@ -133,6 +147,7 @@ def save_jobs(search_term, location, pages): def extract(): + create_data_folders_if_not_exists() try: positions = config.POSITIONS locations = config.LOCATIONS diff --git a/jobhunter/src/extract_salary.py b/jobhunter/src/extract_salary.py new file mode 100644 index 00000000..9e39b06c --- /dev/null +++ b/jobhunter/src/extract_salary.py @@ -0,0 +1,88 @@ +""" +This module contains a function to extract salary information from text. + +""" + +import argparse +import logging +import re + + +def extract_salary(text): + """ + This function extracts salary information from text. + """ + # Setup logging + logging.basicConfig(level=logging.INFO) + + # Regular expression patterns + salary_pattern_1 = r"\$([\d,]+)(?:\.(\d{2}))?" + salary_pattern_2 = r"\$([\d\.]+)(K)" + salary_pattern_3 = ( + r"\$(?!401K)([\d,]+)(?:\.(\d{2}))?\s*(K)?\s*-" + r"\s*\$(?!401K)([\d,]+)(?:\.(\d{2}))?(K)?" + ) + + hourly_pattern = r"\$([\d\.]+)\s*to\s*\$([\d\.]+)\/hour" + + # Search for patterns + match1 = re.search(salary_pattern_1, text) + match2 = re.search(salary_pattern_2, text) + match3 = re.search(salary_pattern_3, text) + match4 = re.search(hourly_pattern, text) + + salary_low, salary_high = None, None + + if match3: + salary_low = ( + float(match3.group(1).replace(",", "")) * 1000 + if match3.group(3) == "K" + else float(match3.group(1).replace(",", "")) + ) + salary_high = ( + float(match3.group(4).replace(",", "")) * 1000 + if match3.group(6) == "K" + else float(match3.group(4).replace(",", "")) + ) + + elif match2: + salary_low = salary_high = float(match2.group(1).replace(",", "")) * 1000 + + elif match1: + salary_low = salary_high = ( + float(match1.group(1).replace(",", "") + "." + match1.group(2)) + if match1.group(2) + else float(match1.group(1).replace(",", "")) + ) + + elif match4: + salary_low = float(match4.group(2)) * 40 * 52 + salary_high = float(match4.group(3)) * 40 * 52 + + if salary_low is not None and salary_low < 100: + salary_low *= 1000 + if salary_high is not None and salary_high < 100: + salary_high *= 1000 + + logging.info("Extracted salary range: %s to %s", salary_low, salary_high) + + return salary_low, salary_high + + +def main(): + """ + This function is the main function. + + """ + parser = argparse.ArgumentParser( + description="Extract salary information from text." + ) + parser.add_argument("text", type=str, help="Text containing salary information.") + args = parser.parse_args() + + salary_low, salary_high = extract_salary(args.text) + print(f"Extracted salary range: {salary_low} to {salary_high}") + + +if __name__ == "__main__": + main() diff --git a/jobhunter/src/extract_salary_test.py b/jobhunter/src/extract_salary_test.py new file mode 100644 index 00000000..cf9fe0d3 --- /dev/null +++ b/jobhunter/src/extract_salary_test.py @@ -0,0 +1,38 @@ +""" + +This module contains the test function for the extract_salary function. +""" + +from extract_salary import extract_salary + + +def test_extract_salary(): + """ + This test function tests the extract_salary function + """ + assert extract_salary("$150,000.00") == (150000.0, 150000.0) + assert extract_salary("$150K") == (150000.0, 150000.0) + assert extract_salary("401K") == (None, None) + assert extract_salary("Colorado – $89.04 to $99.04/hour") == (89040.0, 89040.0) + assert extract_salary("this role is between $260,500 - $313,000") == ( + 260500.0, + 313000.0, + ) + assert extract_salary( + "The hiring range for this position in Santa Monica, CA is $136,038 to $182,490 per year." + ) == (136038.0, 136038.0) + + assert extract_salary( + "The base salary range for this position in the " + "selected city is $123626 - $220611 annually." + ) == (123626.0, 220611.0) + + assert extract_salary("Compensation is $401K") == (401000.0, 401000.0) + + assert extract_salary("We offer a 401K retirement plan") == (None, None) + + # additional tests + assert extract_salary("Salary is around $200K-$250K") == (200000.0, 250000.0) + + assert extract_salary("This job does not disclose the salary.") == (None, None) + assert extract_salary("Salary:$30000-$40000") == (30000.0, 40000.0) diff --git a/app/utilities/extract_text_from_site.py b/jobhunter/src/extract_text_from_site.py similarity index 100% rename from app/utilities/extract_text_from_site.py rename to jobhunter/src/extract_text_from_site.py diff --git a/app/utilities/load.py b/jobhunter/src/load.py similarity index 100% rename from app/utilities/load.py rename to jobhunter/src/load.py diff --git a/app/main.py b/jobhunter/src/main.py similarity index 83% rename from app/main.py rename to jobhunter/src/main.py index 48f85b8e..46a15ce3 100644 --- a/app/main.py +++ b/jobhunter/src/main.py @@ -2,12 +2,12 @@ import sqlite3 import pandas as pd -from app.utilities.extract import extract -from app.utilities.transform import transform -from app.utilities.load import load -from app.utilities.delete_local import delete_local +from utilities.extract import extract +from utilities.transform import transform +from utilities.load import load +from utilities.delete_local import delete_local -from app.config import POSITIONS, LOCATIONS +from config import POSITIONS, LOCATIONS st.title("Config Manager") diff --git a/app/utilities/search_linkedin_jobs.py b/jobhunter/src/search_linkedin_jobs.py similarity index 57% rename from app/utilities/search_linkedin_jobs.py rename to jobhunter/src/search_linkedin_jobs.py index d0800c69..f60106c1 100644 --- a/app/utilities/search_linkedin_jobs.py +++ b/jobhunter/src/search_linkedin_jobs.py @@ -1,20 +1,37 @@ """ -This module uses the LinkedIn Jobs API to search for jobs on LinkedIn by providing a search term, location and an optional page number. The module utilizes the requests and json libraries to make the API request and parse the response, respectively. Additionally, the module employs the logging and argparse libraries to set up logging and command-line arguments, and the pprint library to print the results in a pretty format. The main function in the module is 'search_linkedin_jobs()' which takes in a search term, location and an optional page number as input and returns a json object containing job search results that match the search term and location provided. The module also uses the os library to access the API key as an environment variable. The main function in the module is 'main()' which performs a job search on LinkedIn using the 'search_linkedin_jobs()' function and returns the json object returned by the LinkedIn jobs API. The module also defines a command-line interface for running the script. +This module uses the LinkedIn Jobs API to search for jobs on LinkedIn by providing a search term, +location and an optional page number. The module utilizes the requests and json libraries to make +the API request and parse the response, respectively. Additionally, the module employs the logging +and argparse libraries to set up logging and command-line arguments, and the pprint library to +print the results in a pretty format. The main function in the module is 'search_linkedin_jobs()' +which takes in a search term, location and an optional page number as input and returns a json +object containing job search results that match the search term and location provided. The module +also uses the os library to access the API key as an environment variable. The main function in +the module is 'main()' which performs a job search on LinkedIn using the 'search_linkedin_jobs()' +function and returns the json object returned by the LinkedIn jobs API. +The module also defines a command-line imnterface for running the script. """ import argparse -import logging import json -import pprint -import requests +import logging import os +import pprint +import requests +import config from dotenv import load_dotenv -from app import config + # Load the .env file -load_dotenv("../.env") +load_dotenv("../../.env") + +# # Get the directory where the script is located +# script_directory = os.path.dirname(os.path.abspath(__file__)) + +# # Change the working directory to the script's directory +# os.chdir(script_directory) # Get the API key from the environment variable RAPID_API_KEY = os.environ.get("RAPID_API_KEY") @@ -28,7 +45,11 @@ def search_linkedin_jobs(search_term, location, page=1): """ - This function takes in a search term, location and an optional page number as input and uses them to make a request to the LinkedIn jobs API. The API returns a json object containing job search results that match the search term and location provided. The function also sets up logging to log the request and any errors that may occur. + This function takes in a search term, location and an optional page + number as input and uses them to make a request to the LinkedIn jobs API. + The API returns a json object containing job search results that match + the search term and location provided. The function also sets up logging + to log the request and any errors that may occur. Args: search_term (str): The job title or position you want to search for. @@ -50,24 +71,21 @@ def search_linkedin_jobs(search_term, location, page=1): "X-RapidAPI-Host": config.JOB_SEARCH_X_RAPIDAPI_HOST, } - logging.debug( - "Making request to LinkedIn jobs API with search term: {}, location: {}".format( - search_term, location - ) - ) - try: - response = requests.request("POST", url, json=payload, headers=headers) + response = requests.request( + "POST", url, json=payload, headers=headers, timeout=60 + ) json_object = json.loads(response.text) return json_object - - except Exception as e: - logging.error("Encountered exception: {}".format(e)) + except ValueError as value_err: + logging.error(value_err) + return None def main(search_term, location, page): """ - main() is a function that performs a job search on LinkedIn using the search_linkedin_jobs() function. + main() is a function that performs a job search on LinkedIn + using the search_linkedin_jobs() function. Args: search_term (str): The job title or keyword to search for. @@ -84,6 +102,10 @@ def main(search_term, location, page): def entrypoint(): + """ + This is the entrypoint for the script. + It defines the command-line interface for running the script. + """ parser = argparse.ArgumentParser(description="This searches for jobs on LinkedIn") parser.add_argument( diff --git a/jobhunter/src/search_linkedin_jobs_test.py b/jobhunter/src/search_linkedin_jobs_test.py new file mode 100644 index 00000000..a5881098 --- /dev/null +++ b/jobhunter/src/search_linkedin_jobs_test.py @@ -0,0 +1,25 @@ +""" +This tests the search_linkedin_jobs.py module. +""" + + +from search_linkedin_jobs import search_linkedin_jobs +from search_linkedin_jobs import RAPID_API_KEY + + +def test_check_api_key(): + """ + This is a test function for api key availability. + """ + assert RAPID_API_KEY is not None + + +def test_search_linkedin_jobs(): + """ + This is a test function for search_linkedin_jobs(). + """ + search_term = "Software Engineer" + location = "United States" + page = 1 + result = search_linkedin_jobs(search_term, location, page) + assert result is not None diff --git a/app/temp/.DS_Store b/jobhunter/src/temp/.DS_Store similarity index 100% rename from app/temp/.DS_Store rename to jobhunter/src/temp/.DS_Store diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-41-54-469042.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-41-54-469042.json new file mode 100644 index 00000000..7782268d --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-41-54-469042.json @@ -0,0 +1 @@ +"jobs" \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-41-56-457477.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-41-56-457477.json new file mode 100644 index 00000000..a474cd05 --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-41-56-457477.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/prinicipal-software-engineer-r01527156-at-brillio-3660958463?refId=X6TZRLu5mn%2B%2B%2F%2BU9Loi1HA%3D%3D&trackingId=q5ojtIhRw9BkOxi4kTZUrA%3D%3D&position=1&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/prinicipal-software-engineer-r01527156-at-brillio-3660958463", "company_name": "Brillio", "company_url": "https://www.linkedin.com/company/brillio?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://www.linkedin.com/company/brillio", "job_title": "Prinicipal Software Engineer - R01527156", "job_location": "United States", "posted_date": "2023-08-24", "normalized_company_name": "Brillio"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-41-56-458671.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-41-56-458671.json new file mode 100644 index 00000000..53b5cb64 --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-41-56-458671.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/senior-data-scientist-at-camgian-3688365905?refId=X6TZRLu5mn%2B%2B%2F%2BU9Loi1HA%3D%3D&trackingId=IVga7g0%2BpjbJlls7i77DGQ%3D%3D&position=2&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/senior-data-scientist-at-camgian-3688365905", "company_name": "Camgian", "company_url": "https://www.linkedin.com/company/camgian?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://www.linkedin.com/company/camgian", "job_title": "Senior Data Scientist", "job_location": "Tennessee, United States", "posted_date": "2023-08-08", "normalized_company_name": "Camgian"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-41-56-459113.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-41-56-459113.json new file mode 100644 index 00000000..17948bfb --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-41-56-459113.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/principal-clinical-data-scientist-lead-at-icon-strategic-solutions-3680326641?refId=X6TZRLu5mn%2B%2B%2F%2BU9Loi1HA%3D%3D&trackingId=95dkM3TXZ4DzJeh7mDt3DQ%3D%3D&position=3&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/principal-clinical-data-scientist-lead-at-icon-strategic-solutions-3680326641", "company_name": "ICON Strategic Solutions", "company_url": "https://uk.linkedin.com/company/icon-strategic-solutions?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://uk.linkedin.com/company/icon-strategic-solutions", "job_title": "Principal Clinical Data Scientist Lead", "job_location": "United States", "posted_date": "2023-08-23", "normalized_company_name": "Icon strategic solutions"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-41-56-459483.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-41-56-459483.json new file mode 100644 index 00000000..d5aa8c51 --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-41-56-459483.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/lead-principal-software-engineer-enterprise-trust-foundations-at-atlassian-3703167998?refId=X6TZRLu5mn%2B%2B%2F%2BU9Loi1HA%3D%3D&trackingId=IpPO1%2FpTuSGg6AVSr1bgeg%3D%3D&position=4&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/lead-principal-software-engineer-enterprise-trust-foundations-at-atlassian-3703167998", "company_name": "Atlassian", "company_url": "https://au.linkedin.com/company/atlassian?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://au.linkedin.com/company/atlassian", "job_title": "Lead Principal Software Engineer, Enterprise Trust Foundations", "job_location": "Mountain View, CA", "posted_date": "2023-09-01", "normalized_company_name": "Atlassian"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-41-56-459846.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-41-56-459846.json new file mode 100644 index 00000000..52d2ee34 --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-41-56-459846.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/senior-data-scientist-at-husch-blackwell-3662425127?refId=X6TZRLu5mn%2B%2B%2F%2BU9Loi1HA%3D%3D&trackingId=RZ3LR2KfebgiMHOzM3Uw8w%3D%3D&position=5&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/senior-data-scientist-at-husch-blackwell-3662425127", "company_name": "Husch Blackwell", "company_url": "https://www.linkedin.com/company/husch-blackwell?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://www.linkedin.com/company/husch-blackwell", "job_title": "Senior Data Scientist", "job_location": "Omaha, NE", "posted_date": "2023-08-24", "normalized_company_name": "Husch blackwell"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-41-56-460156.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-41-56-460156.json new file mode 100644 index 00000000..305b1a18 --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-41-56-460156.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/senior-data-scientist-at-husch-blackwell-3662423205?refId=X6TZRLu5mn%2B%2B%2F%2BU9Loi1HA%3D%3D&trackingId=kQ%2BBMrB1Q7yfWgHzUwjtaw%3D%3D&position=6&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/senior-data-scientist-at-husch-blackwell-3662423205", "company_name": "Husch Blackwell", "company_url": "https://www.linkedin.com/company/husch-blackwell?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://www.linkedin.com/company/husch-blackwell", "job_title": "Senior Data Scientist", "job_location": "Springfield, MO", "posted_date": "2023-08-24", "normalized_company_name": "Husch blackwell"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-41-56-460457.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-41-56-460457.json new file mode 100644 index 00000000..08b09f61 --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-41-56-460457.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/senior-data-scientist-at-husch-blackwell-3662420832?refId=X6TZRLu5mn%2B%2B%2F%2BU9Loi1HA%3D%3D&trackingId=u9fYgm67aB8XJ71Ss9ZbYg%3D%3D&position=7&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/senior-data-scientist-at-husch-blackwell-3662420832", "company_name": "Husch Blackwell", "company_url": "https://www.linkedin.com/company/husch-blackwell?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://www.linkedin.com/company/husch-blackwell", "job_title": "Senior Data Scientist", "job_location": "Kansas City, MO", "posted_date": "2023-08-25", "normalized_company_name": "Husch blackwell"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-41-56-460734.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-41-56-460734.json new file mode 100644 index 00000000..13066976 --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-41-56-460734.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/principle-field-performance-software-engineer-us-remote-at-haemonetics-3688956976?refId=X6TZRLu5mn%2B%2B%2F%2BU9Loi1HA%3D%3D&trackingId=7VLryKX75mMzc0mjs%2B6bUA%3D%3D&position=8&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/principle-field-performance-software-engineer-us-remote-at-haemonetics-3688956976", "company_name": "Haemonetics", "company_url": "https://www.linkedin.com/company/haemonetics?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://www.linkedin.com/company/haemonetics", "job_title": "Principle Field Performance Software Engineer US Remote", "job_location": "Jackson County, MO", "posted_date": "2023-08-30", "normalized_company_name": "Haemonetics"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-41-56-461004.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-41-56-461004.json new file mode 100644 index 00000000..0adcbdd3 --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-41-56-461004.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/data-engineer-iii-network-at-crown-castle-3690474898?refId=X6TZRLu5mn%2B%2B%2F%2BU9Loi1HA%3D%3D&trackingId=jaG4BVzqsbcyfWiXsHfb2A%3D%3D&position=9&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/data-engineer-iii-network-at-crown-castle-3690474898", "company_name": "Crown Castle", "company_url": "https://www.linkedin.com/company/crown-castle?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://www.linkedin.com/company/crown-castle", "job_title": "Data Engineer III - Network", "job_location": "Edison, NJ", "posted_date": "2023-09-01", "normalized_company_name": "Crown castle"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-41-56-461297.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-41-56-461297.json new file mode 100644 index 00000000..74c7c666 --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-41-56-461297.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/data-engineer-iii-network-at-crown-castle-3690475935?refId=X6TZRLu5mn%2B%2B%2F%2BU9Loi1HA%3D%3D&trackingId=iViQmf2lMFk6djV5ggZmAA%3D%3D&position=10&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/data-engineer-iii-network-at-crown-castle-3690475935", "company_name": "Crown Castle", "company_url": "https://www.linkedin.com/company/crown-castle?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://www.linkedin.com/company/crown-castle", "job_title": "Data Engineer III - Network", "job_location": "Houston, TX", "posted_date": "2023-09-01", "normalized_company_name": "Crown castle"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-41-56-461558.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-41-56-461558.json new file mode 100644 index 00000000..bb48c571 --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-41-56-461558.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/data-engineer-iii-network-at-crown-castle-3690481044?refId=X6TZRLu5mn%2B%2B%2F%2BU9Loi1HA%3D%3D&trackingId=Bg7eLiPLzA3GFc7GVI6FNA%3D%3D&position=11&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/data-engineer-iii-network-at-crown-castle-3690481044", "company_name": "Crown Castle", "company_url": "https://www.linkedin.com/company/crown-castle?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://www.linkedin.com/company/crown-castle", "job_title": "Data Engineer III - Network", "job_location": "Downers Grove, IL", "posted_date": "2023-09-01", "normalized_company_name": "Crown castle"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-41-56-461916.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-41-56-461916.json new file mode 100644 index 00000000..befa9c03 --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-41-56-461916.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/data-engineer-iii-network-at-crown-castle-3690481045?refId=X6TZRLu5mn%2B%2B%2F%2BU9Loi1HA%3D%3D&trackingId=THNMujfyEYSUy1azYBShBA%3D%3D&position=12&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/data-engineer-iii-network-at-crown-castle-3690481045", "company_name": "Crown Castle", "company_url": "https://www.linkedin.com/company/crown-castle?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://www.linkedin.com/company/crown-castle", "job_title": "Data Engineer III - Network", "job_location": "Englewood, CO", "posted_date": "2023-09-01", "normalized_company_name": "Crown castle"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-41-56-462420.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-41-56-462420.json new file mode 100644 index 00000000..0e88a5f3 --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-41-56-462420.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/data-engineer-iii-network-at-crown-castle-3690476555?refId=X6TZRLu5mn%2B%2B%2F%2BU9Loi1HA%3D%3D&trackingId=z4wdj%2FDtHG2TwXslKXdAyQ%3D%3D&position=13&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/data-engineer-iii-network-at-crown-castle-3690476555", "company_name": "Crown Castle", "company_url": "https://www.linkedin.com/company/crown-castle?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://www.linkedin.com/company/crown-castle", "job_title": "Data Engineer III - Network", "job_location": "Phoenix, AZ", "posted_date": "2023-09-01", "normalized_company_name": "Crown castle"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-41-56-462706.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-41-56-462706.json new file mode 100644 index 00000000..463f7ec7 --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-41-56-462706.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/data-engineer-iii-network-at-crown-castle-3690480280?refId=X6TZRLu5mn%2B%2B%2F%2BU9Loi1HA%3D%3D&trackingId=fhE4t6g3Ex9%2BzClGhU8L8w%3D%3D&position=14&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/data-engineer-iii-network-at-crown-castle-3690480280", "company_name": "Crown Castle", "company_url": "https://www.linkedin.com/company/crown-castle?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://www.linkedin.com/company/crown-castle", "job_title": "Data Engineer III - Network", "job_location": "San Diego, CA", "posted_date": "2023-09-01", "normalized_company_name": "Crown castle"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-41-56-462975.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-41-56-462975.json new file mode 100644 index 00000000..399452f9 --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-41-56-462975.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/data-engineer-iii-network-at-crown-castle-3690475817?refId=X6TZRLu5mn%2B%2B%2F%2BU9Loi1HA%3D%3D&trackingId=WrAq1OOveSnNLtE2cv0HUg%3D%3D&position=15&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/data-engineer-iii-network-at-crown-castle-3690475817", "company_name": "Crown Castle", "company_url": "https://www.linkedin.com/company/crown-castle?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://www.linkedin.com/company/crown-castle", "job_title": "Data Engineer III - Network", "job_location": "Irvine, CA", "posted_date": "2023-09-01", "normalized_company_name": "Crown castle"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-41-56-463227.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-41-56-463227.json new file mode 100644 index 00000000..8e37745f --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-41-56-463227.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/data-engineer-iii-network-at-crown-castle-3690475814?refId=X6TZRLu5mn%2B%2B%2F%2BU9Loi1HA%3D%3D&trackingId=E02VL5gnIOh4fh%2BgjQaNtA%3D%3D&position=16&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/data-engineer-iii-network-at-crown-castle-3690475814", "company_name": "Crown Castle", "company_url": "https://www.linkedin.com/company/crown-castle?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://www.linkedin.com/company/crown-castle", "job_title": "Data Engineer III - Network", "job_location": "Melville, NY", "posted_date": "2023-09-01", "normalized_company_name": "Crown castle"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-41-56-463507.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-41-56-463507.json new file mode 100644 index 00000000..56ec6000 --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-41-56-463507.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/data-engineer-iii-network-at-crown-castle-3690473949?refId=X6TZRLu5mn%2B%2B%2F%2BU9Loi1HA%3D%3D&trackingId=w%2BvRs5Kxt5WgGoHkyncvwQ%3D%3D&position=17&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/data-engineer-iii-network-at-crown-castle-3690473949", "company_name": "Crown Castle", "company_url": "https://www.linkedin.com/company/crown-castle?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://www.linkedin.com/company/crown-castle", "job_title": "Data Engineer III - Network", "job_location": "Herndon, VA", "posted_date": "2023-09-01", "normalized_company_name": "Crown castle"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-41-56-463906.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-41-56-463906.json new file mode 100644 index 00000000..1b7465e1 --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-41-56-463906.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/data-engineer-iii-network-at-crown-castle-3690475933?refId=X6TZRLu5mn%2B%2B%2F%2BU9Loi1HA%3D%3D&trackingId=Tbd%2BSB27kGZRNz%2B7LvKRlg%3D%3D&position=18&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/data-engineer-iii-network-at-crown-castle-3690475933", "company_name": "Crown Castle", "company_url": "https://www.linkedin.com/company/crown-castle?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://www.linkedin.com/company/crown-castle", "job_title": "Data Engineer III - Network", "job_location": "Seattle, WA", "posted_date": "2023-09-01", "normalized_company_name": "Crown castle"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-41-56-464212.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-41-56-464212.json new file mode 100644 index 00000000..f20b324e --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-41-56-464212.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/distinguished-software-engineer-machine-learning-platform-at-upstart-3636946366?refId=X6TZRLu5mn%2B%2B%2F%2BU9Loi1HA%3D%3D&trackingId=1a3v%2FyYLknVJUYPb5VHDBQ%3D%3D&position=19&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/distinguished-software-engineer-machine-learning-platform-at-upstart-3636946366", "company_name": "Upstart", "company_url": "https://www.linkedin.com/company/upstart-network?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://www.linkedin.com/company/upstart-network", "job_title": "Distinguished Software Engineer, Machine Learning Platform", "job_location": "United States", "posted_date": "2023-08-18", "normalized_company_name": "Upstart network"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-41-56-464493.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-41-56-464493.json new file mode 100644 index 00000000..94cc9971 --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-41-56-464493.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/principal-software-engineer-at-cloudzero-3713950014?refId=X6TZRLu5mn%2B%2B%2F%2BU9Loi1HA%3D%3D&trackingId=ElADuargEBL%2FrHeQkC%2BQuQ%3D%3D&position=20&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/principal-software-engineer-at-cloudzero-3713950014", "company_name": "CloudZero", "company_url": "https://www.linkedin.com/company/cloudzero?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://www.linkedin.com/company/cloudzero", "job_title": "Principal Software Engineer", "job_location": "Boston, MA", "posted_date": "2023-09-07", "normalized_company_name": "Cloudzero"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-41-56-464749.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-41-56-464749.json new file mode 100644 index 00000000..7bfc3474 --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-41-56-464749.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/staff-principal-data-scientist-at-enveda-biosciences-3705615257?refId=X6TZRLu5mn%2B%2B%2F%2BU9Loi1HA%3D%3D&trackingId=nrE5D8w0jP5NPOQUDuaWJA%3D%3D&position=21&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/staff-principal-data-scientist-at-enveda-biosciences-3705615257", "company_name": "Enveda Biosciences", "company_url": "https://www.linkedin.com/company/envedabio?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://www.linkedin.com/company/envedabio", "job_title": "Staff / Principal Data Scientist", "job_location": "United States", "posted_date": "2023-09-05", "normalized_company_name": "Envedabio"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-41-56-464990.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-41-56-464990.json new file mode 100644 index 00000000..64ea7fc2 --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-41-56-464990.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/principal-software-engineer-front-end-specialist-remote-at-arcules-3710665691?refId=X6TZRLu5mn%2B%2B%2F%2BU9Loi1HA%3D%3D&trackingId=7KTnGhVHXLsIxOkpLutGmg%3D%3D&position=22&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/principal-software-engineer-front-end-specialist-remote-at-arcules-3710665691", "company_name": "Arcules", "company_url": "https://www.linkedin.com/company/arcules?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://www.linkedin.com/company/arcules", "job_title": "Principal Software Engineer - Front-End Specialist (Remote)", "job_location": "Irvine, CA", "posted_date": "2023-09-05", "normalized_company_name": "Arcules"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-41-56-465238.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-41-56-465238.json new file mode 100644 index 00000000..a6224cc1 --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-41-56-465238.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/principal-machine-learning-engineer-at-gradient-zero-3681251577?refId=X6TZRLu5mn%2B%2B%2F%2BU9Loi1HA%3D%3D&trackingId=lUTNkbQBJQF63FUFPcOWHw%3D%3D&position=23&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/principal-machine-learning-engineer-at-gradient-zero-3681251577", "company_name": "Gradient Zero", "company_url": "https://www.linkedin.com/company/gradient-zero-inc?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://www.linkedin.com/company/gradient-zero-inc", "job_title": "Principal Machine Learning Engineer", "job_location": "Herndon, VA", "posted_date": "2023-07-31", "normalized_company_name": "Gradient zero inc"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-41-56-465480.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-41-56-465480.json new file mode 100644 index 00000000..315fc319 --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-41-56-465480.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/principal-machine-learning-engineer-at-atlassian-3703175129?refId=X6TZRLu5mn%2B%2B%2F%2BU9Loi1HA%3D%3D&trackingId=GFixMycDk7NvUIXuHdRjkw%3D%3D&position=24&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/principal-machine-learning-engineer-at-atlassian-3703175129", "company_name": "Atlassian", "company_url": "https://au.linkedin.com/company/atlassian?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://au.linkedin.com/company/atlassian", "job_title": "Principal Machine Learning Engineer", "job_location": "Mountain View, CA", "posted_date": "2023-09-01", "normalized_company_name": "Atlassian"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-41-56-465737.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-41-56-465737.json new file mode 100644 index 00000000..4be79f9a --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-41-56-465737.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/principal-machine-learning-operations-engineer-at-next-ventures-3690950113?refId=X6TZRLu5mn%2B%2B%2F%2BU9Loi1HA%3D%3D&trackingId=XL8MU6vWaxN1X0uawrVd%2FA%3D%3D&position=25&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/principal-machine-learning-operations-engineer-at-next-ventures-3690950113", "company_name": "Next Ventures", "company_url": "https://uk.linkedin.com/company/next-ventures?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://uk.linkedin.com/company/next-ventures", "job_title": "Principal Machine Learning Operations Engineer", "job_location": "New York City Metropolitan Area", "posted_date": "2023-08-14", "normalized_company_name": "Next ventures"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-41-58-349937.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-41-58-349937.json new file mode 100644 index 00000000..7782268d --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-41-58-349937.json @@ -0,0 +1 @@ +"jobs" \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-41-59-989058.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-41-59-989058.json new file mode 100644 index 00000000..c012e508 --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-41-59-989058.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/senior-data-scientist-at-equipmentshare-3620741618?refId=1tWMFsysvjrooZYZ%2FRqZ0Q%3D%3D&trackingId=Ee%2FqiH4bxjPSPQjwfwVhvg%3D%3D&position=1&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/senior-data-scientist-at-equipmentshare-3620741618", "company_name": "EquipmentShare", "company_url": "https://www.linkedin.com/company/equipmentshare?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://www.linkedin.com/company/equipmentshare", "job_title": "Senior Data Scientist", "job_location": "Kansas City, MO", "posted_date": "2023-08-24", "normalized_company_name": "Equipmentshare"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-41-59-990600.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-41-59-990600.json new file mode 100644 index 00000000..8b262cfc --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-41-59-990600.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/data-science-manager-risk-interventions-at-stripe-3618026054?refId=1tWMFsysvjrooZYZ%2FRqZ0Q%3D%3D&trackingId=khJoZ1V%2BmI3nzOIfajyx1g%3D%3D&position=2&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/data-science-manager-risk-interventions-at-stripe-3618026054", "company_name": "Stripe", "company_url": "https://www.linkedin.com/company/stripe?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://www.linkedin.com/company/stripe", "job_title": "Data Science Manager, Risk Interventions", "job_location": "United States", "posted_date": "2023-05-25", "normalized_company_name": "Stripe"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-41-59-991056.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-41-59-991056.json new file mode 100644 index 00000000..366e3f6b --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-41-59-991056.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/senior-bioinformatics-research-engineer-remote-at-biospace-3697925455?refId=1tWMFsysvjrooZYZ%2FRqZ0Q%3D%3D&trackingId=a4cDIBrHbtUW0WvqQBqivw%3D%3D&position=3&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/senior-bioinformatics-research-engineer-remote-at-biospace-3697925455", "company_name": "BioSpace", "company_url": "https://www.linkedin.com/company/biospaceinc?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://www.linkedin.com/company/biospaceinc", "job_title": "Senior Bioinformatics Research Engineer (Remote)", "job_location": "South San Francisco, CA", "posted_date": "2023-08-18", "normalized_company_name": "Biospaceinc"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-41-59-991477.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-41-59-991477.json new file mode 100644 index 00000000..5bbf5f46 --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-41-59-991477.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/senior-machine-learning-engineer-price-freeze-100%25-remote-at-hopper-3696350530?refId=1tWMFsysvjrooZYZ%2FRqZ0Q%3D%3D&trackingId=Px4bNzjjyc1V%2B6P9z0LpqA%3D%3D&position=4&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/senior-machine-learning-engineer-price-freeze-100%25-remote-at-hopper-3696350530", "company_name": "Hopper", "company_url": "https://ca.linkedin.com/company/hopper?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://ca.linkedin.com/company/hopper", "job_title": "Senior Machine Learning Engineer- Price Freeze (100% remote)", "job_location": "United States", "posted_date": "2023-08-21", "normalized_company_name": "Hopper"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-41-59-991821.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-41-59-991821.json new file mode 100644 index 00000000..88b10f13 --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-41-59-991821.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/senior-machine-learning-engineer-price-freeze-100%25-remote-at-hopper-3696351488?refId=1tWMFsysvjrooZYZ%2FRqZ0Q%3D%3D&trackingId=PAPG7CHElQgO1zvGTvmmFQ%3D%3D&position=5&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/senior-machine-learning-engineer-price-freeze-100%25-remote-at-hopper-3696351488", "company_name": "Hopper", "company_url": "https://ca.linkedin.com/company/hopper?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://ca.linkedin.com/company/hopper", "job_title": "Senior Machine Learning Engineer- Price Freeze (100% remote)", "job_location": "United States", "posted_date": "2023-08-21", "normalized_company_name": "Hopper"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-41-59-992096.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-41-59-992096.json new file mode 100644 index 00000000..a6a1bab4 --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-41-59-992096.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/senior-machine-learning-engineer-price-freeze-100%25-remote-at-hopper-3696352373?refId=1tWMFsysvjrooZYZ%2FRqZ0Q%3D%3D&trackingId=GyH%2BXO7upqy2CnFsxa9Ylw%3D%3D&position=6&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/senior-machine-learning-engineer-price-freeze-100%25-remote-at-hopper-3696352373", "company_name": "Hopper", "company_url": "https://ca.linkedin.com/company/hopper?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://ca.linkedin.com/company/hopper", "job_title": "Senior Machine Learning Engineer- Price Freeze (100% remote)", "job_location": "United States", "posted_date": "2023-08-21", "normalized_company_name": "Hopper"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-41-59-992364.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-41-59-992364.json new file mode 100644 index 00000000..f6d31038 --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-41-59-992364.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/senior-machine-learning-engineer-ii-behaviors-at-cruise-3681752624?refId=1tWMFsysvjrooZYZ%2FRqZ0Q%3D%3D&trackingId=AYAHb649HCxCybueGOI6fg%3D%3D&position=7&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/senior-machine-learning-engineer-ii-behaviors-at-cruise-3681752624", "company_name": "Cruise", "company_url": "https://www.linkedin.com/company/getcruise?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://www.linkedin.com/company/getcruise", "job_title": "Senior Machine Learning Engineer II, Behaviors", "job_location": "United States", "posted_date": "2023-08-23", "normalized_company_name": "Getcruise"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-41-59-992640.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-41-59-992640.json new file mode 100644 index 00000000..a807b696 --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-41-59-992640.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/senior-machine-learning-engineer-at-tubi-3590921218?refId=1tWMFsysvjrooZYZ%2FRqZ0Q%3D%3D&trackingId=91%2BzC6L20KSwTgtExqKAvw%3D%3D&position=8&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/senior-machine-learning-engineer-at-tubi-3590921218", "company_name": "Tubi", "company_url": "https://www.linkedin.com/company/tubi-tv?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://www.linkedin.com/company/tubi-tv", "job_title": "Senior Machine Learning Engineer", "job_location": "San Francisco, CA", "posted_date": "2023-07-06", "normalized_company_name": "Tubi tv"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-41-59-992903.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-41-59-992903.json new file mode 100644 index 00000000..fb0af48d --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-41-59-992903.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/senior-machine-learning-engineer-i-fulfillment-at-etsy-3689440395?refId=1tWMFsysvjrooZYZ%2FRqZ0Q%3D%3D&trackingId=tTtQsZtlp9sN5xjOALv8Ug%3D%3D&position=9&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/senior-machine-learning-engineer-i-fulfillment-at-etsy-3689440395", "company_name": "Etsy", "company_url": "https://www.linkedin.com/company/etsy?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://www.linkedin.com/company/etsy", "job_title": "Senior Machine Learning Engineer I, Fulfillment", "job_location": "Brooklyn, NY", "posted_date": "2023-08-18", "normalized_company_name": "Etsy"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-41-59-996492.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-41-59-996492.json new file mode 100644 index 00000000..709e6f17 --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-41-59-996492.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/senior-machine-learning-engineer-usa-at-mas-global-consulting-3673598089?refId=1tWMFsysvjrooZYZ%2FRqZ0Q%3D%3D&trackingId=Lw9Gvrf6yW15KVW%2Bh2Ck1A%3D%3D&position=10&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/senior-machine-learning-engineer-usa-at-mas-global-consulting-3673598089", "company_name": "MAS Global Consulting", "company_url": "https://www.linkedin.com/company/mas-global-consulting?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://www.linkedin.com/company/mas-global-consulting", "job_title": "Senior Machine Learning Engineer | USA", "job_location": "New York, NY", "posted_date": "2023-07-27", "normalized_company_name": "Mas global consulting"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-41-59-996906.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-41-59-996906.json new file mode 100644 index 00000000..e09adb9d --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-41-59-996906.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/senior-machine-learning-engineer-remote-at-curai-health-3575094434?refId=1tWMFsysvjrooZYZ%2FRqZ0Q%3D%3D&trackingId=l3pfXkPosd1mb8rBvMgnjw%3D%3D&position=11&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/senior-machine-learning-engineer-remote-at-curai-health-3575094434", "company_name": "Curai Health", "company_url": "https://www.linkedin.com/company/curai?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://www.linkedin.com/company/curai", "job_title": "Senior Machine Learning Engineer (Remote)", "job_location": "San Francisco Bay Area", "posted_date": "2023-03-29", "normalized_company_name": "Curai"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-41-59-997174.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-41-59-997174.json new file mode 100644 index 00000000..d5b70931 --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-41-59-997174.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/senior-staff-machine-learning-engineer-trust-at-airbnb-3638856584?refId=1tWMFsysvjrooZYZ%2FRqZ0Q%3D%3D&trackingId=ewHd4Tbtey91Jz7mK5d6bQ%3D%3D&position=12&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/senior-staff-machine-learning-engineer-trust-at-airbnb-3638856584", "company_name": "Airbnb", "company_url": "https://www.linkedin.com/company/airbnb?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://www.linkedin.com/company/airbnb", "job_title": "Senior Staff Machine Learning Engineer, Trust", "job_location": "United States", "posted_date": "2023-08-26", "normalized_company_name": "Airbnb"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-41-59-997415.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-41-59-997415.json new file mode 100644 index 00000000..84ed9c32 --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-41-59-997415.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/senior-machine-learning-engineer-perception-autonomous-vehicles-next-gen-at-nvidia-3706627282?refId=1tWMFsysvjrooZYZ%2FRqZ0Q%3D%3D&trackingId=Yow48dKCybcaQ87sYu0MWg%3D%3D&position=13&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/senior-machine-learning-engineer-perception-autonomous-vehicles-next-gen-at-nvidia-3706627282", "company_name": "NVIDIA", "company_url": "https://www.linkedin.com/company/nvidia?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://www.linkedin.com/company/nvidia", "job_title": "Senior Machine Learning Engineer, Perception - Autonomous Vehicles Next-Gen", "job_location": "California, United States", "posted_date": "2023-08-29", "normalized_company_name": "Nvidia"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-41-59-997646.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-41-59-997646.json new file mode 100644 index 00000000..5ca454fd --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-41-59-997646.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/senior-machine-learning-engineer-at-cricut-3656661084?refId=1tWMFsysvjrooZYZ%2FRqZ0Q%3D%3D&trackingId=kvA9MVJuRj1tRtYnB5cTow%3D%3D&position=14&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/senior-machine-learning-engineer-at-cricut-3656661084", "company_name": "Cricut", "company_url": "https://www.linkedin.com/company/cricut?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://www.linkedin.com/company/cricut", "job_title": "Senior Machine Learning Engineer", "job_location": "South Jordan, UT", "posted_date": "2023-08-18", "normalized_company_name": "Cricut"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-41-59-998149.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-41-59-998149.json new file mode 100644 index 00000000..4dbfa1ac --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-41-59-998149.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/senior-machine-learning-engineer-at-allurion-technologies-3700229431?refId=1tWMFsysvjrooZYZ%2FRqZ0Q%3D%3D&trackingId=sefeJL%2BrRIqQVBrkZNpn6w%3D%3D&position=15&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/senior-machine-learning-engineer-at-allurion-technologies-3700229431", "company_name": "Allurion Technologies", "company_url": "https://www.linkedin.com/company/allurion-technologies?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://www.linkedin.com/company/allurion-technologies", "job_title": "Senior Machine Learning Engineer", "job_location": "Natick, MA", "posted_date": "2023-08-25", "normalized_company_name": "Allurion technologies"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-41-59-998525.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-41-59-998525.json new file mode 100644 index 00000000..5b88ac3e --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-41-59-998525.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/senior-machine-learning-engineer-i-remote-eligible-at-smartsheet-3653243698?refId=1tWMFsysvjrooZYZ%2FRqZ0Q%3D%3D&trackingId=VaeWwWF0qzQ7aRPgrOkAVw%3D%3D&position=16&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/senior-machine-learning-engineer-i-remote-eligible-at-smartsheet-3653243698", "company_name": "Smartsheet", "company_url": "https://www.linkedin.com/company/smartsheet-com?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://www.linkedin.com/company/smartsheet-com", "job_title": "Senior Machine Learning Engineer I (Remote Eligible)", "job_location": "Bellevue, WA", "posted_date": "2023-08-19", "normalized_company_name": "Smartsheet com"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-41-59-998787.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-41-59-998787.json new file mode 100644 index 00000000..0f6bd312 --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-41-59-998787.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/senior-machine-learning-engineer-at-pryon-3705769530?refId=1tWMFsysvjrooZYZ%2FRqZ0Q%3D%3D&trackingId=5P2PoZhwx6cUttamt%2FiWtA%3D%3D&position=17&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/senior-machine-learning-engineer-at-pryon-3705769530", "company_name": "Pryon", "company_url": "https://www.linkedin.com/company/pryon?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://www.linkedin.com/company/pryon", "job_title": "Senior Machine Learning Engineer", "job_location": "Boston, MA", "posted_date": "2023-08-14", "normalized_company_name": "Pryon"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-41-59-999030.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-41-59-999030.json new file mode 100644 index 00000000..58893afa --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-41-59-999030.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/senior-staff-machine-learning-engineer-behaviors-at-cruise-3298308052?refId=1tWMFsysvjrooZYZ%2FRqZ0Q%3D%3D&trackingId=HhZ7qUqZxdX%2Fv%2FkPPhMEQw%3D%3D&position=18&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/senior-staff-machine-learning-engineer-behaviors-at-cruise-3298308052", "company_name": "Cruise", "company_url": "https://www.linkedin.com/company/getcruise?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://www.linkedin.com/company/getcruise", "job_title": "Senior Staff Machine Learning Engineer, Behaviors", "job_location": "United States", "posted_date": "2023-08-25", "normalized_company_name": "Getcruise"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-41-59-999246.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-41-59-999246.json new file mode 100644 index 00000000..865d4b9f --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-41-59-999246.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/expression-of-interest-senior-machine-learning-engineer-at-fingerprint-for-success-f4s-3713158170?refId=1tWMFsysvjrooZYZ%2FRqZ0Q%3D%3D&trackingId=pyTZNhLWPKPknZOOgb0skQ%3D%3D&position=19&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/expression-of-interest-senior-machine-learning-engineer-at-fingerprint-for-success-f4s-3713158170", "company_name": "Fingerprint for Success (F4S)", "company_url": "https://au.linkedin.com/company/fingerprint-for-success?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://au.linkedin.com/company/fingerprint-for-success", "job_title": "Expression of Interest: Senior Machine Learning Engineer", "job_location": "United States", "posted_date": "2023-08-11", "normalized_company_name": "Fingerprint for success"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-41-59-999456.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-41-59-999456.json new file mode 100644 index 00000000..705cfaab --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-41-59-999456.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/senior-machine-learning-engineer-at-chartbeat-3692588028?refId=1tWMFsysvjrooZYZ%2FRqZ0Q%3D%3D&trackingId=ba3InWldmJHpFPV5E7NkHw%3D%3D&position=20&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/senior-machine-learning-engineer-at-chartbeat-3692588028", "company_name": "Chartbeat", "company_url": "https://www.linkedin.com/company/chartbeat?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://www.linkedin.com/company/chartbeat", "job_title": "Senior Machine Learning Engineer", "job_location": "New York, NY", "posted_date": "2023-08-16", "normalized_company_name": "Chartbeat"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-41-59-999663.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-41-59-999663.json new file mode 100644 index 00000000..e522751d --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-41-59-999663.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/senior-machine-learning-engineer-remote-position-at-entefy-3575080769?refId=1tWMFsysvjrooZYZ%2FRqZ0Q%3D%3D&trackingId=NVFhpvratlMHwpEvSgdK1A%3D%3D&position=21&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/senior-machine-learning-engineer-remote-position-at-entefy-3575080769", "company_name": "Entefy", "company_url": "https://www.linkedin.com/company/entefy?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://www.linkedin.com/company/entefy", "job_title": "Senior Machine Learning Engineer (Remote Position)", "job_location": "United States", "posted_date": "2023-03-29", "normalized_company_name": "Entefy"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-41-59-999860.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-41-59-999860.json new file mode 100644 index 00000000..1ae79dca --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-41-59-999860.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/lead-machine-learning-engineer-at-harnham-3702176845?refId=1tWMFsysvjrooZYZ%2FRqZ0Q%3D%3D&trackingId=R1RPizkeGyUrQzCfO8lFpg%3D%3D&position=22&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/lead-machine-learning-engineer-at-harnham-3702176845", "company_name": "Harnham", "company_url": "https://uk.linkedin.com/company/harnham?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://uk.linkedin.com/company/harnham", "job_title": "Lead Machine Learning Engineer", "job_location": "United States", "posted_date": "2023-08-23", "normalized_company_name": "Harnham"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-00-000054.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-00-000054.json new file mode 100644 index 00000000..0a29c112 --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-00-000054.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/senior-staff-machine-learning-engineer-perception-at-cruise-3535351547?refId=1tWMFsysvjrooZYZ%2FRqZ0Q%3D%3D&trackingId=6A6uO9X1D4PBjaKcJstQ8Q%3D%3D&position=23&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/senior-staff-machine-learning-engineer-perception-at-cruise-3535351547", "company_name": "Cruise", "company_url": "https://www.linkedin.com/company/getcruise?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://www.linkedin.com/company/getcruise", "job_title": "Senior Staff Machine Learning Engineer, Perception", "job_location": "United States", "posted_date": "2023-08-17", "normalized_company_name": "Getcruise"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-00-000278.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-00-000278.json new file mode 100644 index 00000000..5851829d --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-00-000278.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/senior-machine-learning-engineer-usa-at-kalepa-3693368044?refId=1tWMFsysvjrooZYZ%2FRqZ0Q%3D%3D&trackingId=s3NaddLWob0FwlFU0uO7tw%3D%3D&position=24&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/senior-machine-learning-engineer-usa-at-kalepa-3693368044", "company_name": "Kalepa", "company_url": "https://www.linkedin.com/company/kalepa?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://www.linkedin.com/company/kalepa", "job_title": "Senior Machine Learning Engineer (USA)", "job_location": "New York, NY", "posted_date": "2023-08-17", "normalized_company_name": "Kalepa"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-00-000488.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-00-000488.json new file mode 100644 index 00000000..9b66fce7 --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-00-000488.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/senior-machine-learning-engineer-at-harnham-3702985808?refId=1tWMFsysvjrooZYZ%2FRqZ0Q%3D%3D&trackingId=dweBqV2LIk5GWvAUoS2i9Q%3D%3D&position=25&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/senior-machine-learning-engineer-at-harnham-3702985808", "company_name": "Harnham", "company_url": "https://uk.linkedin.com/company/harnham?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://uk.linkedin.com/company/harnham", "job_title": "Senior Machine Learning Engineer", "job_location": "United States", "posted_date": "2023-08-24", "normalized_company_name": "Harnham"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-01-760921.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-01-760921.json new file mode 100644 index 00000000..7782268d --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-01-760921.json @@ -0,0 +1 @@ +"jobs" \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-03-300444.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-03-300444.json new file mode 100644 index 00000000..c2f85394 --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-03-300444.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/lead-ai-ml-engineer-founding-team-at-nookly-3689428394?refId=YVgGkc4qQjFQ5ht%2FIW3jew%3D%3D&trackingId=BmB5BN1upJ%2FY85R8wF7jDw%3D%3D&position=1&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/lead-ai-ml-engineer-founding-team-at-nookly-3689428394", "company_name": "Nookly", "company_url": "https://www.linkedin.com/company/nookly?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://www.linkedin.com/company/nookly", "job_title": "Lead AI/ML Engineer (Founding Team)", "job_location": "California, United States", "posted_date": "2023-08-11", "normalized_company_name": "Nookly"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-03-301759.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-03-301759.json new file mode 100644 index 00000000..89992d66 --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-03-301759.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/senior-data-analytics-and-machine-learning-software-developer-at-harmonia-holdings-group-llc-3684977613?refId=YVgGkc4qQjFQ5ht%2FIW3jew%3D%3D&trackingId=7973umzWuouCuupoeccwxw%3D%3D&position=2&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/senior-data-analytics-and-machine-learning-software-developer-at-harmonia-holdings-group-llc-3684977613", "company_name": "Harmonia Holdings Group, LLC", "company_url": "https://www.linkedin.com/company/harmonia-holdings-group-llc?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://www.linkedin.com/company/harmonia-holdings-group-llc", "job_title": "Senior Data Analytics and Machine Learning Software Developer", "job_location": "McLean, VA", "posted_date": "2023-09-01", "normalized_company_name": "Harmonia holdings group llc"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-03-302213.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-03-302213.json new file mode 100644 index 00000000..91402fde --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-03-302213.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/founding-machine-learning-engineer-llm-at-dealdriver-ai-3696152942?refId=YVgGkc4qQjFQ5ht%2FIW3jew%3D%3D&trackingId=tMnVvog%2FFJw0jYPhOaEG5g%3D%3D&position=3&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/founding-machine-learning-engineer-llm-at-dealdriver-ai-3696152942", "company_name": "DealDriver AI", "company_url": "https://www.linkedin.com/company/dealdriverai?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://www.linkedin.com/company/dealdriverai", "job_title": "Founding Machine Learning Engineer - LLM", "job_location": "San Francisco, CA", "posted_date": "2023-08-16", "normalized_company_name": "Dealdriverai"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-03-302512.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-03-302512.json new file mode 100644 index 00000000..2f85c22d --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-03-302512.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/senior-moneyball-cv-ai-image-classification-feature-extraction-engineer-at-darkhorse-3668129790?refId=YVgGkc4qQjFQ5ht%2FIW3jew%3D%3D&trackingId=VKULmf%2FkIYlvRhfyMoR0GQ%3D%3D&position=4&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/senior-moneyball-cv-ai-image-classification-feature-extraction-engineer-at-darkhorse-3668129790", "company_name": "DarkHorse", "company_url": "https://www.linkedin.com/company/sonador-inc?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://www.linkedin.com/company/sonador-inc", "job_title": "Senior Moneyball CV-AI Image Classification, Feature Extraction Engineer", "job_location": "Menlo Park, CA", "posted_date": "2023-07-18", "normalized_company_name": "Sonador inc"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-03-302754.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-03-302754.json new file mode 100644 index 00000000..f83265dd --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-03-302754.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/machine-learning-software-engineer-iii-at-skyslope-3705618017?refId=YVgGkc4qQjFQ5ht%2FIW3jew%3D%3D&trackingId=gKyMnoDVgy%2BRBsXG%2FfvnSg%3D%3D&position=5&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/machine-learning-software-engineer-iii-at-skyslope-3705618017", "company_name": "SkySlope", "company_url": "https://www.linkedin.com/company/skyslope?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://www.linkedin.com/company/skyslope", "job_title": "Machine Learning Software Engineer III", "job_location": "Elkhart County, IN", "posted_date": "2023-09-05", "normalized_company_name": "Skyslope"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-03-302983.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-03-302983.json new file mode 100644 index 00000000..6f99f9dc --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-03-302983.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/senior-developer-relations-manager-generative-ai-at-nvidia-3688252160?refId=YVgGkc4qQjFQ5ht%2FIW3jew%3D%3D&trackingId=9J5wE%2FugU4f2Y%2BU29siQVg%3D%3D&position=6&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/senior-developer-relations-manager-generative-ai-at-nvidia-3688252160", "company_name": "NVIDIA", "company_url": "https://www.linkedin.com/company/nvidia?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://www.linkedin.com/company/nvidia", "job_title": "Senior Developer Relations Manager, Generative AI", "job_location": "California, United States", "posted_date": "2023-08-29", "normalized_company_name": "Nvidia"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-03-303186.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-03-303186.json new file mode 100644 index 00000000..fc6d9c91 --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-03-303186.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/staff-machine-learning-engineer-support-products-at-airbnb-3639409238?refId=YVgGkc4qQjFQ5ht%2FIW3jew%3D%3D&trackingId=ynPniXcO4%2B6x6KG%2BpqE7Ew%3D%3D&position=7&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/staff-machine-learning-engineer-support-products-at-airbnb-3639409238", "company_name": "Airbnb", "company_url": "https://www.linkedin.com/company/airbnb?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://www.linkedin.com/company/airbnb", "job_title": "Staff Machine Learning Engineer, Support Products", "job_location": "United States", "posted_date": "2023-08-27", "normalized_company_name": "Airbnb"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-03-303394.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-03-303394.json new file mode 100644 index 00000000..5f0469e7 --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-03-303394.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/tableau-data-architect-data-scientist-at-kolter-solutions-3688481437?refId=YVgGkc4qQjFQ5ht%2FIW3jew%3D%3D&trackingId=Sq4664H%2FeG6tzehpyiX9XA%3D%3D&position=8&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/tableau-data-architect-data-scientist-at-kolter-solutions-3688481437", "company_name": "Kolter Solutions", "company_url": "https://www.linkedin.com/company/kolter-solutions?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://www.linkedin.com/company/kolter-solutions", "job_title": "Tableau Data Architect/Data Scientist", "job_location": "United States", "posted_date": "2023-08-10", "normalized_company_name": "Kolter solutions"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-03-303777.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-03-303777.json new file mode 100644 index 00000000..72cececb --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-03-303777.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/project-manager-software-engineer-data-science-machine-learning-remote-wfh-at-get-it-recruit-information-technology-3688198242?refId=YVgGkc4qQjFQ5ht%2FIW3jew%3D%3D&trackingId=ySw6dsoKFTtPUa6eQ39yfA%3D%3D&position=9&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/project-manager-software-engineer-data-science-machine-learning-remote-wfh-at-get-it-recruit-information-technology-3688198242", "company_name": "Get It Recruit - Information Technology", "company_url": "https://www.linkedin.com/company/get-it-recruit-information-technology?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://www.linkedin.com/company/get-it-recruit-information-technology", "job_title": "Project Manager/Software Engineer - Data Science - Machine Learning - Remote | WFH", "job_location": "Washington, DC", "posted_date": "2023-08-15", "normalized_company_name": "Get it recruit information technology"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-03-303991.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-03-303991.json new file mode 100644 index 00000000..3372ac51 --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-03-303991.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/remote-data-architect-scientist-1317-at-zapata-technology-3705772780?refId=YVgGkc4qQjFQ5ht%2FIW3jew%3D%3D&trackingId=bzgMc2wAxYDBUvePILI13A%3D%3D&position=10&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/remote-data-architect-scientist-1317-at-zapata-technology-3705772780", "company_name": "Zapata Technology", "company_url": "https://www.linkedin.com/company/zapatatechnology?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://www.linkedin.com/company/zapatatechnology", "job_title": "Remote Data Architect / Scientist (1317)", "job_location": "Augusta, GA", "posted_date": "2023-09-06", "normalized_company_name": "Zapatatechnology"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-03-304207.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-03-304207.json new file mode 100644 index 00000000..c8dc1933 --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-03-304207.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/lead-software-engineer-ui-ai-observability-remote-at-new-relic-3682029906?refId=YVgGkc4qQjFQ5ht%2FIW3jew%3D%3D&trackingId=0bMSfhW3AxDqEiGO6aNiNg%3D%3D&position=11&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/lead-software-engineer-ui-ai-observability-remote-at-new-relic-3682029906", "company_name": "New Relic", "company_url": "https://www.linkedin.com/company/new-relic-inc-?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://www.linkedin.com/company/new-relic-inc-", "job_title": "Lead Software Engineer - UI AI Observability (Remote)", "job_location": "Houston, TX", "posted_date": "2023-08-23", "normalized_company_name": "New relic inc "} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-03-304514.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-03-304514.json new file mode 100644 index 00000000..e918ee5f --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-03-304514.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/regulatory-scientist-data-integrity-at-altria-3649672111?refId=YVgGkc4qQjFQ5ht%2FIW3jew%3D%3D&trackingId=Y6miE47T8M68xqKBKsSz2g%3D%3D&position=12&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/regulatory-scientist-data-integrity-at-altria-3649672111", "company_name": "Altria", "company_url": "https://www.linkedin.com/company/altria?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://www.linkedin.com/company/altria", "job_title": "Regulatory Scientist, Data Integrity", "job_location": "Greater Richmond Region", "posted_date": "2023-08-25", "normalized_company_name": "Altria"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-03-304995.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-03-304995.json new file mode 100644 index 00000000..461c604e --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-03-304995.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/bd-manager-games-studios-metaverse-project-at-cryptorecruit-3694984567?refId=YVgGkc4qQjFQ5ht%2FIW3jew%3D%3D&trackingId=qnVl4ZN7p0tL67ZS10OONw%3D%3D&position=13&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/bd-manager-games-studios-metaverse-project-at-cryptorecruit-3694984567", "company_name": "CryptoRecruit", "company_url": "https://au.linkedin.com/company/cryptorecruit?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://au.linkedin.com/company/cryptorecruit", "job_title": "BD Manager, Games & Studios - Metaverse Project", "job_location": "United States", "posted_date": "2023-08-19", "normalized_company_name": "Cryptorecruit"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-03-305358.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-03-305358.json new file mode 100644 index 00000000..99709090 --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-03-305358.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/ai-ml-engineer-at-metafy-3713861751?refId=YVgGkc4qQjFQ5ht%2FIW3jew%3D%3D&trackingId=Em1PhmWVfo6V4narRo4xWw%3D%3D&position=14&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/ai-ml-engineer-at-metafy-3713861751", "company_name": "Metafy", "company_url": "https://www.linkedin.com/company/trymetafy?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://www.linkedin.com/company/trymetafy", "job_title": "AI/ML Engineer", "job_location": "New York, NY", "posted_date": "2023-08-30", "normalized_company_name": "Trymetafy"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-03-305640.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-03-305640.json new file mode 100644 index 00000000..b7f9aa46 --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-03-305640.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/entry-level-data-scientist-engineer-at-pattern-learning-ai-career-tech-recruitment-reimagined%21-3711058738?refId=YVgGkc4qQjFQ5ht%2FIW3jew%3D%3D&trackingId=0Ia%2BlQMX0J%2BHkrdRY2p%2BNQ%3D%3D&position=15&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/entry-level-data-scientist-engineer-at-pattern-learning-ai-career-tech-recruitment-reimagined%21-3711058738", "company_name": "Pattern Learning AI - Career & Tech Recruitment Reimagined!", "company_url": "https://www.linkedin.com/company/careerwithpatternlearning?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://www.linkedin.com/company/careerwithpatternlearning", "job_title": "Entry-Level Data Scientist Engineer", "job_location": "Tampa, FL", "posted_date": "2023-09-04", "normalized_company_name": "Careerwithpatternlearning"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-03-305870.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-03-305870.json new file mode 100644 index 00000000..553a601c --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-03-305870.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/ml-engineer-at-docyt-3670393692?refId=YVgGkc4qQjFQ5ht%2FIW3jew%3D%3D&trackingId=X1mDgSt%2BGkm20n47Q6Yo6A%3D%3D&position=16&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/ml-engineer-at-docyt-3670393692", "company_name": "Docyt", "company_url": "https://www.linkedin.com/company/docyt?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://www.linkedin.com/company/docyt", "job_title": "ML Engineer", "job_location": "Dallas, TX", "posted_date": "2023-07-20", "normalized_company_name": "Docyt"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-03-306097.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-03-306097.json new file mode 100644 index 00000000..7c248ea9 --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-03-306097.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/software-engineer-ai-ml-at-descript-3648295510?refId=YVgGkc4qQjFQ5ht%2FIW3jew%3D%3D&trackingId=1c2ToaZD%2FdkklDWHNMPvhw%3D%3D&position=17&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/software-engineer-ai-ml-at-descript-3648295510", "company_name": "Descript", "company_url": "https://www.linkedin.com/company/descript?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://www.linkedin.com/company/descript", "job_title": "Software Engineer - AI/ML", "job_location": "San Francisco, CA", "posted_date": "2023-06-23", "normalized_company_name": "Descript"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-03-306440.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-03-306440.json new file mode 100644 index 00000000..1b3c74d8 --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-03-306440.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/ai-engineer-remote-at-knowbl-3708547118?refId=YVgGkc4qQjFQ5ht%2FIW3jew%3D%3D&trackingId=fngJX7EkXv5%2B0ekaPU4icw%3D%3D&position=18&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/ai-engineer-remote-at-knowbl-3708547118", "company_name": "Knowbl", "company_url": "https://www.linkedin.com/company/knowbl?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://www.linkedin.com/company/knowbl", "job_title": "AI Engineer (Remote)", "job_location": "Northville, MI", "posted_date": "2023-08-07", "normalized_company_name": "Knowbl"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-03-306664.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-03-306664.json new file mode 100644 index 00000000..62ebaa84 --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-03-306664.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/machine-learning-developer-at-northwest-partners-3704970094?refId=YVgGkc4qQjFQ5ht%2FIW3jew%3D%3D&trackingId=9EiC9Wtz80%2Fkoy3RwQAEhQ%3D%3D&position=19&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/machine-learning-developer-at-northwest-partners-3704970094", "company_name": "Northwest Partners", "company_url": "https://www.linkedin.com/company/northwestpartners?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://www.linkedin.com/company/northwestpartners", "job_title": "Machine Learning Developer", "job_location": "United States", "posted_date": "2023-08-30", "normalized_company_name": "Northwestpartners"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-03-306886.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-03-306886.json new file mode 100644 index 00000000..8813c9c4 --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-03-306886.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/entry-level-data-scientist-engineer-us-canada-at-pattern-learning-ai-career-tech-recruitment-reimagined%21-3711214650?refId=YVgGkc4qQjFQ5ht%2FIW3jew%3D%3D&trackingId=ACewAE6fmltLQ7aI4n%2FD2Q%3D%3D&position=20&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/entry-level-data-scientist-engineer-us-canada-at-pattern-learning-ai-career-tech-recruitment-reimagined%21-3711214650", "company_name": "Pattern Learning AI - Career & Tech Recruitment Reimagined!", "company_url": "https://www.linkedin.com/company/careerwithpatternlearning?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://www.linkedin.com/company/careerwithpatternlearning", "job_title": "Entry-Level Data Scientist Engineer - US/Canada", "job_location": "Houston, TX", "posted_date": "2023-09-04", "normalized_company_name": "Careerwithpatternlearning"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-03-307085.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-03-307085.json new file mode 100644 index 00000000..88c385c2 --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-03-307085.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/machine-learning-engineer-at-tavus-3603332905?refId=YVgGkc4qQjFQ5ht%2FIW3jew%3D%3D&trackingId=ZR51nuTkdjQzT8pc7v%2Bfkg%3D%3D&position=21&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/machine-learning-engineer-at-tavus-3603332905", "company_name": "Tavus", "company_url": "https://www.linkedin.com/company/tavus-io?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://www.linkedin.com/company/tavus-io", "job_title": "Machine Learning Engineer", "job_location": "San Francisco, CA", "posted_date": "2023-05-10", "normalized_company_name": "Tavus io"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-03-307296.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-03-307296.json new file mode 100644 index 00000000..017d7ee0 --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-03-307296.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/machine-learning-engineer-at-shtudy-3667215059?refId=YVgGkc4qQjFQ5ht%2FIW3jew%3D%3D&trackingId=Tf8%2Bj%2BDiXaT2%2FaIzFyV4wg%3D%3D&position=22&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/machine-learning-engineer-at-shtudy-3667215059", "company_name": "Shtudy", "company_url": "https://www.linkedin.com/company/shtudy?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://www.linkedin.com/company/shtudy", "job_title": "Machine Learning Engineer", "job_location": "Washington, DC", "posted_date": "2023-06-22", "normalized_company_name": "Shtudy"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-03-307489.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-03-307489.json new file mode 100644 index 00000000..dace31c6 --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-03-307489.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/machine-learning-infra-engineer-at-cyberjin-3695170613?refId=YVgGkc4qQjFQ5ht%2FIW3jew%3D%3D&trackingId=nkLDVrkGNZrmUMAmaehy8Q%3D%3D&position=23&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/machine-learning-infra-engineer-at-cyberjin-3695170613", "company_name": "Cyberjin", "company_url": "https://www.linkedin.com/company/cyberjin?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://www.linkedin.com/company/cyberjin", "job_title": "Machine Learning Infra Engineer", "job_location": "Washington, DC", "posted_date": "2023-08-16", "normalized_company_name": "Cyberjin"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-03-307688.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-03-307688.json new file mode 100644 index 00000000..9510a537 --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-03-307688.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/machine-learning-infra-engineer-at-cyberjin-3694429401?refId=YVgGkc4qQjFQ5ht%2FIW3jew%3D%3D&trackingId=Jk0C0TIrCpnp1NB67y74EA%3D%3D&position=24&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/machine-learning-infra-engineer-at-cyberjin-3694429401", "company_name": "Cyberjin", "company_url": "https://www.linkedin.com/company/cyberjin?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://www.linkedin.com/company/cyberjin", "job_title": "Machine Learning Infra Engineer", "job_location": "Washington, DC", "posted_date": "2023-08-14", "normalized_company_name": "Cyberjin"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-03-307873.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-03-307873.json new file mode 100644 index 00000000..8ddccba8 --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-03-307873.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/artificial-intelligence-developer-at-it-minds-llc-3695475710?refId=YVgGkc4qQjFQ5ht%2FIW3jew%3D%3D&trackingId=%2BCtFDsfoQewZ9ZPs81rzig%3D%3D&position=25&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/artificial-intelligence-developer-at-it-minds-llc-3695475710", "company_name": "IT Minds LLC", "company_url": "https://www.linkedin.com/company/itminds-llc?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://www.linkedin.com/company/itminds-llc", "job_title": "Artificial Intelligence Developer", "job_location": "United States", "posted_date": "2023-08-24", "normalized_company_name": "Itminds llc"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-05-106533.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-05-106533.json new file mode 100644 index 00000000..7782268d --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-05-106533.json @@ -0,0 +1 @@ +"jobs" \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-07-090574.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-07-090574.json new file mode 100644 index 00000000..a7e11a23 --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-07-090574.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/senior-data-scientist-at-analytica-3701379599?refId=prJ%2BgKj7AUAXtj0W5a%2FNcg%3D%3D&trackingId=CdEJJUrePpIPSPTHQa2llw%3D%3D&position=1&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/senior-data-scientist-at-analytica-3701379599", "company_name": "Analytica", "company_url": "https://www.linkedin.com/company/analytica-inc?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://www.linkedin.com/company/analytica-inc", "job_title": "Senior Data Scientist", "job_location": "Washington, DC", "posted_date": "2023-08-22", "normalized_company_name": "Analytica inc"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-07-091658.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-07-091658.json new file mode 100644 index 00000000..07e0ef82 --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-07-091658.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/senior-data-scientist-us-remote-at-prealize-health-3678209550?refId=prJ%2BgKj7AUAXtj0W5a%2FNcg%3D%3D&trackingId=A8mtXiJCT3THfm3mceyXPg%3D%3D&position=2&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/senior-data-scientist-us-remote-at-prealize-health-3678209550", "company_name": "Prealize Health", "company_url": "https://www.linkedin.com/company/prealizehealth?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://www.linkedin.com/company/prealizehealth", "job_title": "Senior Data Scientist (US Remote)", "job_location": "San Francisco, CA", "posted_date": "2023-07-27", "normalized_company_name": "Prealizehealth"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-07-092017.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-07-092017.json new file mode 100644 index 00000000..516f0eaa --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-07-092017.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/lead-data-scientist-at-natera-3675145276?refId=prJ%2BgKj7AUAXtj0W5a%2FNcg%3D%3D&trackingId=ntDUSNdyHAMeW4Bf7PZmGA%3D%3D&position=3&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/lead-data-scientist-at-natera-3675145276", "company_name": "Natera", "company_url": "https://www.linkedin.com/company/natera?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://www.linkedin.com/company/natera", "job_title": "Lead Data Scientist", "job_location": "United States", "posted_date": "2023-08-25", "normalized_company_name": "Natera"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-07-092311.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-07-092311.json new file mode 100644 index 00000000..63d077ce --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-07-092311.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/lead-data-scientist-at-glo-3667182036?refId=prJ%2BgKj7AUAXtj0W5a%2FNcg%3D%3D&trackingId=Ugt4nm5yrlprDDEs5ljTfg%3D%3D&position=4&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/lead-data-scientist-at-glo-3667182036", "company_name": "Glo", "company_url": "https://www.linkedin.com/company/yogaglo?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://www.linkedin.com/company/yogaglo", "job_title": "Lead Data Scientist", "job_location": "Los Angeles, CA", "posted_date": "2023-06-22", "normalized_company_name": "Yogaglo"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-07-092529.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-07-092529.json new file mode 100644 index 00000000..86882079 --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-07-092529.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/lead-data-scientist-at-thyme-care-3710719365?refId=prJ%2BgKj7AUAXtj0W5a%2FNcg%3D%3D&trackingId=L7hTFJAlXQuasfGFGGJPdA%3D%3D&position=5&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/lead-data-scientist-at-thyme-care-3710719365", "company_name": "Thyme Care", "company_url": "https://www.linkedin.com/company/thymecare?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://www.linkedin.com/company/thymecare", "job_title": "Lead Data Scientist", "job_location": "Nashville, TN", "posted_date": "2023-09-05", "normalized_company_name": "Thymecare"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-07-092742.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-07-092742.json new file mode 100644 index 00000000..d347425d --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-07-092742.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/senior-data-scientist-power-bi-and-data-text-mining-expert-at-enexus-global-inc-3629775553?refId=prJ%2BgKj7AUAXtj0W5a%2FNcg%3D%3D&trackingId=u3B9%2B9LDHyUBXer%2BTcjEiQ%3D%3D&position=6&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/senior-data-scientist-power-bi-and-data-text-mining-expert-at-enexus-global-inc-3629775553", "company_name": "Enexus Global Inc.", "company_url": "https://www.linkedin.com/company/enexusglobal?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://www.linkedin.com/company/enexusglobal", "job_title": "Senior Data Scientist- Power BI and Data/Text Mining Expert", "job_location": "United States", "posted_date": "2023-06-08", "normalized_company_name": "Enexusglobal"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-07-092955.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-07-092955.json new file mode 100644 index 00000000..7f05be7f --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-07-092955.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/sr-data-scientist-at-amsive-3669669923?refId=prJ%2BgKj7AUAXtj0W5a%2FNcg%3D%3D&trackingId=CrgTa%2F3E%2FtX1jyBDTDc05g%3D%3D&position=7&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/sr-data-scientist-at-amsive-3669669923", "company_name": "Amsive", "company_url": "https://www.linkedin.com/company/amsive?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://www.linkedin.com/company/amsive", "job_title": "Sr. Data Scientist", "job_location": "Greenville, SC", "posted_date": "2023-07-18", "normalized_company_name": "Amsive"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-07-093341.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-07-093341.json new file mode 100644 index 00000000..e30d7c91 --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-07-093341.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/senior-data-scientist-ops-data-platform-at-nvidia-3702880888?refId=prJ%2BgKj7AUAXtj0W5a%2FNcg%3D%3D&trackingId=c6UlPkBDXINzm0OWysIzQw%3D%3D&position=8&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/senior-data-scientist-ops-data-platform-at-nvidia-3702880888", "company_name": "NVIDIA", "company_url": "https://www.linkedin.com/company/nvidia?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://www.linkedin.com/company/nvidia", "job_title": "Senior Data Scientist, Ops Data Platform", "job_location": "Oregon, United States", "posted_date": "2023-08-24", "normalized_company_name": "Nvidia"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-07-093549.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-07-093549.json new file mode 100644 index 00000000..7fcbfced --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-07-093549.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/senior-data-scientist-at-gainwell-technologies-3685806086?refId=prJ%2BgKj7AUAXtj0W5a%2FNcg%3D%3D&trackingId=468RfzTl29RN7qU6GOMt0w%3D%3D&position=9&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/senior-data-scientist-at-gainwell-technologies-3685806086", "company_name": "Gainwell Technologies", "company_url": "https://www.linkedin.com/company/gainwell-technologies?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://www.linkedin.com/company/gainwell-technologies", "job_title": "Senior Data Scientist", "job_location": "United States", "posted_date": "2023-08-10", "normalized_company_name": "Gainwell technologies"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-07-093824.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-07-093824.json new file mode 100644 index 00000000..8cdec56b --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-07-093824.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/senior-healthcare-data-scientist-at-advi-health-3684570207?refId=prJ%2BgKj7AUAXtj0W5a%2FNcg%3D%3D&trackingId=K3Gq%2B%2FwFjAxST2kuVQX1KQ%3D%3D&position=10&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/senior-healthcare-data-scientist-at-advi-health-3684570207", "company_name": "ADVI Health", "company_url": "https://www.linkedin.com/company/advi?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://www.linkedin.com/company/advi", "job_title": "Senior Healthcare Data Scientist", "job_location": "Washington DC-Baltimore Area", "posted_date": "2023-08-10", "normalized_company_name": "Advi"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-07-094105.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-07-094105.json new file mode 100644 index 00000000..742020ff --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-07-094105.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/senior-data-scientist-at-camgian-3688365905?refId=prJ%2BgKj7AUAXtj0W5a%2FNcg%3D%3D&trackingId=LbFG6sMtpaH6A34TeGiGRA%3D%3D&position=11&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/senior-data-scientist-at-camgian-3688365905", "company_name": "Camgian", "company_url": "https://www.linkedin.com/company/camgian?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://www.linkedin.com/company/camgian", "job_title": "Senior Data Scientist", "job_location": "Tennessee, United States", "posted_date": "2023-08-08", "normalized_company_name": "Camgian"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-07-094325.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-07-094325.json new file mode 100644 index 00000000..3dc79524 --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-07-094325.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/sr-data-scientist-at-intellectt-inc-3628564701?refId=prJ%2BgKj7AUAXtj0W5a%2FNcg%3D%3D&trackingId=N3X%2FHNAhkkTr31%2Fr4UPuuw%3D%3D&position=12&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/sr-data-scientist-at-intellectt-inc-3628564701", "company_name": "Intellectt Inc", "company_url": "https://www.linkedin.com/company/intellecttinc?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://www.linkedin.com/company/intellecttinc", "job_title": "Sr. Data Scientist", "job_location": "United States", "posted_date": "2023-06-07", "normalized_company_name": "Intellecttinc"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-07-094543.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-07-094543.json new file mode 100644 index 00000000..d07de7bb --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-07-094543.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/sr-data-scientist-at-volitiion-iit-putting-intelligence-in-it-3689046638?refId=prJ%2BgKj7AUAXtj0W5a%2FNcg%3D%3D&trackingId=jX5QflaGDGWrkKg6OMYCdw%3D%3D&position=13&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/sr-data-scientist-at-volitiion-iit-putting-intelligence-in-it-3689046638", "company_name": "Volitiion IIT - Putting Intelligence in IT", "company_url": "https://www.linkedin.com/company/volitiion-iit-inc?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://www.linkedin.com/company/volitiion-iit-inc", "job_title": "Sr Data Scientist", "job_location": "United States", "posted_date": "2023-08-11", "normalized_company_name": "Volitiion iit inc"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-07-094761.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-07-094761.json new file mode 100644 index 00000000..e1badfec --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-07-094761.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/senior-data-scientist-payments-buyer-experience-and-checkout-at-etsy-3689047129?refId=prJ%2BgKj7AUAXtj0W5a%2FNcg%3D%3D&trackingId=asoeFO85shBGbI5BDTN3Nw%3D%3D&position=14&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/senior-data-scientist-payments-buyer-experience-and-checkout-at-etsy-3689047129", "company_name": "Etsy", "company_url": "https://www.linkedin.com/company/etsy?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://www.linkedin.com/company/etsy", "job_title": "Senior Data Scientist, Payments Buyer Experience and Checkout", "job_location": "Brooklyn, NY", "posted_date": "2023-08-11", "normalized_company_name": "Etsy"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-07-094968.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-07-094968.json new file mode 100644 index 00000000..e71fc385 --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-07-094968.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/senior-data-scientist-at-ccs-fundraising-3679412692?refId=prJ%2BgKj7AUAXtj0W5a%2FNcg%3D%3D&trackingId=QDMQCYbqbgdGwqyfm5PWOQ%3D%3D&position=15&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/senior-data-scientist-at-ccs-fundraising-3679412692", "company_name": "CCS Fundraising", "company_url": "https://www.linkedin.com/company/ccsfundraising?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://www.linkedin.com/company/ccsfundraising", "job_title": "Senior Data Scientist", "job_location": "New York, NY", "posted_date": "2023-08-19", "normalized_company_name": "Ccsfundraising"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-07-095160.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-07-095160.json new file mode 100644 index 00000000..5b1e889e --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-07-095160.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/senior-data-scientist-at-24-seven-talent-3686385387?refId=prJ%2BgKj7AUAXtj0W5a%2FNcg%3D%3D&trackingId=1qwy1%2FRVlxVrtIoHLHe3Tg%3D%3D&position=16&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/senior-data-scientist-at-24-seven-talent-3686385387", "company_name": "24 Seven Talent", "company_url": "https://www.linkedin.com/company/24seventalent?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://www.linkedin.com/company/24seventalent", "job_title": "Senior Data Scientist", "job_location": "United States", "posted_date": "2023-08-11", "normalized_company_name": "24seventalent"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-07-095366.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-07-095366.json new file mode 100644 index 00000000..1273eafe --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-07-095366.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/sr-data-scientist-at-hophr-3705724791?refId=prJ%2BgKj7AUAXtj0W5a%2FNcg%3D%3D&trackingId=KO6PBmGac1f7H0HT7F4VCg%3D%3D&position=17&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/sr-data-scientist-at-hophr-3705724791", "company_name": "HopHR", "company_url": "https://www.linkedin.com/company/hophr?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://www.linkedin.com/company/hophr", "job_title": "Sr. Data Scientist", "job_location": "Mobile, AL", "posted_date": "2023-09-07", "normalized_company_name": "Hophr"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-07-095561.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-07-095561.json new file mode 100644 index 00000000..8e9ae35f --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-07-095561.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/senior-data-scientist-remote-position-at-entefy-3575081679?refId=prJ%2BgKj7AUAXtj0W5a%2FNcg%3D%3D&trackingId=SCeA%2BMaS992OgaqnOINBoQ%3D%3D&position=18&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/senior-data-scientist-remote-position-at-entefy-3575081679", "company_name": "Entefy", "company_url": "https://www.linkedin.com/company/entefy?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://www.linkedin.com/company/entefy", "job_title": "Senior Data Scientist (Remote Position)", "job_location": "United States", "posted_date": "2023-03-29", "normalized_company_name": "Entefy"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-07-095789.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-07-095789.json new file mode 100644 index 00000000..39fe28a7 --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-07-095789.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/senior-data-scientist-babylist-shop-at-babylist-3696041274?refId=prJ%2BgKj7AUAXtj0W5a%2FNcg%3D%3D&trackingId=nut%2FQSW%2Bvqgu7dliu209AA%3D%3D&position=19&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/senior-data-scientist-babylist-shop-at-babylist-3696041274", "company_name": "Babylist", "company_url": "https://www.linkedin.com/company/babylist?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://www.linkedin.com/company/babylist", "job_title": "Senior Data Scientist, Babylist Shop", "job_location": "Emeryville, CA", "posted_date": "2023-08-24", "normalized_company_name": "Babylist"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-07-095999.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-07-095999.json new file mode 100644 index 00000000..31f8cc66 --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-07-095999.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/senior-data-scientist-remote-wfh-at-get-it-recruit-healthcare-3690786101?refId=prJ%2BgKj7AUAXtj0W5a%2FNcg%3D%3D&trackingId=5gpE0O1wUQ8QVfhUJHKKTQ%3D%3D&position=20&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/senior-data-scientist-remote-wfh-at-get-it-recruit-healthcare-3690786101", "company_name": "Get It Recruit - Healthcare", "company_url": "https://www.linkedin.com/company/get-it-recruit-healthcare?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://www.linkedin.com/company/get-it-recruit-healthcare", "job_title": "Senior Data Scientist - Remote | WFH", "job_location": "New York, NY", "posted_date": "2023-08-19", "normalized_company_name": "Get it recruit healthcare"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-07-096198.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-07-096198.json new file mode 100644 index 00000000..ccca812e --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-07-096198.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/senior-data-scientist-remote-at-pricelabs-3628498717?refId=prJ%2BgKj7AUAXtj0W5a%2FNcg%3D%3D&trackingId=Lsjfz3RLb6eNVibUW2y%2Fgw%3D%3D&position=21&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/senior-data-scientist-remote-at-pricelabs-3628498717", "company_name": "PriceLabs", "company_url": "https://www.linkedin.com/company/pricelabs?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://www.linkedin.com/company/pricelabs", "job_title": "Senior Data Scientist (Remote)", "job_location": "Chicago, IL", "posted_date": "2023-05-12", "normalized_company_name": "Pricelabs"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-07-096379.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-07-096379.json new file mode 100644 index 00000000..020bc7ec --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-07-096379.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/senior-data-scientist-at-iodine-software-3662698878?refId=prJ%2BgKj7AUAXtj0W5a%2FNcg%3D%3D&trackingId=Pq5MimlDD8OiKjaTjxHyAg%3D%3D&position=22&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/senior-data-scientist-at-iodine-software-3662698878", "company_name": "Iodine Software", "company_url": "https://www.linkedin.com/company/iodine-software?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://www.linkedin.com/company/iodine-software", "job_title": "Senior Data Scientist", "job_location": "Austin, TX", "posted_date": "2023-07-13", "normalized_company_name": "Iodine software"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-07-096557.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-07-096557.json new file mode 100644 index 00000000..e7a83bce --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-07-096557.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/senior-data-scientist-at-equipmentshare-3620741618?refId=prJ%2BgKj7AUAXtj0W5a%2FNcg%3D%3D&trackingId=9JAXgx61EExwef7GKL3sjg%3D%3D&position=23&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/senior-data-scientist-at-equipmentshare-3620741618", "company_name": "EquipmentShare", "company_url": "https://www.linkedin.com/company/equipmentshare?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://www.linkedin.com/company/equipmentshare", "job_title": "Senior Data Scientist", "job_location": "Kansas City, MO", "posted_date": "2023-08-24", "normalized_company_name": "Equipmentshare"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-07-096739.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-07-096739.json new file mode 100644 index 00000000..be7da109 --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-07-096739.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/senior-data-science-manager-at-equipmentshare-3679881990?refId=prJ%2BgKj7AUAXtj0W5a%2FNcg%3D%3D&trackingId=Qu%2BDFc%2BAk9USFJMnMAPutg%3D%3D&position=24&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/senior-data-science-manager-at-equipmentshare-3679881990", "company_name": "EquipmentShare", "company_url": "https://www.linkedin.com/company/equipmentshare?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://www.linkedin.com/company/equipmentshare", "job_title": "Senior Data Science Manager", "job_location": "Sun City, KS", "posted_date": "2023-08-23", "normalized_company_name": "Equipmentshare"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-07-096933.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-07-096933.json new file mode 100644 index 00000000..8fb1c164 --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-07-096933.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/senior-manager-of-data-science-remote-at-ezcater-3711751790?refId=prJ%2BgKj7AUAXtj0W5a%2FNcg%3D%3D&trackingId=tw%2BHx1PSE2JAtoDU78QACg%3D%3D&position=25&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/senior-manager-of-data-science-remote-at-ezcater-3711751790", "company_name": "ezCater", "company_url": "https://www.linkedin.com/company/ezcater?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://www.linkedin.com/company/ezcater", "job_title": "Senior Manager of Data Science (Remote)", "job_location": "United States", "posted_date": "2023-09-07", "normalized_company_name": "Ezcater"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-57-739184.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-57-739184.json new file mode 100644 index 00000000..7782268d --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-57-739184.json @@ -0,0 +1 @@ +"jobs" \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-59-807594.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-59-807594.json new file mode 100644 index 00000000..be3bc122 --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-59-807594.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/prinicipal-software-engineer-r01527156-at-brillio-3660958463?refId=iWZ25DfmX7QFVX%2FzbtGPBQ%3D%3D&trackingId=4TEaDL74OMdsR4rnXLB3MA%3D%3D&position=1&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/prinicipal-software-engineer-r01527156-at-brillio-3660958463", "company_name": "Brillio", "company_url": "https://www.linkedin.com/company/brillio?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://www.linkedin.com/company/brillio", "job_title": "Prinicipal Software Engineer - R01527156", "job_location": "United States", "posted_date": "2023-08-24", "normalized_company_name": "Brillio"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-59-807977.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-59-807977.json new file mode 100644 index 00000000..61e23ac1 --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-59-807977.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/senior-data-scientist-at-camgian-3688365905?refId=iWZ25DfmX7QFVX%2FzbtGPBQ%3D%3D&trackingId=JDtiwMGGNxAS%2F80VPRe3rA%3D%3D&position=2&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/senior-data-scientist-at-camgian-3688365905", "company_name": "Camgian", "company_url": "https://www.linkedin.com/company/camgian?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://www.linkedin.com/company/camgian", "job_title": "Senior Data Scientist", "job_location": "Tennessee, United States", "posted_date": "2023-08-08", "normalized_company_name": "Camgian"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-59-808116.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-59-808116.json new file mode 100644 index 00000000..871b4bfa --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-59-808116.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/principal-clinical-data-scientist-lead-at-icon-strategic-solutions-3680326641?refId=iWZ25DfmX7QFVX%2FzbtGPBQ%3D%3D&trackingId=U76wqAsAhsgC2rGuHJVKLA%3D%3D&position=3&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/principal-clinical-data-scientist-lead-at-icon-strategic-solutions-3680326641", "company_name": "ICON Strategic Solutions", "company_url": "https://uk.linkedin.com/company/icon-strategic-solutions?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://uk.linkedin.com/company/icon-strategic-solutions", "job_title": "Principal Clinical Data Scientist Lead", "job_location": "United States", "posted_date": "2023-08-23", "normalized_company_name": "Icon strategic solutions"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-59-808236.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-59-808236.json new file mode 100644 index 00000000..c888d4a6 --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-59-808236.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/lead-principal-software-engineer-enterprise-trust-foundations-at-atlassian-3703167998?refId=iWZ25DfmX7QFVX%2FzbtGPBQ%3D%3D&trackingId=uPrGTGr9w3WCl5XqpFqbiw%3D%3D&position=4&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/lead-principal-software-engineer-enterprise-trust-foundations-at-atlassian-3703167998", "company_name": "Atlassian", "company_url": "https://au.linkedin.com/company/atlassian?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://au.linkedin.com/company/atlassian", "job_title": "Lead Principal Software Engineer, Enterprise Trust Foundations", "job_location": "Mountain View, CA", "posted_date": "2023-09-01", "normalized_company_name": "Atlassian"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-59-808359.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-59-808359.json new file mode 100644 index 00000000..53d616a6 --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-59-808359.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/senior-data-scientist-at-husch-blackwell-3662425127?refId=iWZ25DfmX7QFVX%2FzbtGPBQ%3D%3D&trackingId=ga%2FJ5ETp2KA%2F3%2F%2FEUUA82w%3D%3D&position=5&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/senior-data-scientist-at-husch-blackwell-3662425127", "company_name": "Husch Blackwell", "company_url": "https://www.linkedin.com/company/husch-blackwell?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://www.linkedin.com/company/husch-blackwell", "job_title": "Senior Data Scientist", "job_location": "Omaha, NE", "posted_date": "2023-08-24", "normalized_company_name": "Husch blackwell"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-59-808464.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-59-808464.json new file mode 100644 index 00000000..71df81ff --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-59-808464.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/senior-data-scientist-at-husch-blackwell-3662423205?refId=iWZ25DfmX7QFVX%2FzbtGPBQ%3D%3D&trackingId=8cST6AD%2BgyM7Rlvy%2Bm38Ag%3D%3D&position=6&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/senior-data-scientist-at-husch-blackwell-3662423205", "company_name": "Husch Blackwell", "company_url": "https://www.linkedin.com/company/husch-blackwell?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://www.linkedin.com/company/husch-blackwell", "job_title": "Senior Data Scientist", "job_location": "Springfield, MO", "posted_date": "2023-08-24", "normalized_company_name": "Husch blackwell"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-59-808550.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-59-808550.json new file mode 100644 index 00000000..2185ee00 --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-59-808550.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/senior-data-scientist-at-husch-blackwell-3662420832?refId=iWZ25DfmX7QFVX%2FzbtGPBQ%3D%3D&trackingId=O0nSkhM3xwLlswvuJ5%2F6Iw%3D%3D&position=7&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/senior-data-scientist-at-husch-blackwell-3662420832", "company_name": "Husch Blackwell", "company_url": "https://www.linkedin.com/company/husch-blackwell?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://www.linkedin.com/company/husch-blackwell", "job_title": "Senior Data Scientist", "job_location": "Kansas City, MO", "posted_date": "2023-08-25", "normalized_company_name": "Husch blackwell"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-59-808646.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-59-808646.json new file mode 100644 index 00000000..8e99d3fe --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-59-808646.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/principle-field-performance-software-engineer-us-remote-at-haemonetics-3688956976?refId=iWZ25DfmX7QFVX%2FzbtGPBQ%3D%3D&trackingId=mcCQvLUsPtN1ETbwBlg4lQ%3D%3D&position=8&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/principle-field-performance-software-engineer-us-remote-at-haemonetics-3688956976", "company_name": "Haemonetics", "company_url": "https://www.linkedin.com/company/haemonetics?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://www.linkedin.com/company/haemonetics", "job_title": "Principle Field Performance Software Engineer US Remote", "job_location": "Jackson County, MO", "posted_date": "2023-08-30", "normalized_company_name": "Haemonetics"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-59-808745.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-59-808745.json new file mode 100644 index 00000000..81b4def2 --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-59-808745.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/data-engineer-iii-network-at-crown-castle-3690474898?refId=iWZ25DfmX7QFVX%2FzbtGPBQ%3D%3D&trackingId=i52J6lRl%2BAPBUzBJ4xFgfg%3D%3D&position=9&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/data-engineer-iii-network-at-crown-castle-3690474898", "company_name": "Crown Castle", "company_url": "https://www.linkedin.com/company/crown-castle?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://www.linkedin.com/company/crown-castle", "job_title": "Data Engineer III - Network", "job_location": "Edison, NJ", "posted_date": "2023-09-01", "normalized_company_name": "Crown castle"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-59-808836.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-59-808836.json new file mode 100644 index 00000000..691f38ac --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-59-808836.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/data-engineer-iii-network-at-crown-castle-3690475935?refId=iWZ25DfmX7QFVX%2FzbtGPBQ%3D%3D&trackingId=wiifxPzt%2B%2BK8XdTe%2BlrU0Q%3D%3D&position=10&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/data-engineer-iii-network-at-crown-castle-3690475935", "company_name": "Crown Castle", "company_url": "https://www.linkedin.com/company/crown-castle?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://www.linkedin.com/company/crown-castle", "job_title": "Data Engineer III - Network", "job_location": "Houston, TX", "posted_date": "2023-09-01", "normalized_company_name": "Crown castle"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-59-808914.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-59-808914.json new file mode 100644 index 00000000..776b99b3 --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-59-808914.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/data-engineer-iii-network-at-crown-castle-3690481044?refId=iWZ25DfmX7QFVX%2FzbtGPBQ%3D%3D&trackingId=Rmy4C0PFXyqObRRNEVnAsg%3D%3D&position=11&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/data-engineer-iii-network-at-crown-castle-3690481044", "company_name": "Crown Castle", "company_url": "https://www.linkedin.com/company/crown-castle?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://www.linkedin.com/company/crown-castle", "job_title": "Data Engineer III - Network", "job_location": "Downers Grove, IL", "posted_date": "2023-09-01", "normalized_company_name": "Crown castle"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-59-808993.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-59-808993.json new file mode 100644 index 00000000..3921475b --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-59-808993.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/data-engineer-iii-network-at-crown-castle-3690481045?refId=iWZ25DfmX7QFVX%2FzbtGPBQ%3D%3D&trackingId=uTbmJfaCL5bDlUDClj6%2Fbg%3D%3D&position=12&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/data-engineer-iii-network-at-crown-castle-3690481045", "company_name": "Crown Castle", "company_url": "https://www.linkedin.com/company/crown-castle?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://www.linkedin.com/company/crown-castle", "job_title": "Data Engineer III - Network", "job_location": "Englewood, CO", "posted_date": "2023-09-01", "normalized_company_name": "Crown castle"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-59-809123.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-59-809123.json new file mode 100644 index 00000000..e1b2aa2f --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-59-809123.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/data-engineer-iii-network-at-crown-castle-3690476555?refId=iWZ25DfmX7QFVX%2FzbtGPBQ%3D%3D&trackingId=wQaCGQGV%2FROEuR2hCaJojA%3D%3D&position=13&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/data-engineer-iii-network-at-crown-castle-3690476555", "company_name": "Crown Castle", "company_url": "https://www.linkedin.com/company/crown-castle?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://www.linkedin.com/company/crown-castle", "job_title": "Data Engineer III - Network", "job_location": "Phoenix, AZ", "posted_date": "2023-09-01", "normalized_company_name": "Crown castle"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-59-809221.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-59-809221.json new file mode 100644 index 00000000..d6fd7b9c --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-59-809221.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/data-engineer-iii-network-at-crown-castle-3690480280?refId=iWZ25DfmX7QFVX%2FzbtGPBQ%3D%3D&trackingId=RgYiDi8%2FnxA6XuOHEeQrQg%3D%3D&position=14&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/data-engineer-iii-network-at-crown-castle-3690480280", "company_name": "Crown Castle", "company_url": "https://www.linkedin.com/company/crown-castle?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://www.linkedin.com/company/crown-castle", "job_title": "Data Engineer III - Network", "job_location": "San Diego, CA", "posted_date": "2023-09-01", "normalized_company_name": "Crown castle"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-59-809301.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-59-809301.json new file mode 100644 index 00000000..e053991c --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-59-809301.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/data-engineer-iii-network-at-crown-castle-3690475817?refId=iWZ25DfmX7QFVX%2FzbtGPBQ%3D%3D&trackingId=TBJ5e2zhOwsiOiKZIeLMNQ%3D%3D&position=15&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/data-engineer-iii-network-at-crown-castle-3690475817", "company_name": "Crown Castle", "company_url": "https://www.linkedin.com/company/crown-castle?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://www.linkedin.com/company/crown-castle", "job_title": "Data Engineer III - Network", "job_location": "Irvine, CA", "posted_date": "2023-09-01", "normalized_company_name": "Crown castle"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-59-809387.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-59-809387.json new file mode 100644 index 00000000..8b669640 --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-59-809387.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/data-engineer-iii-network-at-crown-castle-3690475814?refId=iWZ25DfmX7QFVX%2FzbtGPBQ%3D%3D&trackingId=GTlO0hi7XPnUbEUicmc1xg%3D%3D&position=16&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/data-engineer-iii-network-at-crown-castle-3690475814", "company_name": "Crown Castle", "company_url": "https://www.linkedin.com/company/crown-castle?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://www.linkedin.com/company/crown-castle", "job_title": "Data Engineer III - Network", "job_location": "Melville, NY", "posted_date": "2023-09-01", "normalized_company_name": "Crown castle"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-59-809467.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-59-809467.json new file mode 100644 index 00000000..cac052ee --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-59-809467.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/data-engineer-iii-network-at-crown-castle-3690473949?refId=iWZ25DfmX7QFVX%2FzbtGPBQ%3D%3D&trackingId=1DhMXJeXQYRI60COE7e9Uw%3D%3D&position=17&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/data-engineer-iii-network-at-crown-castle-3690473949", "company_name": "Crown Castle", "company_url": "https://www.linkedin.com/company/crown-castle?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://www.linkedin.com/company/crown-castle", "job_title": "Data Engineer III - Network", "job_location": "Herndon, VA", "posted_date": "2023-09-01", "normalized_company_name": "Crown castle"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-59-809555.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-59-809555.json new file mode 100644 index 00000000..572afa04 --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-59-809555.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/data-engineer-iii-network-at-crown-castle-3690475933?refId=iWZ25DfmX7QFVX%2FzbtGPBQ%3D%3D&trackingId=YzaQs999mk6VGdBEpAGBHA%3D%3D&position=18&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/data-engineer-iii-network-at-crown-castle-3690475933", "company_name": "Crown Castle", "company_url": "https://www.linkedin.com/company/crown-castle?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://www.linkedin.com/company/crown-castle", "job_title": "Data Engineer III - Network", "job_location": "Seattle, WA", "posted_date": "2023-09-01", "normalized_company_name": "Crown castle"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-59-809632.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-59-809632.json new file mode 100644 index 00000000..c7d3fe7e --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-59-809632.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/distinguished-software-engineer-machine-learning-platform-at-upstart-3636946366?refId=iWZ25DfmX7QFVX%2FzbtGPBQ%3D%3D&trackingId=SKz02dZLo7%2BtFboCiZzpbw%3D%3D&position=19&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/distinguished-software-engineer-machine-learning-platform-at-upstart-3636946366", "company_name": "Upstart", "company_url": "https://www.linkedin.com/company/upstart-network?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://www.linkedin.com/company/upstart-network", "job_title": "Distinguished Software Engineer, Machine Learning Platform", "job_location": "United States", "posted_date": "2023-08-18", "normalized_company_name": "Upstart network"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-59-809708.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-59-809708.json new file mode 100644 index 00000000..59c9a5fb --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-59-809708.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/staff-principal-data-scientist-at-enveda-biosciences-3705615257?refId=iWZ25DfmX7QFVX%2FzbtGPBQ%3D%3D&trackingId=16HeIb%2FakZmIUSNi0Djfyg%3D%3D&position=20&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/staff-principal-data-scientist-at-enveda-biosciences-3705615257", "company_name": "Enveda Biosciences", "company_url": "https://www.linkedin.com/company/envedabio?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://www.linkedin.com/company/envedabio", "job_title": "Staff / Principal Data Scientist", "job_location": "United States", "posted_date": "2023-09-05", "normalized_company_name": "Envedabio"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-59-809783.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-59-809783.json new file mode 100644 index 00000000..79f8367d --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-59-809783.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/principal-software-engineer-front-end-specialist-remote-at-arcules-3710665691?refId=iWZ25DfmX7QFVX%2FzbtGPBQ%3D%3D&trackingId=pzNdPvS%2FNUYKEZ5sO4ArUg%3D%3D&position=21&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/principal-software-engineer-front-end-specialist-remote-at-arcules-3710665691", "company_name": "Arcules", "company_url": "https://www.linkedin.com/company/arcules?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://www.linkedin.com/company/arcules", "job_title": "Principal Software Engineer - Front-End Specialist (Remote)", "job_location": "Irvine, CA", "posted_date": "2023-09-05", "normalized_company_name": "Arcules"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-59-809862.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-59-809862.json new file mode 100644 index 00000000..98866dbe --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-59-809862.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/principal-machine-learning-engineer-at-gradient-zero-3681251577?refId=iWZ25DfmX7QFVX%2FzbtGPBQ%3D%3D&trackingId=gQhAK6hvF3AbeWZ0uyYx2w%3D%3D&position=22&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/principal-machine-learning-engineer-at-gradient-zero-3681251577", "company_name": "Gradient Zero", "company_url": "https://www.linkedin.com/company/gradient-zero-inc?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://www.linkedin.com/company/gradient-zero-inc", "job_title": "Principal Machine Learning Engineer", "job_location": "Herndon, VA", "posted_date": "2023-07-31", "normalized_company_name": "Gradient zero inc"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-59-809946.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-59-809946.json new file mode 100644 index 00000000..01f9b1a0 --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-59-809946.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/principal-machine-learning-engineer-at-atlassian-3703175129?refId=iWZ25DfmX7QFVX%2FzbtGPBQ%3D%3D&trackingId=%2FboSdiu%2B5rjxruayRh3lsQ%3D%3D&position=23&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/principal-machine-learning-engineer-at-atlassian-3703175129", "company_name": "Atlassian", "company_url": "https://au.linkedin.com/company/atlassian?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://au.linkedin.com/company/atlassian", "job_title": "Principal Machine Learning Engineer", "job_location": "Mountain View, CA", "posted_date": "2023-09-01", "normalized_company_name": "Atlassian"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-59-810026.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-59-810026.json new file mode 100644 index 00000000..cf7063d0 --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-59-810026.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/principal-machine-learning-operations-engineer-at-next-ventures-3690950113?refId=iWZ25DfmX7QFVX%2FzbtGPBQ%3D%3D&trackingId=FcHqqdcHydrk0GObE6k20Q%3D%3D&position=24&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/principal-machine-learning-operations-engineer-at-next-ventures-3690950113", "company_name": "Next Ventures", "company_url": "https://uk.linkedin.com/company/next-ventures?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://uk.linkedin.com/company/next-ventures", "job_title": "Principal Machine Learning Operations Engineer", "job_location": "New York City Metropolitan Area", "posted_date": "2023-08-14", "normalized_company_name": "Next ventures"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-59-810109.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-59-810109.json new file mode 100644 index 00000000..743f67c4 --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-42-59-810109.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/principal-machine-learning-engineer-at-eventbrite-3660526891?refId=iWZ25DfmX7QFVX%2FzbtGPBQ%3D%3D&trackingId=jocZ%2F8JD6ZzQcYURWMO%2FKw%3D%3D&position=25&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/principal-machine-learning-engineer-at-eventbrite-3660526891", "company_name": "Eventbrite", "company_url": "https://www.linkedin.com/company/eventbrite?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://www.linkedin.com/company/eventbrite", "job_title": "Principal Machine Learning Engineer", "job_location": "San Francisco, CA", "posted_date": "2023-08-23", "normalized_company_name": "Eventbrite"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-43-01-424702.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-43-01-424702.json new file mode 100644 index 00000000..7782268d --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-43-01-424702.json @@ -0,0 +1 @@ +"jobs" \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-43-21-709689.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-43-21-709689.json new file mode 100644 index 00000000..03eb78d0 --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-43-21-709689.json @@ -0,0 +1 @@ +"message" \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-43-22-398025.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-43-22-398025.json new file mode 100644 index 00000000..03eb78d0 --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-43-22-398025.json @@ -0,0 +1 @@ +"message" \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-43-23-097520.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-43-23-097520.json new file mode 100644 index 00000000..03eb78d0 --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-43-23-097520.json @@ -0,0 +1 @@ +"message" \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-43-23-790338.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-43-23-790338.json new file mode 100644 index 00000000..03eb78d0 --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-43-23-790338.json @@ -0,0 +1 @@ +"message" \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-43-24-473961.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-43-24-473961.json new file mode 100644 index 00000000..03eb78d0 --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-43-24-473961.json @@ -0,0 +1 @@ +"message" \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-43-25-165831.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-43-25-165831.json new file mode 100644 index 00000000..03eb78d0 --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-43-25-165831.json @@ -0,0 +1 @@ +"message" \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-43-25-853370.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-43-25-853370.json new file mode 100644 index 00000000..03eb78d0 --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-43-25-853370.json @@ -0,0 +1 @@ +"message" \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-43-26-688313.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-43-26-688313.json new file mode 100644 index 00000000..03eb78d0 --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-43-26-688313.json @@ -0,0 +1 @@ +"message" \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-43-27-709569.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-43-27-709569.json new file mode 100644 index 00000000..03eb78d0 --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-43-27-709569.json @@ -0,0 +1 @@ +"message" \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-43-28-613367.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-43-28-613367.json new file mode 100644 index 00000000..03eb78d0 --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-06_21-43-28-613367.json @@ -0,0 +1 @@ +"message" \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-07_15-58-12-091939.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-07_15-58-12-091939.json new file mode 100644 index 00000000..7782268d --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-07_15-58-12-091939.json @@ -0,0 +1 @@ +"jobs" \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-07_15-58-13-871208.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-07_15-58-13-871208.json new file mode 100644 index 00000000..1220cafe --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-07_15-58-13-871208.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/prinicipal-software-engineer-r01527156-at-brillio-3660958463?refId=4G48dytyrSWJhK1t%2B881Bg%3D%3D&trackingId=wRgAI8i1NIfmc5pjX2vUMw%3D%3D&position=1&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/prinicipal-software-engineer-r01527156-at-brillio-3660958463", "company_name": "Brillio", "company_url": "https://www.linkedin.com/company/brillio?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://www.linkedin.com/company/brillio", "job_title": "Prinicipal Software Engineer - R01527156", "job_location": "United States", "posted_date": "2023-08-24", "normalized_company_name": "Brillio"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-07_15-58-13-871844.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-07_15-58-13-871844.json new file mode 100644 index 00000000..68971786 --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-07_15-58-13-871844.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/lead-principal-software-engineer-enterprise-trust-foundations-at-atlassian-3703167998?refId=4G48dytyrSWJhK1t%2B881Bg%3D%3D&trackingId=pulRfnlOOcBaGMDRXbeJLg%3D%3D&position=2&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/lead-principal-software-engineer-enterprise-trust-foundations-at-atlassian-3703167998", "company_name": "Atlassian", "company_url": "https://au.linkedin.com/company/atlassian?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://au.linkedin.com/company/atlassian", "job_title": "Lead Principal Software Engineer, Enterprise Trust Foundations", "job_location": "Mountain View, CA", "posted_date": "2023-09-01", "normalized_company_name": "Atlassian"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-07_15-58-13-872170.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-07_15-58-13-872170.json new file mode 100644 index 00000000..d1e7e2ae --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-07_15-58-13-872170.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/software-engineer-iii-conversational-virtual-assistants-at-principal-financial-group-3706599831?refId=4G48dytyrSWJhK1t%2B881Bg%3D%3D&trackingId=7RVNUYAZUH49vfCADsahmw%3D%3D&position=3&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/software-engineer-iii-conversational-virtual-assistants-at-principal-financial-group-3706599831", "company_name": "Principal Financial Group", "company_url": "https://www.linkedin.com/company/principalfinancialgroup?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://www.linkedin.com/company/principalfinancialgroup", "job_title": "Software Engineer III (Conversational Virtual Assistants)", "job_location": "St Louis, MO", "posted_date": "2023-09-07", "normalized_company_name": "Principalfinancialgroup"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-07_15-58-13-872446.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-07_15-58-13-872446.json new file mode 100644 index 00000000..152f3599 --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-07_15-58-13-872446.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/senior-data-scientist-at-husch-blackwell-3662425127?refId=4G48dytyrSWJhK1t%2B881Bg%3D%3D&trackingId=ItzS%2BX3dThNjwMm90u%2BWqw%3D%3D&position=4&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/senior-data-scientist-at-husch-blackwell-3662425127", "company_name": "Husch Blackwell", "company_url": "https://www.linkedin.com/company/husch-blackwell?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://www.linkedin.com/company/husch-blackwell", "job_title": "Senior Data Scientist", "job_location": "Omaha, NE", "posted_date": "2023-08-24", "normalized_company_name": "Husch blackwell"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-07_15-58-13-872748.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-07_15-58-13-872748.json new file mode 100644 index 00000000..ec421405 --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-07_15-58-13-872748.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/software-engineer-iii-conversational-virtual-assistants-at-principal-financial-group-3706597877?refId=4G48dytyrSWJhK1t%2B881Bg%3D%3D&trackingId=Log%2F0QaZMRMAFmZXoWnBFw%3D%3D&position=5&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/software-engineer-iii-conversational-virtual-assistants-at-principal-financial-group-3706597877", "company_name": "Principal Financial Group", "company_url": "https://www.linkedin.com/company/principalfinancialgroup?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://www.linkedin.com/company/principalfinancialgroup", "job_title": "Software Engineer III (Conversational Virtual Assistants)", "job_location": "Omaha, NE", "posted_date": "2023-09-07", "normalized_company_name": "Principalfinancialgroup"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-07_15-58-13-873011.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-07_15-58-13-873011.json new file mode 100644 index 00000000..ce100292 --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-07_15-58-13-873011.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/software-engineer-iii-conversational-virtual-assistants-at-principal-financial-group-3706597876?refId=4G48dytyrSWJhK1t%2B881Bg%3D%3D&trackingId=ZtbX6hWblcS59uep9hUbEw%3D%3D&position=6&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/software-engineer-iii-conversational-virtual-assistants-at-principal-financial-group-3706597876", "company_name": "Principal Financial Group", "company_url": "https://www.linkedin.com/company/principalfinancialgroup?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://www.linkedin.com/company/principalfinancialgroup", "job_title": "Software Engineer III (Conversational Virtual Assistants)", "job_location": "Columbus, OH", "posted_date": "2023-09-07", "normalized_company_name": "Principalfinancialgroup"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-07_15-58-13-873220.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-07_15-58-13-873220.json new file mode 100644 index 00000000..95f46edc --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-07_15-58-13-873220.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/software-engineer-iii-conversational-virtual-assistants-at-principal-financial-group-3706599828?refId=4G48dytyrSWJhK1t%2B881Bg%3D%3D&trackingId=tvy1EIuI59wBcrV1fz%2FXdw%3D%3D&position=7&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/software-engineer-iii-conversational-virtual-assistants-at-principal-financial-group-3706599828", "company_name": "Principal Financial Group", "company_url": "https://www.linkedin.com/company/principalfinancialgroup?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://www.linkedin.com/company/principalfinancialgroup", "job_title": "Software Engineer III (Conversational Virtual Assistants)", "job_location": "Richmond, VA", "posted_date": "2023-09-07", "normalized_company_name": "Principalfinancialgroup"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-07_15-58-13-873402.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-07_15-58-13-873402.json new file mode 100644 index 00000000..39e0f59c --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-07_15-58-13-873402.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/software-engineer-iii-conversational-virtual-assistants-at-principal-financial-group-3707501745?refId=4G48dytyrSWJhK1t%2B881Bg%3D%3D&trackingId=OJxKj2f9St0BI8eq7UgQQQ%3D%3D&position=8&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/software-engineer-iii-conversational-virtual-assistants-at-principal-financial-group-3707501745", "company_name": "Principal Financial Group", "company_url": "https://www.linkedin.com/company/principalfinancialgroup?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://www.linkedin.com/company/principalfinancialgroup", "job_title": "Software Engineer III (Conversational Virtual Assistants)", "job_location": "Detroit, MI", "posted_date": "2023-09-07", "normalized_company_name": "Principalfinancialgroup"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-07_15-58-13-873582.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-07_15-58-13-873582.json new file mode 100644 index 00000000..5f553a2c --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-07_15-58-13-873582.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/software-engineer-iii-conversational-virtual-assistants-at-principal-financial-group-3706599826?refId=4G48dytyrSWJhK1t%2B881Bg%3D%3D&trackingId=Hw%2F3D5BXQmy7SKi9XYDOGg%3D%3D&position=9&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/software-engineer-iii-conversational-virtual-assistants-at-principal-financial-group-3706599826", "company_name": "Principal Financial Group", "company_url": "https://www.linkedin.com/company/principalfinancialgroup?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://www.linkedin.com/company/principalfinancialgroup", "job_title": "Software Engineer III (Conversational Virtual Assistants)", "job_location": "Charlotte, NC", "posted_date": "2023-09-07", "normalized_company_name": "Principalfinancialgroup"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-07_15-58-13-873762.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-07_15-58-13-873762.json new file mode 100644 index 00000000..3e204845 --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-07_15-58-13-873762.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/senior-data-scientist-at-husch-blackwell-3662423205?refId=4G48dytyrSWJhK1t%2B881Bg%3D%3D&trackingId=34dCkUotuo7qB1SciRneWw%3D%3D&position=10&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/senior-data-scientist-at-husch-blackwell-3662423205", "company_name": "Husch Blackwell", "company_url": "https://www.linkedin.com/company/husch-blackwell?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://www.linkedin.com/company/husch-blackwell", "job_title": "Senior Data Scientist", "job_location": "Springfield, MO", "posted_date": "2023-08-24", "normalized_company_name": "Husch blackwell"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-07_15-58-13-873927.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-07_15-58-13-873927.json new file mode 100644 index 00000000..a88cd28a --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-07_15-58-13-873927.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/senior-data-scientist-at-husch-blackwell-3662420832?refId=4G48dytyrSWJhK1t%2B881Bg%3D%3D&trackingId=mmxvZe1FFnmvYcNk%2BRmGYA%3D%3D&position=11&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/senior-data-scientist-at-husch-blackwell-3662420832", "company_name": "Husch Blackwell", "company_url": "https://www.linkedin.com/company/husch-blackwell?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://www.linkedin.com/company/husch-blackwell", "job_title": "Senior Data Scientist", "job_location": "Kansas City, MO", "posted_date": "2023-08-25", "normalized_company_name": "Husch blackwell"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-07_15-58-13-874086.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-07_15-58-13-874086.json new file mode 100644 index 00000000..d6fa27c2 --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-07_15-58-13-874086.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/software-engineer-iii-conversational-virtual-assistants-at-principal-financial-group-3706598915?refId=4G48dytyrSWJhK1t%2B881Bg%3D%3D&trackingId=WBk6zZ1OpQ%2B2eJh%2Fv3Qt7A%3D%3D&position=12&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/software-engineer-iii-conversational-virtual-assistants-at-principal-financial-group-3706598915", "company_name": "Principal Financial Group", "company_url": "https://www.linkedin.com/company/principalfinancialgroup?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://www.linkedin.com/company/principalfinancialgroup", "job_title": "Software Engineer III (Conversational Virtual Assistants)", "job_location": "Woodcliff Lake, NJ", "posted_date": "2023-09-07", "normalized_company_name": "Principalfinancialgroup"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-07_15-58-13-874348.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-07_15-58-13-874348.json new file mode 100644 index 00000000..339928cf --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-07_15-58-13-874348.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/software-engineer-iii-conversational-virtual-assistants-at-principal-financial-group-3707502592?refId=4G48dytyrSWJhK1t%2B881Bg%3D%3D&trackingId=6vre60wCYIzPBPp5JWiybQ%3D%3D&position=13&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/software-engineer-iii-conversational-virtual-assistants-at-principal-financial-group-3707502592", "company_name": "Principal Financial Group", "company_url": "https://www.linkedin.com/company/principalfinancialgroup?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://www.linkedin.com/company/principalfinancialgroup", "job_title": "Software Engineer III (Conversational Virtual Assistants)", "job_location": "Miami, FL", "posted_date": "2023-09-07", "normalized_company_name": "Principalfinancialgroup"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-07_15-58-13-874533.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-07_15-58-13-874533.json new file mode 100644 index 00000000..9becb9ad --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-07_15-58-13-874533.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/software-engineer-iii-conversational-virtual-assistants-at-principal-financial-group-3707502591?refId=4G48dytyrSWJhK1t%2B881Bg%3D%3D&trackingId=tD8v1BrcpEpln9f8XCqYlQ%3D%3D&position=14&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/software-engineer-iii-conversational-virtual-assistants-at-principal-financial-group-3707502591", "company_name": "Principal Financial Group", "company_url": "https://www.linkedin.com/company/principalfinancialgroup?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://www.linkedin.com/company/principalfinancialgroup", "job_title": "Software Engineer III (Conversational Virtual Assistants)", "job_location": "Des Moines, IA", "posted_date": "2023-09-07", "normalized_company_name": "Principalfinancialgroup"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-07_15-58-13-874714.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-07_15-58-13-874714.json new file mode 100644 index 00000000..3e819093 --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-07_15-58-13-874714.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/software-engineer-iii-conversational-virtual-assistants-at-principal-financial-group-3707502589?refId=4G48dytyrSWJhK1t%2B881Bg%3D%3D&trackingId=oGR9dukSVMzXR7Q2LEfoUQ%3D%3D&position=15&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/software-engineer-iii-conversational-virtual-assistants-at-principal-financial-group-3707502589", "company_name": "Principal Financial Group", "company_url": "https://www.linkedin.com/company/principalfinancialgroup?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://www.linkedin.com/company/principalfinancialgroup", "job_title": "Software Engineer III (Conversational Virtual Assistants)", "job_location": "Albany, NY", "posted_date": "2023-09-07", "normalized_company_name": "Principalfinancialgroup"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-07_15-58-13-874884.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-07_15-58-13-874884.json new file mode 100644 index 00000000..f7455549 --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-07_15-58-13-874884.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/principle-field-performance-software-engineer-us-remote-at-haemonetics-3688956976?refId=4G48dytyrSWJhK1t%2B881Bg%3D%3D&trackingId=a67QD4jU7tKhYiKMtlgZcA%3D%3D&position=16&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/principle-field-performance-software-engineer-us-remote-at-haemonetics-3688956976", "company_name": "Haemonetics", "company_url": "https://www.linkedin.com/company/haemonetics?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://www.linkedin.com/company/haemonetics", "job_title": "Principle Field Performance Software Engineer US Remote", "job_location": "Jackson County, MO", "posted_date": "2023-08-30", "normalized_company_name": "Haemonetics"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-07_15-58-13-875040.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-07_15-58-13-875040.json new file mode 100644 index 00000000..67804002 --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-07_15-58-13-875040.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/data-engineer-iii-network-at-crown-castle-3690474898?refId=4G48dytyrSWJhK1t%2B881Bg%3D%3D&trackingId=BfwfYynCDsylQfuf%2BnbjfQ%3D%3D&position=17&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/data-engineer-iii-network-at-crown-castle-3690474898", "company_name": "Crown Castle", "company_url": "https://www.linkedin.com/company/crown-castle?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://www.linkedin.com/company/crown-castle", "job_title": "Data Engineer III - Network", "job_location": "Edison, NJ", "posted_date": "2023-09-01", "normalized_company_name": "Crown castle"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-07_15-58-13-875194.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-07_15-58-13-875194.json new file mode 100644 index 00000000..630ad69d --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-07_15-58-13-875194.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/data-engineer-iii-network-at-crown-castle-3690475935?refId=4G48dytyrSWJhK1t%2B881Bg%3D%3D&trackingId=sdw6DEcw60avTUfvOMjpKw%3D%3D&position=18&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/data-engineer-iii-network-at-crown-castle-3690475935", "company_name": "Crown Castle", "company_url": "https://www.linkedin.com/company/crown-castle?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://www.linkedin.com/company/crown-castle", "job_title": "Data Engineer III - Network", "job_location": "Houston, TX", "posted_date": "2023-09-01", "normalized_company_name": "Crown castle"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-07_15-58-13-875357.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-07_15-58-13-875357.json new file mode 100644 index 00000000..6ae0b340 --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-07_15-58-13-875357.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/data-engineer-iii-network-at-crown-castle-3690481044?refId=4G48dytyrSWJhK1t%2B881Bg%3D%3D&trackingId=zUEN7njfL83QuaPdVC0qsQ%3D%3D&position=19&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/data-engineer-iii-network-at-crown-castle-3690481044", "company_name": "Crown Castle", "company_url": "https://www.linkedin.com/company/crown-castle?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://www.linkedin.com/company/crown-castle", "job_title": "Data Engineer III - Network", "job_location": "Downers Grove, IL", "posted_date": "2023-09-01", "normalized_company_name": "Crown castle"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-07_15-58-13-875515.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-07_15-58-13-875515.json new file mode 100644 index 00000000..7903af5e --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-07_15-58-13-875515.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/data-engineer-iii-network-at-crown-castle-3690481045?refId=4G48dytyrSWJhK1t%2B881Bg%3D%3D&trackingId=6JA4Ax2yFUnix9pmCREcmQ%3D%3D&position=20&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/data-engineer-iii-network-at-crown-castle-3690481045", "company_name": "Crown Castle", "company_url": "https://www.linkedin.com/company/crown-castle?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://www.linkedin.com/company/crown-castle", "job_title": "Data Engineer III - Network", "job_location": "Englewood, CO", "posted_date": "2023-09-01", "normalized_company_name": "Crown castle"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-07_15-58-13-875681.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-07_15-58-13-875681.json new file mode 100644 index 00000000..b0c8ebb7 --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-07_15-58-13-875681.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/data-engineer-iii-network-at-crown-castle-3690476555?refId=4G48dytyrSWJhK1t%2B881Bg%3D%3D&trackingId=RuwwJmH8ko%2FSyRuRG0gZMg%3D%3D&position=21&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/data-engineer-iii-network-at-crown-castle-3690476555", "company_name": "Crown Castle", "company_url": "https://www.linkedin.com/company/crown-castle?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://www.linkedin.com/company/crown-castle", "job_title": "Data Engineer III - Network", "job_location": "Phoenix, AZ", "posted_date": "2023-09-01", "normalized_company_name": "Crown castle"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-07_15-58-13-875851.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-07_15-58-13-875851.json new file mode 100644 index 00000000..f1ea0426 --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-07_15-58-13-875851.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/data-engineer-iii-network-at-crown-castle-3690480280?refId=4G48dytyrSWJhK1t%2B881Bg%3D%3D&trackingId=1KbQxiGGvw%2B6Iyl82W8djw%3D%3D&position=22&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/data-engineer-iii-network-at-crown-castle-3690480280", "company_name": "Crown Castle", "company_url": "https://www.linkedin.com/company/crown-castle?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://www.linkedin.com/company/crown-castle", "job_title": "Data Engineer III - Network", "job_location": "San Diego, CA", "posted_date": "2023-09-01", "normalized_company_name": "Crown castle"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-07_15-58-13-876017.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-07_15-58-13-876017.json new file mode 100644 index 00000000..88e8dd0f --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-07_15-58-13-876017.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/data-engineer-iii-network-at-crown-castle-3690475817?refId=4G48dytyrSWJhK1t%2B881Bg%3D%3D&trackingId=0SoPy2hfGzj9LGhlMEvdgg%3D%3D&position=23&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/data-engineer-iii-network-at-crown-castle-3690475817", "company_name": "Crown Castle", "company_url": "https://www.linkedin.com/company/crown-castle?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://www.linkedin.com/company/crown-castle", "job_title": "Data Engineer III - Network", "job_location": "Irvine, CA", "posted_date": "2023-09-01", "normalized_company_name": "Crown castle"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-07_15-58-13-876188.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-07_15-58-13-876188.json new file mode 100644 index 00000000..de51752b --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-07_15-58-13-876188.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/data-engineer-iii-network-at-crown-castle-3690475814?refId=4G48dytyrSWJhK1t%2B881Bg%3D%3D&trackingId=ceVQud90mDBQRoo44QLfag%3D%3D&position=24&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/data-engineer-iii-network-at-crown-castle-3690475814", "company_name": "Crown Castle", "company_url": "https://www.linkedin.com/company/crown-castle?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://www.linkedin.com/company/crown-castle", "job_title": "Data Engineer III - Network", "job_location": "Melville, NY", "posted_date": "2023-09-01", "normalized_company_name": "Crown castle"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-07_15-58-13-876351.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-07_15-58-13-876351.json new file mode 100644 index 00000000..7c17c3b3 --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-07_15-58-13-876351.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/data-engineer-iii-network-at-crown-castle-3690473949?refId=4G48dytyrSWJhK1t%2B881Bg%3D%3D&trackingId=7o5y9qdo83oq%2BgYg9Wk6Ew%3D%3D&position=25&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/data-engineer-iii-network-at-crown-castle-3690473949", "company_name": "Crown Castle", "company_url": "https://www.linkedin.com/company/crown-castle?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://www.linkedin.com/company/crown-castle", "job_title": "Data Engineer III - Network", "job_location": "Herndon, VA", "posted_date": "2023-09-01", "normalized_company_name": "Crown castle"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-07_15-58-17-601796.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-07_15-58-17-601796.json new file mode 100644 index 00000000..7782268d --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-07_15-58-17-601796.json @@ -0,0 +1 @@ +"jobs" \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-07_15-58-19-360752.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-07_15-58-19-360752.json new file mode 100644 index 00000000..2f74fe9c --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-07_15-58-19-360752.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/senior-or-staff-python-django-developer-fully-remote-at-motion-recruitment-3707242059?refId=eZvMFneyOsLQ%2FQztpBBclw%3D%3D&trackingId=DL0wmO8sJMC%2Faox0sCMpiQ%3D%3D&position=1&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/senior-or-staff-python-django-developer-fully-remote-at-motion-recruitment-3707242059", "company_name": "Motion Recruitment", "company_url": "https://www.linkedin.com/company/motion-recruitment-partners?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://www.linkedin.com/company/motion-recruitment-partners", "job_title": "Senior or Staff Python Django Developer/ Fully remote", "job_location": "Los Angeles, CA", "posted_date": "2023-08-05", "normalized_company_name": "Motion recruitment partners"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-07_15-58-19-361934.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-07_15-58-19-361934.json new file mode 100644 index 00000000..0f427b57 --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-07_15-58-19-361934.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/senior-machine-learning-engineer-south-america-at-varsity-tutors-a-nerdy-company-3671357925?refId=eZvMFneyOsLQ%2FQztpBBclw%3D%3D&trackingId=hOj0n5sV4K8dh1scJDyZLg%3D%3D&position=2&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/senior-machine-learning-engineer-south-america-at-varsity-tutors-a-nerdy-company-3671357925", "company_name": "Varsity Tutors, a Nerdy Company", "company_url": "https://www.linkedin.com/company/varsity-tutors?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://www.linkedin.com/company/varsity-tutors", "job_title": "Senior Machine Learning Engineer (South America)", "job_location": "United States", "posted_date": "2023-08-26", "normalized_company_name": "Varsity tutors"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-07_15-58-19-362383.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-07_15-58-19-362383.json new file mode 100644 index 00000000..22690ba4 --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-07_15-58-19-362383.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/senior-machine-learning-engineer-remote-position-at-entefy-3575080769?refId=eZvMFneyOsLQ%2FQztpBBclw%3D%3D&trackingId=mb4tpVc%2BmDeEobHcG7wInA%3D%3D&position=3&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/senior-machine-learning-engineer-remote-position-at-entefy-3575080769", "company_name": "Entefy", "company_url": "https://www.linkedin.com/company/entefy?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://www.linkedin.com/company/entefy", "job_title": "Senior Machine Learning Engineer (Remote Position)", "job_location": "United States", "posted_date": "2023-03-29", "normalized_company_name": "Entefy"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-07_15-58-19-362793.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-07_15-58-19-362793.json new file mode 100644 index 00000000..d785e165 --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-07_15-58-19-362793.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/senior-machine-learning-engineer-at-tse-technical-3705632803?refId=eZvMFneyOsLQ%2FQztpBBclw%3D%3D&trackingId=RNtr%2BNDJxCQRQnBobyCYOg%3D%3D&position=4&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/senior-machine-learning-engineer-at-tse-technical-3705632803", "company_name": "TSE Technical", "company_url": "https://www.linkedin.com/company/tse-technical?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://www.linkedin.com/company/tse-technical", "job_title": "Senior Machine Learning Engineer", "job_location": "San Francisco Bay Area", "posted_date": "2023-09-05", "normalized_company_name": "Tse technical"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-07_15-58-19-363103.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-07_15-58-19-363103.json new file mode 100644 index 00000000..3937ddc1 --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-07_15-58-19-363103.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/senior-machine-learning-ml-engineer-freelance-remote-at-braintrust-3714050208?refId=eZvMFneyOsLQ%2FQztpBBclw%3D%3D&trackingId=tw97E81MIhUC0jB1aDyNxA%3D%3D&position=5&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/senior-machine-learning-ml-engineer-freelance-remote-at-braintrust-3714050208", "company_name": "Braintrust", "company_url": "https://www.linkedin.com/company/usebraintrust?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://www.linkedin.com/company/usebraintrust", "job_title": "Senior Machine Learning (ML) Engineer - Freelance [Remote]", "job_location": "New York, NY", "posted_date": "2023-09-07", "normalized_company_name": "Usebraintrust"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-07_15-58-19-363395.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-07_15-58-19-363395.json new file mode 100644 index 00000000..2d202f8c --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-07_15-58-19-363395.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/senior-machine-learning-engineer-south-america-at-varsity-tutors-a-nerdy-company-3683306053?refId=eZvMFneyOsLQ%2FQztpBBclw%3D%3D&trackingId=Bg1uDpFJNgcc8vm1IKq71Q%3D%3D&position=6&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/senior-machine-learning-engineer-south-america-at-varsity-tutors-a-nerdy-company-3683306053", "company_name": "Varsity Tutors, a Nerdy Company", "company_url": "https://www.linkedin.com/company/varsity-tutors?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://www.linkedin.com/company/varsity-tutors", "job_title": "Senior Machine Learning Engineer (South America)", "job_location": "United States", "posted_date": "2023-08-26", "normalized_company_name": "Varsity tutors"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-07_15-58-19-363692.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-07_15-58-19-363692.json new file mode 100644 index 00000000..427ae4df --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-07_15-58-19-363692.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/senior-machine-learning-operations-engineer-ml-ops-at-interos-inc-3662697931?refId=eZvMFneyOsLQ%2FQztpBBclw%3D%3D&trackingId=NV21kWIP4Gt9oISHpfXVoQ%3D%3D&position=7&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/senior-machine-learning-operations-engineer-ml-ops-at-interos-inc-3662697931", "company_name": "Interos Inc", "company_url": "https://www.linkedin.com/company/interos-inc?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://www.linkedin.com/company/interos-inc", "job_title": "Senior Machine Learning Operations Engineer, ML Ops", "job_location": "United States", "posted_date": "2023-06-22", "normalized_company_name": "Interos inc"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-07_15-58-19-363985.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-07_15-58-19-363985.json new file mode 100644 index 00000000..38e6f764 --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-07_15-58-19-363985.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/senior-machine-learning-engineer-at-c2r-ventures-3034276024?refId=eZvMFneyOsLQ%2FQztpBBclw%3D%3D&trackingId=%2Brq7k3C3K%2B0WCV48TZ5rlw%3D%3D&position=8&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/senior-machine-learning-engineer-at-c2r-ventures-3034276024", "company_name": "C2R Ventures", "company_url": "https://www.linkedin.com/company/c2r-ventures?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://www.linkedin.com/company/c2r-ventures", "job_title": "Senior Machine Learning Engineer", "job_location": "United States", "posted_date": "2023-03-24", "normalized_company_name": "C2r ventures"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-07_15-58-19-364324.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-07_15-58-19-364324.json new file mode 100644 index 00000000..79fa6d78 --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-07_15-58-19-364324.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/senior-machine-learning-engineer-i-fulfillment-at-etsy-3689440395?refId=eZvMFneyOsLQ%2FQztpBBclw%3D%3D&trackingId=BBkox0RGgVhU9HI313phxw%3D%3D&position=9&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/senior-machine-learning-engineer-i-fulfillment-at-etsy-3689440395", "company_name": "Etsy", "company_url": "https://www.linkedin.com/company/etsy?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://www.linkedin.com/company/etsy", "job_title": "Senior Machine Learning Engineer I, Fulfillment", "job_location": "Brooklyn, NY", "posted_date": "2023-08-18", "normalized_company_name": "Etsy"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-07_15-58-19-367475.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-07_15-58-19-367475.json new file mode 100644 index 00000000..4a58efa5 --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-07_15-58-19-367475.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/senior-staff-machine-learning-engineer-behaviors-at-cruise-3298308052?refId=eZvMFneyOsLQ%2FQztpBBclw%3D%3D&trackingId=FU1FmnZRmFB7yE4W234KQA%3D%3D&position=10&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/senior-staff-machine-learning-engineer-behaviors-at-cruise-3298308052", "company_name": "Cruise", "company_url": "https://www.linkedin.com/company/getcruise?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://www.linkedin.com/company/getcruise", "job_title": "Senior Staff Machine Learning Engineer, Behaviors", "job_location": "United States", "posted_date": "2023-08-25", "normalized_company_name": "Getcruise"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-07_15-58-19-367927.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-07_15-58-19-367927.json new file mode 100644 index 00000000..4517149b --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-07_15-58-19-367927.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/senior-machine-learning-engineer-at-rec-room-3681594768?refId=eZvMFneyOsLQ%2FQztpBBclw%3D%3D&trackingId=dt46Ws11s9ljdo%2F8YkxfrA%3D%3D&position=11&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/senior-machine-learning-engineer-at-rec-room-3681594768", "company_name": "Rec Room", "company_url": "https://www.linkedin.com/company/recroominc?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://www.linkedin.com/company/recroominc", "job_title": "Senior Machine Learning Engineer", "job_location": "Seattle, WA", "posted_date": "2023-08-03", "normalized_company_name": "Recroominc"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-07_15-58-19-368239.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-07_15-58-19-368239.json new file mode 100644 index 00000000..5cc5be86 --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-07_15-58-19-368239.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/machine-learning-engineer-remote-at-stellent-it-3584720138?refId=eZvMFneyOsLQ%2FQztpBBclw%3D%3D&trackingId=pHK5TryFQS4PEHdx3Z%2F0HA%3D%3D&position=12&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/machine-learning-engineer-remote-at-stellent-it-3584720138", "company_name": "Stellent IT", "company_url": "https://www.linkedin.com/company/stellent-it?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://www.linkedin.com/company/stellent-it", "job_title": "Machine Learning Engineer, Remote", "job_location": "United States", "posted_date": "2023-04-02", "normalized_company_name": "Stellent it"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-07_15-58-19-368550.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-07_15-58-19-368550.json new file mode 100644 index 00000000..ddb2aea9 --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-07_15-58-19-368550.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/senior-backend-engineer-at-antimetal-3696164198?refId=eZvMFneyOsLQ%2FQztpBBclw%3D%3D&trackingId=UtKM3v3atzJnRExwhfEryw%3D%3D&position=13&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/senior-backend-engineer-at-antimetal-3696164198", "company_name": "Antimetal", "company_url": "https://www.linkedin.com/company/antimetal?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://www.linkedin.com/company/antimetal", "job_title": "Senior Backend Engineer", "job_location": "New York, NY", "posted_date": "2023-08-16", "normalized_company_name": "Antimetal"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-07_15-58-19-368816.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-07_15-58-19-368816.json new file mode 100644 index 00000000..e140a0da --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-07_15-58-19-368816.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/senior-machine-learning-engineer-usa-at-kalepa-3693368044?refId=eZvMFneyOsLQ%2FQztpBBclw%3D%3D&trackingId=VJvG%2Bc4TpCEBT1RVx5AAFA%3D%3D&position=14&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/senior-machine-learning-engineer-usa-at-kalepa-3693368044", "company_name": "Kalepa", "company_url": "https://www.linkedin.com/company/kalepa?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://www.linkedin.com/company/kalepa", "job_title": "Senior Machine Learning Engineer (USA)", "job_location": "New York, NY", "posted_date": "2023-08-17", "normalized_company_name": "Kalepa"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-07_15-58-19-369084.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-07_15-58-19-369084.json new file mode 100644 index 00000000..790f39f4 --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-07_15-58-19-369084.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/expression-of-interest-senior-machine-learning-engineer-at-fingerprint-for-success-f4s-3699914177?refId=eZvMFneyOsLQ%2FQztpBBclw%3D%3D&trackingId=3dDvndz10hqL%2FqsIXXlRNA%3D%3D&position=15&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/expression-of-interest-senior-machine-learning-engineer-at-fingerprint-for-success-f4s-3699914177", "company_name": "Fingerprint for Success (F4S)", "company_url": "https://au.linkedin.com/company/fingerprint-for-success?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://au.linkedin.com/company/fingerprint-for-success", "job_title": "Expression of Interest: Senior Machine Learning Engineer", "job_location": "Chicago, IL", "posted_date": "2023-07-27", "normalized_company_name": "Fingerprint for success"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-07_15-58-19-369321.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-07_15-58-19-369321.json new file mode 100644 index 00000000..dcde39ce --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-07_15-58-19-369321.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/senior-staff-machine-learning-engineer-perception-at-cruise-3535351547?refId=eZvMFneyOsLQ%2FQztpBBclw%3D%3D&trackingId=OJqXHVOk%2BLkyWEulDV5qcA%3D%3D&position=16&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/senior-staff-machine-learning-engineer-perception-at-cruise-3535351547", "company_name": "Cruise", "company_url": "https://www.linkedin.com/company/getcruise?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://www.linkedin.com/company/getcruise", "job_title": "Senior Staff Machine Learning Engineer, Perception", "job_location": "United States", "posted_date": "2023-09-07", "normalized_company_name": "Getcruise"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-07_15-58-19-369550.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-07_15-58-19-369550.json new file mode 100644 index 00000000..f0b44ed0 --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-07_15-58-19-369550.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/senior-bioinformatics-research-engineer-remote-at-biospace-3697925455?refId=eZvMFneyOsLQ%2FQztpBBclw%3D%3D&trackingId=uqNMzEKbbpdQCjUmpluvsw%3D%3D&position=17&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/senior-bioinformatics-research-engineer-remote-at-biospace-3697925455", "company_name": "BioSpace", "company_url": "https://www.linkedin.com/company/biospaceinc?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://www.linkedin.com/company/biospaceinc", "job_title": "Senior Bioinformatics Research Engineer (Remote)", "job_location": "South San Francisco, CA", "posted_date": "2023-08-18", "normalized_company_name": "Biospaceinc"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-07_15-58-19-369774.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-07_15-58-19-369774.json new file mode 100644 index 00000000..99f06c67 --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-07_15-58-19-369774.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/senior-machine-learning-engineer-at-big-cloud-3595170154?refId=eZvMFneyOsLQ%2FQztpBBclw%3D%3D&trackingId=2JJtGULyZ1UOn8HPkawTzw%3D%3D&position=18&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/senior-machine-learning-engineer-at-big-cloud-3595170154", "company_name": "Big Cloud", "company_url": "https://uk.linkedin.com/company/big-cloud?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://uk.linkedin.com/company/big-cloud", "job_title": "Senior Machine Learning Engineer", "job_location": "United States", "posted_date": "2023-07-20", "normalized_company_name": "Big cloud"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-07_15-58-19-370030.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-07_15-58-19-370030.json new file mode 100644 index 00000000..e556ebc2 --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-07_15-58-19-370030.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/senior-machine-learning-engineer-at-motion-recruitment-3699368143?refId=eZvMFneyOsLQ%2FQztpBBclw%3D%3D&trackingId=QEFjP9iuYSuXBEvPGMxhlw%3D%3D&position=19&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/senior-machine-learning-engineer-at-motion-recruitment-3699368143", "company_name": "Motion Recruitment", "company_url": "https://www.linkedin.com/company/motion-recruitment-partners?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://www.linkedin.com/company/motion-recruitment-partners", "job_title": "Senior Machine Learning Engineer", "job_location": "San Francisco, CA", "posted_date": "2023-09-01", "normalized_company_name": "Motion recruitment partners"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-07_15-58-19-370389.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-07_15-58-19-370389.json new file mode 100644 index 00000000..e44a5f9d --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-07_15-58-19-370389.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/senior-machine-learning-engineer-at-pryon-3705769530?refId=eZvMFneyOsLQ%2FQztpBBclw%3D%3D&trackingId=heZCweleiLx287sEIlwp%2BA%3D%3D&position=20&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/senior-machine-learning-engineer-at-pryon-3705769530", "company_name": "Pryon", "company_url": "https://www.linkedin.com/company/pryon?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://www.linkedin.com/company/pryon", "job_title": "Senior Machine Learning Engineer", "job_location": "Boston, MA", "posted_date": "2023-08-14", "normalized_company_name": "Pryon"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-07_15-58-19-370682.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-07_15-58-19-370682.json new file mode 100644 index 00000000..9046ebdc --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-07_15-58-19-370682.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/senior-machine-learning-engineer-south-america-at-varsity-tutors-a-nerdy-company-3683302405?refId=eZvMFneyOsLQ%2FQztpBBclw%3D%3D&trackingId=nD6EZT8xZj67SYNNyTXiqg%3D%3D&position=21&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/senior-machine-learning-engineer-south-america-at-varsity-tutors-a-nerdy-company-3683302405", "company_name": "Varsity Tutors, a Nerdy Company", "company_url": "https://www.linkedin.com/company/varsity-tutors?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://www.linkedin.com/company/varsity-tutors", "job_title": "Senior Machine Learning Engineer (South America)", "job_location": "United States", "posted_date": "2023-08-26", "normalized_company_name": "Varsity tutors"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-07_15-58-19-371155.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-07_15-58-19-371155.json new file mode 100644 index 00000000..9cbd8824 --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-07_15-58-19-371155.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/staff-machine-learning-engineer-modeling-risk-at-square-3688963779?refId=eZvMFneyOsLQ%2FQztpBBclw%3D%3D&trackingId=aLPvvg0yxhM1xbLHd%2B62CA%3D%3D&position=22&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/staff-machine-learning-engineer-modeling-risk-at-square-3688963779", "company_name": "Square", "company_url": "https://www.linkedin.com/company/joinsquare?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://www.linkedin.com/company/joinsquare", "job_title": "Staff Machine Learning Engineer (Modeling), Risk", "job_location": "Seattle, WA", "posted_date": "2023-08-30", "normalized_company_name": "Joinsquare"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-07_15-58-19-371577.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-07_15-58-19-371577.json new file mode 100644 index 00000000..70f3c4db --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-07_15-58-19-371577.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/data-engineer-senior-at-booz-allen-hamilton-3682412074?refId=eZvMFneyOsLQ%2FQztpBBclw%3D%3D&trackingId=OQu9Np7JVXRylSWjXak1Tg%3D%3D&position=23&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/data-engineer-senior-at-booz-allen-hamilton-3682412074", "company_name": "Booz Allen Hamilton", "company_url": "https://www.linkedin.com/company/booz-allen-hamilton?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://www.linkedin.com/company/booz-allen-hamilton", "job_title": "Data Engineer, Senior", "job_location": "Washington, DC", "posted_date": "2023-08-26", "normalized_company_name": "Booz allen hamilton"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-07_15-58-19-371967.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-07_15-58-19-371967.json new file mode 100644 index 00000000..208906e1 --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-07_15-58-19-371967.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/senior-machine-learning-engineer-at-cambia-health-solutions-3658029471?refId=eZvMFneyOsLQ%2FQztpBBclw%3D%3D&trackingId=z8k35Tpw2Xi%2BoCegAV0Rmg%3D%3D&position=24&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/senior-machine-learning-engineer-at-cambia-health-solutions-3658029471", "company_name": "Cambia Health Solutions", "company_url": "https://www.linkedin.com/company/cambia-health-solutions?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://www.linkedin.com/company/cambia-health-solutions", "job_title": "Senior Machine Learning Engineer", "job_location": "United States", "posted_date": "2023-06-17", "normalized_company_name": "Cambia health solutions"} \ No newline at end of file diff --git a/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-07_15-58-19-372360.json b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-07_15-58-19-372360.json new file mode 100644 index 00000000..805c626d --- /dev/null +++ b/jobhunter/src/temp/data/raw/linkedinjobs-2023-09-07_15-58-19-372360.json @@ -0,0 +1 @@ +{"job_url": "https://www.linkedin.com/jobs/view/senior-machine-learning-platform-engineer-at-motion-recruitment-3707239252?refId=eZvMFneyOsLQ%2FQztpBBclw%3D%3D&trackingId=OHjscuC0n2gPx9ZiHjpLXg%3D%3D&position=25&pageNum=0&trk=public_jobs_jserp-result_search-card", "linkedin_job_url_cleaned": "https://www.linkedin.com/jobs/view/senior-machine-learning-platform-engineer-at-motion-recruitment-3707239252", "company_name": "Motion Recruitment", "company_url": "https://www.linkedin.com/company/motion-recruitment-partners?trk=public_jobs_jserp-result_job-search-card-subtitle", "linkedin_company_url_cleaned": "https://www.linkedin.com/company/motion-recruitment-partners", "job_title": "Senior Machine Learning Platform Engineer", "job_location": "Chicago, IL", "posted_date": "2023-08-05", "normalized_company_name": "Motion recruitment partners"} \ No newline at end of file diff --git a/app/temp/resumes/.DS_Store b/jobhunter/src/temp/resumes/.DS_Store similarity index 100% rename from app/temp/resumes/.DS_Store rename to jobhunter/src/temp/resumes/.DS_Store diff --git a/app/temp/resumes/resume.txt b/jobhunter/src/temp/resumes/resume.txt similarity index 100% rename from app/temp/resumes/resume.txt rename to jobhunter/src/temp/resumes/resume.txt diff --git a/app/utilities/text_similarity.py b/jobhunter/src/text_similarity.py similarity index 100% rename from app/utilities/text_similarity.py rename to jobhunter/src/text_similarity.py diff --git a/app/utilities/transform.py b/jobhunter/src/transform.py similarity index 100% rename from app/utilities/transform.py rename to jobhunter/src/transform.py diff --git a/logic/process_data.py b/logic/process_data.py deleted file mode 100644 index e69de29b..00000000 diff --git a/myenv/bin/black b/myenv/bin/black deleted file mode 100755 index f0691af4..00000000 --- a/myenv/bin/black +++ /dev/null @@ -1,8 +0,0 @@ -#!/Users/jjespinoza/Documents/jobhunter/myenv/bin/python3 -# -*- coding: utf-8 -*- -import re -import sys -from black import patched_main -if __name__ == '__main__': - sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0]) - sys.exit(patched_main()) diff --git a/myenv/bin/blackd b/myenv/bin/blackd deleted file mode 100755 index 0ec78ef2..00000000 --- a/myenv/bin/blackd +++ /dev/null @@ -1,8 +0,0 @@ -#!/Users/jjespinoza/Documents/jobhunter/myenv/bin/python3 -# -*- coding: utf-8 -*- -import re -import sys -from blackd import patched_main -if __name__ == '__main__': - sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0]) - sys.exit(patched_main()) diff --git a/myenv/bin/chromedriver-path b/myenv/bin/chromedriver-path deleted file mode 100755 index 4cbb53e1..00000000 --- a/myenv/bin/chromedriver-path +++ /dev/null @@ -1,8 +0,0 @@ -#!/Users/jjespinoza/Documents/jobhunter/myenv/bin/python3 -# -*- coding: utf-8 -*- -import re -import sys -from chromedriver_autoinstaller.utils import print_chromedriver_path -if __name__ == '__main__': - sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0]) - sys.exit(print_chromedriver_path()) diff --git a/myenv/bin/email_validator b/myenv/bin/email_validator deleted file mode 100755 index 306191f0..00000000 --- a/myenv/bin/email_validator +++ /dev/null @@ -1,8 +0,0 @@ -#!/Users/jjespinoza/Documents/jobhunter/myenv/bin/python3 -# -*- coding: utf-8 -*- -import re -import sys -from email_validator.__main__ import main -if __name__ == '__main__': - sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0]) - sys.exit(main()) diff --git a/myenv/bin/google-oauthlib-tool b/myenv/bin/google-oauthlib-tool deleted file mode 100755 index 372b0437..00000000 --- a/myenv/bin/google-oauthlib-tool +++ /dev/null @@ -1,8 +0,0 @@ -#!/Users/jjespinoza/Documents/jobhunter/myenv/bin/python3 -# -*- coding: utf-8 -*- -import re -import sys -from google_auth_oauthlib.tool.__main__ import main -if __name__ == '__main__': - sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0]) - sys.exit(main()) diff --git a/myenv/bin/pyrsa-decrypt b/myenv/bin/pyrsa-decrypt deleted file mode 100755 index c072479e..00000000 --- a/myenv/bin/pyrsa-decrypt +++ /dev/null @@ -1,8 +0,0 @@ -#!/Users/jjespinoza/Documents/jobhunter/myenv/bin/python3 -# -*- coding: utf-8 -*- -import re -import sys -from rsa.cli import decrypt -if __name__ == '__main__': - sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0]) - sys.exit(decrypt()) diff --git a/myenv/bin/pyrsa-encrypt b/myenv/bin/pyrsa-encrypt deleted file mode 100755 index a44d58d4..00000000 --- a/myenv/bin/pyrsa-encrypt +++ /dev/null @@ -1,8 +0,0 @@ -#!/Users/jjespinoza/Documents/jobhunter/myenv/bin/python3 -# -*- coding: utf-8 -*- -import re -import sys -from rsa.cli import encrypt -if __name__ == '__main__': - sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0]) - sys.exit(encrypt()) diff --git a/myenv/bin/pyrsa-keygen b/myenv/bin/pyrsa-keygen deleted file mode 100755 index 55ed8f6a..00000000 --- a/myenv/bin/pyrsa-keygen +++ /dev/null @@ -1,8 +0,0 @@ -#!/Users/jjespinoza/Documents/jobhunter/myenv/bin/python3 -# -*- coding: utf-8 -*- -import re -import sys -from rsa.cli import keygen -if __name__ == '__main__': - sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0]) - sys.exit(keygen()) diff --git a/myenv/bin/pyrsa-priv2pub b/myenv/bin/pyrsa-priv2pub deleted file mode 100755 index 250ee0cb..00000000 --- a/myenv/bin/pyrsa-priv2pub +++ /dev/null @@ -1,8 +0,0 @@ -#!/Users/jjespinoza/Documents/jobhunter/myenv/bin/python3 -# -*- coding: utf-8 -*- -import re -import sys -from rsa.util import private_to_public -if __name__ == '__main__': - sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0]) - sys.exit(private_to_public()) diff --git a/myenv/bin/pyrsa-sign b/myenv/bin/pyrsa-sign deleted file mode 100755 index ca823113..00000000 --- a/myenv/bin/pyrsa-sign +++ /dev/null @@ -1,8 +0,0 @@ -#!/Users/jjespinoza/Documents/jobhunter/myenv/bin/python3 -# -*- coding: utf-8 -*- -import re -import sys -from rsa.cli import sign -if __name__ == '__main__': - sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0]) - sys.exit(sign()) diff --git a/myenv/bin/pyrsa-verify b/myenv/bin/pyrsa-verify deleted file mode 100755 index fa256288..00000000 --- a/myenv/bin/pyrsa-verify +++ /dev/null @@ -1,8 +0,0 @@ -#!/Users/jjespinoza/Documents/jobhunter/myenv/bin/python3 -# -*- coding: utf-8 -*- -import re -import sys -from rsa.cli import verify -if __name__ == '__main__': - sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0]) - sys.exit(verify()) diff --git a/myenv/bin/python b/myenv/bin/python deleted file mode 120000 index b8a0adbb..00000000 --- a/myenv/bin/python +++ /dev/null @@ -1 +0,0 @@ -python3 \ No newline at end of file diff --git a/myenv/bin/python3 b/myenv/bin/python3 deleted file mode 120000 index f25545fe..00000000 --- a/myenv/bin/python3 +++ /dev/null @@ -1 +0,0 @@ -/Library/Developer/CommandLineTools/usr/bin/python3 \ No newline at end of file diff --git a/myenv/bin/python3.9 b/myenv/bin/python3.9 deleted file mode 120000 index b8a0adbb..00000000 --- a/myenv/bin/python3.9 +++ /dev/null @@ -1 +0,0 @@ -python3 \ No newline at end of file diff --git a/myenv/pyvenv.cfg b/myenv/pyvenv.cfg deleted file mode 100644 index 4760c1ff..00000000 --- a/myenv/pyvenv.cfg +++ /dev/null @@ -1,3 +0,0 @@ -home = /Library/Developer/CommandLineTools/usr/bin -include-system-site-packages = false -version = 3.9.6 diff --git a/presentation/app.py b/presentation/app.py deleted file mode 100644 index e69de29b..00000000 diff --git a/pytest.ini b/pytest.ini deleted file mode 100644 index 997d14eb..00000000 --- a/pytest.ini +++ /dev/null @@ -1,2 +0,0 @@ -[pytest] -python_paths = ~/Documents/jobhunter \ No newline at end of file diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 00000000..ba4abb84 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,9 @@ +beautifulsoup4==4.11.2 +nltk==3.8.1 +pandas==1.5.3 +python-dotenv==1.0.0 +Requests==2.31.0 +scikit_learn==1.2.1 +streamlit==1.25.0 +tqdm==4.65.0 +pytest-cov diff --git a/tests/test_delete_local.py b/tests/test_delete_local.py deleted file mode 100644 index 58c4857e..00000000 --- a/tests/test_delete_local.py +++ /dev/null @@ -1,41 +0,0 @@ -from unittest import mock -import pytest - -# Import the function under test -from jobhunter.app.utilities.delete_local import delete_files, delete_local - - -# Test with correct import path -@mock.patch("jobhunter.app.utilities.delete_local.delete_files") -def test_delete_local_with_correct_path(mock_delete_files): - print("Before calling delete_local") # Debug print - - delete_local() # Call the function under test - - print("After calling delete_local") # Debug print - print( - f"Mock delete_files called with: {mock_delete_files.call_args_list}" - ) # Debug print - - mock_delete_files.assert_has_calls( - [ - mock.call(dir_path="temp/data/raw"), - mock.call(dir_path="temp/data/processed"), - ], - any_order=True, - ) - - -# Test with corrected import path (this test should pass now) -@mock.patch("jobhunter.app.utilities.delete_local.delete_files") -def test_delete_local_another_test(mock_delete_files): - delete_local() # Call the function under test - - # Check if delete_files was called for each directory - mock_delete_files.assert_has_calls( - [ - mock.call(dir_path="temp/data/raw"), - mock.call(dir_path="temp/data/processed"), - ], - any_order=True, - )