diff --git a/WEB SCRAPING/devJobsScanner_Scraper/LICENSE b/WEB SCRAPING/devJobsScanner_Scraper/LICENSE new file mode 100644 index 00000000..59c6af06 --- /dev/null +++ b/WEB SCRAPING/devJobsScanner_Scraper/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2024 Asib Hossen + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/WEB SCRAPING/devJobsScanner_Scraper/ReadME.md b/WEB SCRAPING/devJobsScanner_Scraper/ReadME.md new file mode 100644 index 00000000..310a02f4 --- /dev/null +++ b/WEB SCRAPING/devJobsScanner_Scraper/ReadME.md @@ -0,0 +1,81 @@ +# devJobScanner Job Scraper + +## Description +This repository contains two scripts designed to scrape job listings from a specified website. Users can input their desired job title, remote work preference, sorting preference, and choose how to save the output (CSV, TXT, or both). + +## Scripts + +### Script 1: `job_scraper_static.py` +- Scrapes job listings using the `requests` library and `BeautifulSoup`. +- Displays job details in the console. +- Saves job details in CSV and/or TXT format. +- Suitable for static page scraping. + +### Script 2: `job_scraper_dynamic.py` +- Enhanced to use `SeleniumBase` for dynamic page interaction. +- Supports infinite scrolling to load more job listings. +- Users can specify the number of job listings to scrape. +- More robust handling of dynamically loaded content. + +## Requirements + +### Common Requirements +- Python 3.x +- `beautifulsoup4` library +- `requests` library + +### Dynamic Script Additional Requirements +- `seleniumbase` library +- WebDriver for your browser (e.g., ChromeDriver for Chrome) + +## Installation +1. Clone the repository: + ```bash + git clone https://github.com/asibhossen897/devJobsScanner-job-scraper.git + cd devJobsScanner-job-scraper + ``` + +2. Install the required libraries: + ```bash + pip install -r requirements.txt + ``` + +3. For `job_scraper_dynamic.py`, ensure you have the appropriate WebDriver installed and available in your PATH. + +## Usage + +### Static Scraper (`job_scraper_static.py`) +1. Run the script: + ```bash + python job_scraper_static.py + ``` + (**If ```python``` does not work, use ```python3```**) + +2. Follow the prompts to input your job search criteria and preferences. + +### Dynamic Scraper (`job_scraper_dynamic.py`) +1. Run the script: + ```bash + python job_scraper_dynamic.py + ``` + (**If ```python``` does not work, use ```python3```**) + +2. Follow the prompts to input your job search criteria, number of jobs to scrape, and preferences. + +## File Structure +- `job_scraper_static.py`: Script for static job scraping. +- `job_scraper_dynamic.py`: Script for dynamic job scraping with SeleniumBase. +- `requirements.txt`: List of required Python libraries. +- `outputFiles/`: Directory where output files (CSV, TXT) are saved. + +## Disclaimer +These scripts are for educational and personal use only. Scraping websites can be against the terms of service of the website being scraped. Always check the website’s terms and conditions before scraping any content. The author is not responsible for any misuse of these scripts. Use at your own risk. + +## License +This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details. + +## Author +Asib Hossen + +## Date +May 21, 2024 diff --git a/WEB SCRAPING/devJobsScanner_Scraper/job_scraper_dynamic.py b/WEB SCRAPING/devJobsScanner_Scraper/job_scraper_dynamic.py new file mode 100644 index 00000000..dbd6467a --- /dev/null +++ b/WEB SCRAPING/devJobsScanner_Scraper/job_scraper_dynamic.py @@ -0,0 +1,184 @@ +# Author: Asib Hossen +# Date: May 21, 2024 +# Description: This script scrapes job listings from https://www.devjobsscanner.com/ based on user input, displays the job details, and optionally saves them as CSV and/or TXT files. +# Version: 1.1 + + +import os +import re +import csv +import time +from seleniumbase import Driver +from bs4 import BeautifulSoup + +def get_user_input(): + """ + Prompt user for job title, remote job preference, number of jobs to scrape, + sorting preference, and save option. + + Returns: + tuple: A tuple containing job title (str), remote job preference (bool), + number of jobs to scrape (int), save option (str), and sorting preference (str). + """ + job = input("Enter the job title: ") + remote = input("Do you want remote jobs only? (yes/no): ").lower() == 'yes' + num_jobs = int(input("Enter the number of jobs you want to scrape: ")) + sort_options = ['matches', 'newest', 'salary'] + print(f"Sort options: {sort_options}") + sort_by = input("Enter the sorting preference (matches/newest/salary): ") + save_option = input("Do you want to save the output as CSV, TXT, or both of them? (csv/txt/both): ").lower() + return job, remote, num_jobs, save_option, sort_by + +def construct_url(job, remote, sort_by): + """ + Construct the URL based on the job title, remote preference, and sorting preference. + + Args: + job (str): The job title. + remote (bool): True if user wants remote jobs only, False otherwise. + sort_by (str): The sorting preference. + + Returns: + str: The constructed URL. + """ + base_url = "https://www.devjobsscanner.com/search/" + search_params = f"?search={job}" + if remote is not None: + search_params += f"&remote={str(remote).lower()}" + if sort_by is not None: + search_params += f"&sort={sort_by}" + url = base_url + search_params + return url + +def scrape_jobs(url, num_jobs): + """ + Scrape job listings from the provided URL using SeleniumBase. + + Args: + url (str): The URL to scrape job listings from. + num_jobs (int): The number of jobs to scrape. + + Returns: + list: A list of dictionaries containing job details. + """ + jobs = [] + try: + driver = Driver(browser="Firefox", headless=False) + driver.get(url) + time.sleep(5) # Initial wait for page load + + while len(jobs) < num_jobs: + soup = BeautifulSoup(driver.page_source, 'html.parser') + job_divs = soup.find_all('div', class_='flex p-3 rounded group relative overflow-hidden') + + for job_div in job_divs: + if len(jobs) >= num_jobs: + break + title = job_div.find('h2').text.strip() + company = job_div.find('div', class_='jbs-dot-separeted-list').find('a').text.strip() + tags = [tag.text.strip() for tag in job_div.find_all('a', class_='tag')] + date_posted = job_div.find('span', class_='text-primary-text').text.strip() + salary = job_div.find('span', class_='text-gray-text').text.strip() + + # Check if the salary contains at least two digits + if not re.search(r'\d{2}', salary): + salary = "Not mentioned" + + job_url = job_div.find('a', class_='jbs-text-hover-link')['href'] + + jobs.append({ + 'title': title, + 'company': company, + 'company_url': f"https://www.devjobsscanner.com/company/{company.lower()}", + 'tags': tags, + 'date_posted': date_posted, + 'salary': salary, + 'job_url': job_url + }) + + # Scroll down to load more jobs + driver.execute_script("window.scrollTo(0, document.body.scrollHeight);") + time.sleep(5) # Wait for new jobs to load + + driver.quit() + return jobs[:num_jobs] + except Exception as e: + print("Error scraping jobs:", e) + return [] + +def display_jobs(jobs): + """ + Display job details to the console. + + Args: + jobs (list): A list of dictionaries containing job details. + """ + for job in jobs: + print(f"Title: {job['title']}") + print(f"Company: {job['company']}") + print(f"Company URL: {job['company_url']}") + print(f"Tags: {', '.join(job['tags'])}") + print(f"Date Posted: {job['date_posted']}") + print(f"Salary: {job['salary']}") + print(f"Job URL: {job['job_url']}") + print("-" * 40) + +def save_as_csv(jobs, filename): + """ + Save job details as CSV file. + + Args: + jobs (list): A list of dictionaries containing job details. + filename (str): The name of the CSV file to save. + """ + output_dir = os.path.join(os.getcwd(), "outputFiles") + os.makedirs(output_dir, exist_ok=True) + keys = jobs[0].keys() + try: + with open(filename, 'w', newline='', encoding='utf-8') as output_file: + dict_writer = csv.DictWriter(output_file, fieldnames=keys) + dict_writer.writeheader() + dict_writer.writerows(jobs) + except IOError as e: + print("Error saving as CSV:", e) + +def save_as_txt(jobs, filename): + """ + Save job details as text file. + + Args: + jobs (list): A list of dictionaries containing job details. + filename (str): The name of the text file to save. + """ + try: + with open(filename, 'w', encoding='utf-8') as output_file: + for job in jobs: + output_file.write(f"Title: {job['title']}\n") + output_file.write(f"Company: {job['company']}\n") + output_file.write(f"Company URL: {job['company_url']}\n") + output_file.write(f"Tags: {', '.join(job['tags'])}\n") + output_file.write(f"Date Posted: {job['date_posted']}\n") + output_file.write(f"Salary: {job['salary']}\n") + output_file.write(f"Job URL: {job['job_url']}\n") + output_file.write("-" * 40 + "\n") + except IOError as e: + print("Error saving as TXT:", e) + +if __name__ == '__main__': + job, remote, num_jobs, save_option, sort_by = get_user_input() + url = construct_url(job, remote, sort_by) + print(f"Scraping URL: {url}") + jobs = scrape_jobs(url, num_jobs) + if jobs: + display_jobs(jobs) + fileName = f"./outputFiles/{job}_jobs_remote_{str(remote).lower()}_sorted_by_{sort_by}" + if save_option == 'csv': + save_as_csv(jobs, f"{fileName}.csv") + elif save_option == 'txt': + save_as_txt(jobs, f"{fileName}.txt") + elif save_option == 'both': + save_as_csv(jobs, f"{fileName}.csv") + save_as_txt(jobs, f"{fileName}.txt") + print(f"Jobs saved as {save_option.upper()} file(s).") + else: + print("No jobs found. Exiting.") diff --git a/WEB SCRAPING/devJobsScanner_Scraper/job_scraper_static.py b/WEB SCRAPING/devJobsScanner_Scraper/job_scraper_static.py new file mode 100644 index 00000000..593fe40f --- /dev/null +++ b/WEB SCRAPING/devJobsScanner_Scraper/job_scraper_static.py @@ -0,0 +1,172 @@ +# Author: Asib Hossen +# Date: May 21, 2024 +# Description: This script scrapes job listings from https://www.devjobsscanner.com/ based on user input, displays the job details, and optionally saves them as CSV and/or TXT files. +# Version: 1.1 + + +import os +import re +import csv +import time +import requests +from bs4 import BeautifulSoup + +def get_user_input(): + """ + Prompt user for job title, remote job preference, sorting preference, + and save option. + + Returns: + tuple: A tuple containing job title (str), remote job preference (bool), + save option (str), and sorting preference (str). + """ + job = input("Enter the job title: ") + remote = input("Do you want remote jobs only? (yes/no): ").lower() == 'yes' + sort_options = ['matches', 'newest', 'salary'] + print(f"Sort options: {sort_options}") + sort_by = input("Enter the sorting preference (matches/newest/salary): ") + save_option = input("Do you want to save the output as CSV, TXT, or both of them? (csv/txt/both): ").lower() + return job, remote, save_option, sort_by + +def construct_url(job, remote, sort_by): + """ + Construct the URL based on the job title, remote preference, and sorting preference. + + Args: + job (str): The job title. + remote (bool): True if user wants remote jobs only, False otherwise. + sort_by (str): The sorting preference. + + Returns: + str: The constructed URL. + """ + base_url = "https://www.devjobsscanner.com/search/" + search_params = f"?search={job}" + if remote is not None: + search_params += f"&remote={str(remote).lower()}" + if sort_by is not None: + search_params += f"&sort={sort_by}" + url = base_url + search_params + return url + +def scrape_jobs(url): + """ + Scrape job listings from the provided URL. + + Args: + url (str): The URL to scrape job listings from. + + Returns: + list: A list of dictionaries containing job details. + """ + try: + response = requests.get(url) + response.raise_for_status() # Raise an exception for HTTP errors + time.sleep(5) # Delay to avoid hitting the server too frequently + soup = BeautifulSoup(response.content, 'html.parser') + + job_divs = soup.find_all('div', class_='flex p-3 rounded group relative overflow-hidden') + jobs = [] + for job_div in job_divs: + title = job_div.find('h2').text.strip() + company = job_div.find('div', class_='jbs-dot-separeted-list').find('a').text.strip() + tags = [tag.text.strip() for tag in job_div.find_all('a', class_='tag')] + date_posted = job_div.find('span', class_='text-primary-text').text.strip() + salary = job_div.find('span', class_='text-gray-text').text.strip() + + # Check if the salary contains at least two digits + if not re.search(r'\d{2}', salary): + salary = "Not mentioned" + + job_url = job_div.find('a', class_='jbs-text-hover-link')['href'] + + jobs.append({ + 'title': title, + 'company': company, + 'company_url': f"https://www.devjobsscanner.com/company/{company.lower()}", + 'tags': tags, + 'date_posted': date_posted, + 'salary': salary, + 'job_url': job_url + }) + return jobs + except requests.RequestException as e: + print("Error scraping jobs:", e) + return [] + +def display_jobs(jobs): + """ + Display job details to the console. + + Args: + jobs (list): A list of dictionaries containing job details. + """ + for job in jobs: + print(f"Title: {job['title']}") + print(f"Company: {job['company']}") + print(f"Company URL: {job['company_url']}") + print(f"Tags: {', '.join(job['tags'])}") + print(f"Date Posted: {job['date_posted']}") + print(f"Salary: {job['salary']}") + print(f"Job URL: {job['job_url']}") + print("-" * 40) + +def save_as_csv(jobs, filename): + """ + Save job details as CSV file. + + Args: + jobs (list): A list of dictionaries containing job details. + filename (str): The name of the CSV file to save. + """ + output_dir = os.path.join(os.getcwd(), "outputFiles") + os.makedirs(output_dir, exist_ok=True) + keys = jobs[0].keys() + try: + with open(filename, 'w', newline='', encoding='utf-8') as output_file: + dict_writer = csv.DictWriter(output_file, fieldnames=keys) + dict_writer.writeheader() + dict_writer.writerows(jobs) + except IOError as e: + print("Error saving as CSV:", e) + +def save_as_txt(jobs, filename): + """ + Save job details as text file. + + Args: + jobs (list): A list of dictionaries containing job details. + filename (str): The name of the text file to save. + """ + try: + with open(filename, 'w', encoding='utf-8') as output_file: + for job in jobs: + output_file.write(f"Title: {job['title']}\n") + output_file.write(f"Company: {job['company']}\n") + output_file.write(f"Company URL: {job['company_url']}\n") + output_file.write(f"Tags: {', '.join(job['tags'])}\n") + output_file.write(f"Date Posted: {job['date_posted']}\n") + output_file.write(f"Salary: {job['salary']}\n") + output_file.write(f"Job URL: {job['job_url']}\n") + output_file.write("-" * 40 + "\n") + except IOError as e: + print("Error saving as TXT:", e) + +if __name__ == '__main__': + job, remote, save_option, sort_by = get_user_input() + url = construct_url(job, remote, sort_by) + print(f"Scraping URL: {url}") + jobs = scrape_jobs(url) + if jobs: + display_jobs(jobs) + fileName = f"./outputFiles/{job}_jobs_remote_{str(remote).lower()}_sorted_by_{sort_by}" + if save_option == 'csv': + save_as_csv(jobs, f"{fileName}.csv") + elif save_option == 'txt': + save_as_txt(jobs, f"{fileName}.txt") + elif save_option == 'both': + save_as_csv(jobs, f"{fileName}.csv") + save_as_txt(jobs, f"{fileName}.txt") + print(f"Jobs saved as {save_option.upper()} file(s).") + else: + print("No jobs found. Exiting.") diff --git a/WEB SCRAPING/devJobsScanner_Scraper/outputFiles/Junior Python Developer_jobs_remote_true_sorted_by_matches.csv b/WEB SCRAPING/devJobsScanner_Scraper/outputFiles/Junior Python Developer_jobs_remote_true_sorted_by_matches.csv new file mode 100644 index 00000000..e7ebe2d8 --- /dev/null +++ b/WEB SCRAPING/devJobsScanner_Scraper/outputFiles/Junior Python Developer_jobs_remote_true_sorted_by_matches.csv @@ -0,0 +1,21 @@ +title,company,company_url,tags,date_posted,salary,job_url +Junior Python Developer - Fully Remote,INDI Staffing Services,https://www.devjobsscanner.com/company/indi staffing services,['python'],4 weeks ago,Not mentioned,https://br.linkedin.com/jobs/view/junior-python-developer-fully-remote-at-indi-staffing-services-3905557993?refId=CIi7kPgOLtsBQ2GdsSUZ6A%3D%3D&trackingId=HjTjhxuOXesYMFynnjZ3sA%3D%3D&position=23&pageNum=15&trk=public_jobs_jserp-result_search-card +Junior Python Developer - Fully Remote,INDI Staffing Services,https://www.devjobsscanner.com/company/indi staffing services,['python'],4 weeks ago,Not mentioned,https://br.linkedin.com/jobs/view/junior-python-developer-fully-remote-at-indi-staffing-services-3905559533?refId=24YIlA6nBIXWZAw2pp8YIQ%3D%3D&trackingId=K0RNbyZF8P1NVP8jSDTZxg%3D%3D&position=14&pageNum=4&trk=public_jobs_jserp-result_search-card +Junior Python Developer - Fully Remote,INDI Staffing Services,https://www.devjobsscanner.com/company/indi staffing services,['python'],4 weeks ago,Not mentioned,https://br.linkedin.com/jobs/view/junior-python-developer-fully-remote-at-indi-staffing-services-3905558971?position=4&pageNum=50&refId=f%2FMDbLRF9jpyu1FP2qKzBA%3D%3D&trackingId=3b3MyV8heftivJ1yAEGDSA%3D%3D&trk=public_jobs_jserp-result_search-card +Junior Python Developer - Fully Remote,INDI Staffing Services,https://www.devjobsscanner.com/company/indi staffing services,['python'],4 weeks ago,Not mentioned,https://br.linkedin.com/jobs/view/junior-python-developer-fully-remote-at-indi-staffing-services-3905564228?position=9&pageNum=25&refId=3vjg%2F7Apk5o3blJ1SV4Trg%3D%3D&trackingId=YQovs1pUWZwPBsIsc%2F%2FeNA%3D%3D&trk=public_jobs_jserp-result_search-card +Junior Python Developer - Fully Remote,INDI Staffing Services,https://www.devjobsscanner.com/company/indi staffing services,['python'],4 weeks ago,Not mentioned,https://co.linkedin.com/jobs/view/junior-python-developer-fully-remote-at-indi-staffing-services-3905560503?position=3&pageNum=2&refId=n%2BIMuq%2BFPiZWMUAdjPElDQ%3D%3D&trackingId=CL5eC5WRkvm518gLzpcuXA%3D%3D&trk=public_jobs_jserp-result_search-card +Junior Python Developer - Fully Remote,INDI Staffing Services,https://www.devjobsscanner.com/company/indi staffing services,['python'],4 weeks ago,Not mentioned,https://co.linkedin.com/jobs/view/junior-python-developer-fully-remote-at-indi-staffing-services-3905560484?position=4&pageNum=2&refId=n%2BIMuq%2BFPiZWMUAdjPElDQ%3D%3D&trackingId=Ns2Q8YkzKL8BpD1ymz7nZw%3D%3D&trk=public_jobs_jserp-result_search-card +Junior Python Developer - Fully Remote,INDI Staffing Services,https://www.devjobsscanner.com/company/indi staffing services,['python'],4 weeks ago,Not mentioned,https://br.linkedin.com/jobs/view/junior-python-developer-fully-remote-at-indi-staffing-services-3905563257?position=2&pageNum=2&refId=bUQQZsGdjsbzIyYszLfYAA%3D%3D&trackingId=BsQara%2F7D3fS3KbgT8qvng%3D%3D&trk=public_jobs_jserp-result_search-card +Junior Python Developer - Fully Remote,INDI Staffing Services,https://www.devjobsscanner.com/company/indi staffing services,['python'],4 weeks ago,Not mentioned,https://br.linkedin.com/jobs/view/junior-python-developer-fully-remote-at-indi-staffing-services-3905564224?position=1&pageNum=97&refId=%2BqnXHLbBBntROtlrbSJwyg%3D%3D&trackingId=NizLf2pvyn21xhEur7DC5g%3D%3D&trk=public_jobs_jserp-result_search-card +Junior Python Developer,Remote,https://www.devjobsscanner.com/company/remote,['python'],3 weeks ago,360K-420K INR,https://www.glassdoor.com/partner/jobListing.htm?pos=110&ao=1136043&tgt=APPLY_START&s=58&guid=0000018f6ee9aef3b4d180f3e6156037&src=GD_JOB_VIEW&t=SR&vt=w&ea=1&cs=1_90bec054&cb=1715552759939&jobListingId=1009261935030&jrtk=5-yul1-0-1htnejbpehdht800-4608d5f7f2223d74 +Python/Django Developer (Junior/Mid level),Remote,https://www.devjobsscanner.com/company/remote,"['python', 'django']",3 weeks ago,$83K-104K,https://www.glassdoor.com/partner/jobListing.htm?pos=1535&ao=1136043&tgt=APPLY_START&s=58&guid=0000018f6afd4e1790ebc43a68a229b4&src=GD_JOB_VIEW&t=SR&vt=w&ea=1&cs=1_c4a3bb53&cb=1715486937283&jobListingId=1009258237173&jrtk=5-yul1-0-1htlfqjioir0k800-8ef82aa48f33eb1f +"Full Stack Developer 80-100% (f/m/x), fully remote",comparis.ch AG,https://www.devjobsscanner.com/company/comparis.ch ag,"['JavaScript', 'TypeScript', 'React', 'Next.js is a must']",2 weeks ago,$50K-60K,https://www.comparis.ch/people/jobs/detail/1483471 +Junior Python Developer,Remote,https://www.devjobsscanner.com/company/remote,['python'],1 month ago,200K-600K INR,https://www.glassdoor.com/partner/jobListing.htm?pos=1007&ao=1136043&tgt=APPLY_START&s=58&guid=0000018f050f36598d01f2ccbf6c4a0c&src=GD_JOB_VIEW&t=SR&vt=w&ea=1&cs=1_ee5c1cb4&cb=1713776834633&jobListingId=1009236729692&jrtk=5-yul1-0-1hs2gudkok7rv807-fc64d05e0d0ad0b8 +Remote Junior AI Developer (Python),Capital Certainty,https://www.devjobsscanner.com/company/capital certainty,['python'],1 month ago,Not mentioned,https://mx.linkedin.com/jobs/view/remote-junior-ai-developer-python-at-capital-certainty-3903420724?position=1&pageNum=40&refId=GrzP6Ij8MHMJSeEX7POvZg%3D%3D&trackingId=tul63IYKsaIJgCMpBs8E8A%3D%3D&trk=public_jobs_jserp-result_search-card +Remote Junior AI Developer (Python),Capital Certainty,https://www.devjobsscanner.com/company/capital certainty,['python'],1 month ago,Not mentioned,https://co.linkedin.com/jobs/view/remote-junior-ai-developer-python-at-capital-certainty-3903424707?position=2&pageNum=25&refId=9jXnRE8TnaMjCU9ULDZnFg%3D%3D&trackingId=a2cdthbZLKym%2FrjOau2ixw%3D%3D&trk=public_jobs_jserp-result_search-card +Junior Python Automation Engineer - Remote,HireMeFast LLC,https://www.devjobsscanner.com/company/hiremefast llc,"['python', 'automation']",4 weeks ago,Not mentioned,https://www.linkedin.com/jobs/view/junior-python-automation-engineer-remote-at-hiremefast-llc-3911597343?refId=153raRUvsXB3eCH6JeOXdQ%3D%3D&trackingId=rqvfYQhC%2FjOGJKCliF6eTg%3D%3D&position=20&pageNum=3&trk=public_jobs_jserp-result_search-card +Junior Python Automation Engineer - Remote,HireMeFast LLC,https://www.devjobsscanner.com/company/hiremefast llc,"['python', 'automation']",3 weeks ago,Not mentioned,https://www.linkedin.com/jobs/view/junior-python-automation-engineer-remote-at-hiremefast-llc-3913083195?refId=jRHwmdZSYrD1hTxFj57UvA%3D%3D&trackingId=EonPhC0mP6MG%2BVNmkjwcvA%3D%3D&position=13&pageNum=1&trk=public_jobs_jserp-result_search-card +Junior Python Automation Engineer - Remote,HireMeFast LLC,https://www.devjobsscanner.com/company/hiremefast llc,"['python', 'automation']",3 weeks ago,Not mentioned,https://www.linkedin.com/jobs/view/junior-python-automation-engineer-remote-at-hiremefast-llc-3913727649?refId=Rv6T5COZxcDrHwk3jw8cRQ%3D%3D&trackingId=kr7fAONQKUm%2FJvt4WMPFvg%3D%3D&position=5&pageNum=30&trk=public_jobs_jserp-result_search-card +Junior Python Automation Engineer - Remote,HireMeFast LLC,https://www.devjobsscanner.com/company/hiremefast llc,"['python', 'automation']",3 weeks ago,Not mentioned,https://www.linkedin.com/jobs/view/junior-python-automation-engineer-remote-at-hiremefast-llc-3914226121?refId=MSdQMFwE%2F3S%2BUcrDpBSA7w%3D%3D&trackingId=GhJ3LvB0hWSAn3CrkHTNKQ%3D%3D&position=20&pageNum=38&trk=public_jobs_jserp-result_search-card +Junior Python Automation Engineer - Remote,HireMeFast LLC,https://www.devjobsscanner.com/company/hiremefast llc,"['python', 'automation']",2 weeks ago,Not mentioned,https://www.linkedin.com/jobs/view/junior-python-automation-engineer-remote-at-hiremefast-llc-3917915478?position=9&pageNum=87&refId=6OvZjHtktNkp3%2FtdijaA2g%3D%3D&trackingId=HBgQCPVN%2FlVJb8JEHXNqvw%3D%3D&trk=public_jobs_jserp-result_search-card +Junior Python Automation Engineer - Remote,HireMeFast LLC,https://www.devjobsscanner.com/company/hiremefast llc,"['python', 'automation']",2 weeks ago,Not mentioned,https://www.linkedin.com/jobs/view/junior-python-automation-engineer-remote-at-hiremefast-llc-3918715725?position=8&pageNum=2&refId=lKPDTgHL55I1EMZcazybag%3D%3D&trackingId=4UEgu8DCO4otvbIw2kr31w%3D%3D&trk=public_jobs_jserp-result_search-card diff --git a/WEB SCRAPING/devJobsScanner_Scraper/outputFiles/Junior Python Developer_jobs_remote_true_sorted_by_matches.txt b/WEB SCRAPING/devJobsScanner_Scraper/outputFiles/Junior Python Developer_jobs_remote_true_sorted_by_matches.txt new file mode 100644 index 00000000..afc2026c --- /dev/null +++ b/WEB SCRAPING/devJobsScanner_Scraper/outputFiles/Junior Python Developer_jobs_remote_true_sorted_by_matches.txt @@ -0,0 +1,160 @@ +Title: Junior Python Developer - Fully Remote +Company: INDI Staffing Services +Company URL: https://www.devjobsscanner.com/company/indi staffing services +Tags: python +Date Posted: 4 weeks ago +Salary: Not mentioned +Job URL: https://br.linkedin.com/jobs/view/junior-python-developer-fully-remote-at-indi-staffing-services-3905557993?refId=CIi7kPgOLtsBQ2GdsSUZ6A%3D%3D&trackingId=HjTjhxuOXesYMFynnjZ3sA%3D%3D&position=23&pageNum=15&trk=public_jobs_jserp-result_search-card +---------------------------------------- +Title: Junior Python Developer - Fully Remote +Company: INDI Staffing Services +Company URL: https://www.devjobsscanner.com/company/indi staffing services +Tags: python +Date Posted: 4 weeks ago +Salary: Not mentioned +Job URL: https://br.linkedin.com/jobs/view/junior-python-developer-fully-remote-at-indi-staffing-services-3905559533?refId=24YIlA6nBIXWZAw2pp8YIQ%3D%3D&trackingId=K0RNbyZF8P1NVP8jSDTZxg%3D%3D&position=14&pageNum=4&trk=public_jobs_jserp-result_search-card +---------------------------------------- +Title: Junior Python Developer - Fully Remote +Company: INDI Staffing Services +Company URL: https://www.devjobsscanner.com/company/indi staffing services +Tags: python +Date Posted: 4 weeks ago +Salary: Not mentioned +Job URL: https://br.linkedin.com/jobs/view/junior-python-developer-fully-remote-at-indi-staffing-services-3905558971?position=4&pageNum=50&refId=f%2FMDbLRF9jpyu1FP2qKzBA%3D%3D&trackingId=3b3MyV8heftivJ1yAEGDSA%3D%3D&trk=public_jobs_jserp-result_search-card +---------------------------------------- +Title: Junior Python Developer - Fully Remote +Company: INDI Staffing Services +Company URL: https://www.devjobsscanner.com/company/indi staffing services +Tags: python +Date Posted: 4 weeks ago +Salary: Not mentioned +Job URL: https://br.linkedin.com/jobs/view/junior-python-developer-fully-remote-at-indi-staffing-services-3905564228?position=9&pageNum=25&refId=3vjg%2F7Apk5o3blJ1SV4Trg%3D%3D&trackingId=YQovs1pUWZwPBsIsc%2F%2FeNA%3D%3D&trk=public_jobs_jserp-result_search-card +---------------------------------------- +Title: Junior Python Developer - Fully Remote +Company: INDI Staffing Services +Company URL: https://www.devjobsscanner.com/company/indi staffing services +Tags: python +Date Posted: 4 weeks ago +Salary: Not mentioned +Job URL: https://co.linkedin.com/jobs/view/junior-python-developer-fully-remote-at-indi-staffing-services-3905560503?position=3&pageNum=2&refId=n%2BIMuq%2BFPiZWMUAdjPElDQ%3D%3D&trackingId=CL5eC5WRkvm518gLzpcuXA%3D%3D&trk=public_jobs_jserp-result_search-card +---------------------------------------- +Title: Junior Python Developer - Fully Remote +Company: INDI Staffing Services +Company URL: https://www.devjobsscanner.com/company/indi staffing services +Tags: python +Date Posted: 4 weeks ago +Salary: Not mentioned +Job URL: https://co.linkedin.com/jobs/view/junior-python-developer-fully-remote-at-indi-staffing-services-3905560484?position=4&pageNum=2&refId=n%2BIMuq%2BFPiZWMUAdjPElDQ%3D%3D&trackingId=Ns2Q8YkzKL8BpD1ymz7nZw%3D%3D&trk=public_jobs_jserp-result_search-card +---------------------------------------- +Title: Junior Python Developer - Fully Remote +Company: INDI Staffing Services +Company URL: https://www.devjobsscanner.com/company/indi staffing services +Tags: python +Date Posted: 4 weeks ago +Salary: Not mentioned +Job URL: https://br.linkedin.com/jobs/view/junior-python-developer-fully-remote-at-indi-staffing-services-3905563257?position=2&pageNum=2&refId=bUQQZsGdjsbzIyYszLfYAA%3D%3D&trackingId=BsQara%2F7D3fS3KbgT8qvng%3D%3D&trk=public_jobs_jserp-result_search-card +---------------------------------------- +Title: Junior Python Developer - Fully Remote +Company: INDI Staffing Services +Company URL: https://www.devjobsscanner.com/company/indi staffing services +Tags: python +Date Posted: 4 weeks ago +Salary: Not mentioned +Job URL: https://br.linkedin.com/jobs/view/junior-python-developer-fully-remote-at-indi-staffing-services-3905564224?position=1&pageNum=97&refId=%2BqnXHLbBBntROtlrbSJwyg%3D%3D&trackingId=NizLf2pvyn21xhEur7DC5g%3D%3D&trk=public_jobs_jserp-result_search-card +---------------------------------------- +Title: Junior Python Developer +Company: Remote +Company URL: https://www.devjobsscanner.com/company/remote +Tags: python +Date Posted: 3 weeks ago +Salary: 360K-420K INR +Job URL: https://www.glassdoor.com/partner/jobListing.htm?pos=110&ao=1136043&tgt=APPLY_START&s=58&guid=0000018f6ee9aef3b4d180f3e6156037&src=GD_JOB_VIEW&t=SR&vt=w&ea=1&cs=1_90bec054&cb=1715552759939&jobListingId=1009261935030&jrtk=5-yul1-0-1htnejbpehdht800-4608d5f7f2223d74 +---------------------------------------- +Title: Python/Django Developer (Junior/Mid level) +Company: Remote +Company URL: https://www.devjobsscanner.com/company/remote +Tags: python, django +Date Posted: 3 weeks ago +Salary: $83K-104K +Job URL: https://www.glassdoor.com/partner/jobListing.htm?pos=1535&ao=1136043&tgt=APPLY_START&s=58&guid=0000018f6afd4e1790ebc43a68a229b4&src=GD_JOB_VIEW&t=SR&vt=w&ea=1&cs=1_c4a3bb53&cb=1715486937283&jobListingId=1009258237173&jrtk=5-yul1-0-1htlfqjioir0k800-8ef82aa48f33eb1f +---------------------------------------- +Title: Full Stack Developer 80-100% (f/m/x), fully remote +Company: comparis.ch AG +Company URL: https://www.devjobsscanner.com/company/comparis.ch ag +Tags: JavaScript, TypeScript, React, Next.js is a must +Date Posted: 2 weeks ago +Salary: $50K-60K +Job URL: https://www.comparis.ch/people/jobs/detail/1483471 +---------------------------------------- +Title: Junior Python Developer +Company: Remote +Company URL: https://www.devjobsscanner.com/company/remote +Tags: python +Date Posted: 1 month ago +Salary: 200K-600K INR +Job URL: https://www.glassdoor.com/partner/jobListing.htm?pos=1007&ao=1136043&tgt=APPLY_START&s=58&guid=0000018f050f36598d01f2ccbf6c4a0c&src=GD_JOB_VIEW&t=SR&vt=w&ea=1&cs=1_ee5c1cb4&cb=1713776834633&jobListingId=1009236729692&jrtk=5-yul1-0-1hs2gudkok7rv807-fc64d05e0d0ad0b8 +---------------------------------------- +Title: Remote Junior AI Developer (Python) +Company: Capital Certainty +Company URL: https://www.devjobsscanner.com/company/capital certainty +Tags: python +Date Posted: 1 month ago +Salary: Not mentioned +Job URL: https://mx.linkedin.com/jobs/view/remote-junior-ai-developer-python-at-capital-certainty-3903420724?position=1&pageNum=40&refId=GrzP6Ij8MHMJSeEX7POvZg%3D%3D&trackingId=tul63IYKsaIJgCMpBs8E8A%3D%3D&trk=public_jobs_jserp-result_search-card +---------------------------------------- +Title: Remote Junior AI Developer (Python) +Company: Capital Certainty +Company URL: https://www.devjobsscanner.com/company/capital certainty +Tags: python +Date Posted: 1 month ago +Salary: Not mentioned +Job URL: https://co.linkedin.com/jobs/view/remote-junior-ai-developer-python-at-capital-certainty-3903424707?position=2&pageNum=25&refId=9jXnRE8TnaMjCU9ULDZnFg%3D%3D&trackingId=a2cdthbZLKym%2FrjOau2ixw%3D%3D&trk=public_jobs_jserp-result_search-card +---------------------------------------- +Title: Junior Python Automation Engineer - Remote +Company: HireMeFast LLC +Company URL: https://www.devjobsscanner.com/company/hiremefast llc +Tags: python, automation +Date Posted: 4 weeks ago +Salary: Not mentioned +Job URL: https://www.linkedin.com/jobs/view/junior-python-automation-engineer-remote-at-hiremefast-llc-3911597343?refId=153raRUvsXB3eCH6JeOXdQ%3D%3D&trackingId=rqvfYQhC%2FjOGJKCliF6eTg%3D%3D&position=20&pageNum=3&trk=public_jobs_jserp-result_search-card +---------------------------------------- +Title: Junior Python Automation Engineer - Remote +Company: HireMeFast LLC +Company URL: https://www.devjobsscanner.com/company/hiremefast llc +Tags: python, automation +Date Posted: 3 weeks ago +Salary: Not mentioned +Job URL: https://www.linkedin.com/jobs/view/junior-python-automation-engineer-remote-at-hiremefast-llc-3913083195?refId=jRHwmdZSYrD1hTxFj57UvA%3D%3D&trackingId=EonPhC0mP6MG%2BVNmkjwcvA%3D%3D&position=13&pageNum=1&trk=public_jobs_jserp-result_search-card +---------------------------------------- +Title: Junior Python Automation Engineer - Remote +Company: HireMeFast LLC +Company URL: https://www.devjobsscanner.com/company/hiremefast llc +Tags: python, automation +Date Posted: 3 weeks ago +Salary: Not mentioned +Job URL: https://www.linkedin.com/jobs/view/junior-python-automation-engineer-remote-at-hiremefast-llc-3913727649?refId=Rv6T5COZxcDrHwk3jw8cRQ%3D%3D&trackingId=kr7fAONQKUm%2FJvt4WMPFvg%3D%3D&position=5&pageNum=30&trk=public_jobs_jserp-result_search-card +---------------------------------------- +Title: Junior Python Automation Engineer - Remote +Company: HireMeFast LLC +Company URL: https://www.devjobsscanner.com/company/hiremefast llc +Tags: python, automation +Date Posted: 3 weeks ago +Salary: Not mentioned +Job URL: https://www.linkedin.com/jobs/view/junior-python-automation-engineer-remote-at-hiremefast-llc-3914226121?refId=MSdQMFwE%2F3S%2BUcrDpBSA7w%3D%3D&trackingId=GhJ3LvB0hWSAn3CrkHTNKQ%3D%3D&position=20&pageNum=38&trk=public_jobs_jserp-result_search-card +---------------------------------------- +Title: Junior Python Automation Engineer - Remote +Company: HireMeFast LLC +Company URL: https://www.devjobsscanner.com/company/hiremefast llc +Tags: python, automation +Date Posted: 2 weeks ago +Salary: Not mentioned +Job URL: https://www.linkedin.com/jobs/view/junior-python-automation-engineer-remote-at-hiremefast-llc-3917915478?position=9&pageNum=87&refId=6OvZjHtktNkp3%2FtdijaA2g%3D%3D&trackingId=HBgQCPVN%2FlVJb8JEHXNqvw%3D%3D&trk=public_jobs_jserp-result_search-card +---------------------------------------- +Title: Junior Python Automation Engineer - Remote +Company: HireMeFast LLC +Company URL: https://www.devjobsscanner.com/company/hiremefast llc +Tags: python, automation +Date Posted: 2 weeks ago +Salary: Not mentioned +Job URL: https://www.linkedin.com/jobs/view/junior-python-automation-engineer-remote-at-hiremefast-llc-3918715725?position=8&pageNum=2&refId=lKPDTgHL55I1EMZcazybag%3D%3D&trackingId=4UEgu8DCO4otvbIw2kr31w%3D%3D&trk=public_jobs_jserp-result_search-card +---------------------------------------- diff --git a/WEB SCRAPING/devJobsScanner_Scraper/outputFiles/Python Developer_jobs_remote_true_sorted_by_newest.csv b/WEB SCRAPING/devJobsScanner_Scraper/outputFiles/Python Developer_jobs_remote_true_sorted_by_newest.csv new file mode 100644 index 00000000..2c35ac06 --- /dev/null +++ b/WEB SCRAPING/devJobsScanner_Scraper/outputFiles/Python Developer_jobs_remote_true_sorted_by_newest.csv @@ -0,0 +1,41 @@ +title,company,company_url,tags,date_posted,salary,job_url +"Lead Software Engineer, Capital One Shopping (Remote)",Capital One,https://www.devjobsscanner.com/company/capital one,"['lead', 'startup', 'build', 'javascript', 'python', 'typescript']",1 week ago,Not mentioned,https://www.dice.com/apply-redirect?eyJjb25maWd1cmVkVXJsIjoiaHR0cHM6Ly9kc3AucHJuZy5jby91akVEUUxiIiwiam9iSWQiOiI1ZjEzM2ExZS05YzYzLTQzOTgtYmZiZS01ZDZhNjQ1MGZjMTIiLCJqb2JUaXRsZSI6IkxlYWQgU29mdHdhcmUgRW5naW5lZXIsIENhcGl0YWwgT25lIFNob3BwaW5nIChSZW1vdGUpIiwiam9iVHlwZSI6InByb2dyYW1tYXRpYyJ9 +Sr. Software Engineer - C++ Go Python - Remote,Comcast Corporation,https://www.devjobsscanner.com/company/comcast corporation,"['video', 'data', 'design', 'build', 'c++', 'go', 'python']",1 week ago,Not mentioned,https://www.dice.com/apply-redirect?eyJjb25maWd1cmVkVXJsIjoiaHR0cHM6Ly9kc3AucHJuZy5jby9jcnFBNFViIiwiam9iSWQiOiJhZmVjNTk5Yy0yZmE2LTQxMmYtYWExOC1kMTE2ZGExNTMxYTQiLCJqb2JUaXRsZSI6IlNyLiBTb2Z0d2FyZSBFbmdpbmVlciAtIEMrKyBHbyBQeXRob24gLSBSZW1vdGUiLCJqb2JUeXBlIjoicHJvZ3JhbW1hdGljIn0= +Sr. Software Engineer - C++ Go Python - Remote,Comcast Corporation,https://www.devjobsscanner.com/company/comcast corporation,"['video', 'data', 'design', 'build', 'c++', 'go', 'python']",1 week ago,Not mentioned,https://www.dice.com/apply-redirect?eyJjb25maWd1cmVkVXJsIjoiaHR0cHM6Ly9kc3AucHJuZy5jby9aWktRYmtiIiwiam9iSWQiOiI4YjVjMWZmYi0xMzgyLTQ0MDYtYmM3Yy00M2YwMjM1MmFhNmYiLCJqb2JUaXRsZSI6IlNyLiBTb2Z0d2FyZSBFbmdpbmVlciAtIEMrKyBHbyBQeXRob24gLSBSZW1vdGUiLCJqb2JUeXBlIjoicHJvZ3JhbW1hdGljIn0= +Sr. Software Engineer - C++ Go Python - Remote,Comcast Corporation,https://www.devjobsscanner.com/company/comcast corporation,"['video', 'data', 'design', 'build', 'c++', 'go', 'python']",1 week ago,Not mentioned,https://www.dice.com/apply-redirect?eyJjb25maWd1cmVkVXJsIjoiaHR0cHM6Ly9kc3AucHJuZy5jby9GUEhQV09iIiwiam9iSWQiOiJlOWViMzY2Ni04MDdhLTRiNGYtODc3NS02NWFiOWEwODBlMzYiLCJqb2JUaXRsZSI6IlNyLiBTb2Z0d2FyZSBFbmdpbmVlciAtIEMrKyBHbyBQeXRob24gLSBSZW1vdGUiLCJqb2JUeXBlIjoicHJvZ3JhbW1hdGljIn0= +Sr. Software Engineer - C++ Go Python - Remote,Comcast Corporation,https://www.devjobsscanner.com/company/comcast corporation,"['video', 'data', 'design', 'build', 'c++', 'go', 'python']",1 week ago,Not mentioned,https://www.dice.com/apply-redirect?eyJjb25maWd1cmVkVXJsIjoiaHR0cHM6Ly9kc3AucHJuZy5jby9GeFd4YUZiIiwiam9iSWQiOiJkZjBlNzE5Yy1iMTE5LTQ1NjctYjE0Ni0wOTY2NDI2MzMyZDkiLCJqb2JUaXRsZSI6IlNyLiBTb2Z0d2FyZSBFbmdpbmVlciAtIEMrKyBHbyBQeXRob24gLSBSZW1vdGUiLCJqb2JUeXBlIjoicHJvZ3JhbW1hdGljIn0= +Sr. Software Engineer - C++ Go Python - Remote,Comcast Corporation,https://www.devjobsscanner.com/company/comcast corporation,"['video', 'data', 'design', 'build', 'c++', 'go', 'python']",1 week ago,Not mentioned,https://www.dice.com/apply-redirect?eyJjb25maWd1cmVkVXJsIjoiaHR0cHM6Ly9kc3AucHJuZy5jby9VdktKb09iIiwiam9iSWQiOiJmMzhlNDg0ZC00ZTAwLTQ2YmEtYmRjYS0xMjM4YzM2Y2ViMDAiLCJqb2JUaXRsZSI6IlNyLiBTb2Z0d2FyZSBFbmdpbmVlciAtIEMrKyBHbyBQeXRob24gLSBSZW1vdGUiLCJqb2JUeXBlIjoicHJvZ3JhbW1hdGljIn0= +Senior ServiceNow Custom App Developer DHS (Remote),ICF,https://www.devjobsscanner.com/company/icf,"['Support', 'ITIL', 'JavaScript', 'Security', 'ServiceNow']",1 week ago,$85K-144K,https://devitjobs.us/jobs/ICF-Senior-ServiceNow-Custom-App-Developer-DHS-Remote?utm_source=devjobsscanner +Senior ServiceNow ITBM and SPM Developer,ICF,https://www.devjobsscanner.com/company/icf,"['CMS', 'HTML5', 'ITIL', 'JSON', 'JavaScript', 'REST', 'SOAP', 'Security', 'ServiceNow', 'jQuery', 'UX UI Design']",1 week ago,$83K-141K,https://devitjobs.us/jobs/ICF-Senior-ServiceNow-ITBM-and-SPM-Developer?utm_source=devjobsscanner +Full Stack Engineer FTE,Linkitall LLC,https://www.devjobsscanner.com/company/linkitall llc,"['AWS', 'C#', 'Cloud', 'CSS', 'JavaScript', 'MySQL', 'PostgreSQL', 'Python', 'React', 'Ruby', 'Security', 'Serverless', 'Web', 'ASP.NET']",1 week ago,$100K-120K,https://devitjobs.us/jobs/Linkitall-LLC-Full-Stack-Engineer-FTE?utm_source=devjobsscanner +NestJS Developer,"Business Performance Systems, LLC","https://www.devjobsscanner.com/company/business performance systems, llc","['Architect', 'Backend', 'CSS', 'GitHub', 'HTTP', 'JSON', 'NestJS', 'RPA', 'React', 'Selenium', 'TypeScript', 'Web', 'XML', 'DDD']",1 week ago,$104K-166K,https://devitjobs.us/jobs/Business-Performance-Systems-LLC-NestJS-Developer?utm_source=devjobsscanner +"Full stack Developer, Trilogy (Remote) - $100,000/year USD",Crossover,https://www.devjobsscanner.com/company/crossover,[],1 week ago,Not mentioned,https://ca.linkedin.com/jobs/view/full-stack-developer-trilogy-remote-%24100-000-year-usd-at-crossover-3918956049?position=4&pageNum=82&refId=o5Fir2Hl1NbqZJIDVZDTTg%3D%3D&trackingId=9C369v4uC7ZvlIG362ZzPg%3D%3D&trk=public_jobs_jserp-result_search-card +"Full stack Developer, Trilogy (Remote) - $100,000/year USD",Crossover,https://www.devjobsscanner.com/company/crossover,[],1 week ago,Not mentioned,https://ca.linkedin.com/jobs/view/full-stack-developer-trilogy-remote-%24100-000-year-usd-at-crossover-3918952607?position=10&pageNum=77&refId=rIp8uk7Zb7YJ%2FIoM6gjThA%3D%3D&trackingId=4%2BR9sWdqi6VNsYdqYbI%2BSg%3D%3D&trk=public_jobs_jserp-result_search-card +"Full stack Developer, Trilogy (Remote) - $100,000/year USD",Crossover,https://www.devjobsscanner.com/company/crossover,[],1 week ago,Not mentioned,https://ee.linkedin.com/jobs/view/full-stack-developer-trilogy-remote-%24100-000-year-usd-at-crossover-3918952164?position=7&pageNum=2&refId=%2BlzGQBFIZNr%2F77X2aCLJwg%3D%3D&trackingId=NwmYBAuw6pdZbJvt7BUl%2FA%3D%3D&trk=public_jobs_jserp-result_search-card +"Back End Developer, Trilogy (Remote) - $100,000/year USD",Crossover,https://www.devjobsscanner.com/company/crossover,[],1 week ago,Not mentioned,https://se.linkedin.com/jobs/view/back-end-developer-trilogy-remote-%24100-000-year-usd-at-crossover-3918952649?position=2&pageNum=95&refId=gkhd25N%2BusYKXmVi%2Ftc6hQ%3D%3D&trackingId=Df2REZr6HIyqEOi59JTEXQ%3D%3D&trk=public_jobs_jserp-result_search-card +"Back End Developer, Trilogy (Remote) - $100,000/year USD",Crossover,https://www.devjobsscanner.com/company/crossover,[],1 week ago,Not mentioned,https://jp.linkedin.com/jobs/view/back-end-developer-trilogy-remote-%24100-000-year-usd-at-crossover-3918955247?position=2&pageNum=92&refId=M%2F%2B%2FfR2XZRE3Q7c%2BcUH98Q%3D%3D&trackingId=fImG1FN3mqOKjFysIccDkw%3D%3D&trk=public_jobs_jserp-result_search-card +"Full stack Developer, Trilogy (Remote) - $100,000/year USD",Crossover,https://www.devjobsscanner.com/company/crossover,[],1 week ago,Not mentioned,https://jp.linkedin.com/jobs/view/full-stack-developer-trilogy-remote-%24100-000-year-usd-at-crossover-3918958006?position=4&pageNum=62&refId=zFLlHYOklNghNqc5H5wHeg%3D%3D&trackingId=WD%2B0Wti%2FEdhUVqRVIFR%2FCQ%3D%3D&trk=public_jobs_jserp-result_search-card +"Full stack Developer, Trilogy (Remote) - $100,000/year USD",Crossover,https://www.devjobsscanner.com/company/crossover,[],1 week ago,Not mentioned,https://jp.linkedin.com/jobs/view/full-stack-developer-trilogy-remote-%24100-000-year-usd-at-crossover-3918956027?position=6&pageNum=45&refId=c3IIxVPPuCAd6X%2B9eAfStA%3D%3D&trackingId=UcpNg1sflvPcannqUbWp9Q%3D%3D&trk=public_jobs_jserp-result_search-card +"Full stack Developer, Trilogy (Remote) - $100,000/year USD",Crossover,https://www.devjobsscanner.com/company/crossover,[],1 week ago,Not mentioned,https://mx.linkedin.com/jobs/view/full-stack-developer-trilogy-remote-%24100-000-year-usd-at-crossover-3918951923?position=2&pageNum=60&refId=11dLN08Bn3KEU19lv2RyJw%3D%3D&trackingId=bNTnSuMHG9M9TSPyAEdjcQ%3D%3D&trk=public_jobs_jserp-result_search-card +"Development Team Lead, gt.school (Remote) - $100,000/year USD",Crossover,https://www.devjobsscanner.com/company/crossover,['lead'],1 week ago,Not mentioned,https://ar.linkedin.com/jobs/view/development-team-lead-gt-school-remote-%24100-000-year-usd-at-crossover-3918949522?position=7&pageNum=40&refId=6UvPAwIoDVN26%2BwNoBzz7Q%3D%3D&trackingId=W2om2ebZp74ceBYLiXAL1A%3D%3D&trk=public_jobs_jserp-result_search-card +Software Development Engineer in Test (Remote Canada),Milk Moovement,https://www.devjobsscanner.com/company/milk moovement,[],1 week ago,Not mentioned,https://www.glassdoor.com/partner/jobListing.htm?pos=338&ao=1136043&s=58&guid=0000018f70da9400a9dd451b642c35d5&src=GD_JOB_VIEW&t=SR&vt=w&cs=1_ebf9e050&cb=1715585324501&jobListingId=1009124516931&jrtk=5-yul1-0-1htodl51oj33d805-acafb3b76c0b8a5c +"Lead Software Engineer, Capital One Shopping (Remote)",Capital One,https://www.devjobsscanner.com/company/capital one,"['lead', 'startup', 'build', 'javascript', 'python', 'typescript']",1 week ago,Not mentioned,https://www.dice.com/apply-redirect?eyJjb25maWd1cmVkVXJsIjoiaHR0cHM6Ly9kc3AucHJuZy5jby91akVEUUxiIiwiam9iSWQiOiI1ZjEzM2ExZS05YzYzLTQzOTgtYmZiZS01ZDZhNjQ1MGZjMTIiLCJqb2JUaXRsZSI6IkxlYWQgU29mdHdhcmUgRW5naW5lZXIsIENhcGl0YWwgT25lIFNob3BwaW5nIChSZW1vdGUpIiwiam9iVHlwZSI6InByb2dyYW1tYXRpYyJ9 +Sr. Software Engineer - C++ Go Python - Remote,Comcast Corporation,https://www.devjobsscanner.com/company/comcast corporation,"['video', 'data', 'design', 'build', 'c++', 'go', 'python']",1 week ago,Not mentioned,https://www.dice.com/apply-redirect?eyJjb25maWd1cmVkVXJsIjoiaHR0cHM6Ly9kc3AucHJuZy5jby9jcnFBNFViIiwiam9iSWQiOiJhZmVjNTk5Yy0yZmE2LTQxMmYtYWExOC1kMTE2ZGExNTMxYTQiLCJqb2JUaXRsZSI6IlNyLiBTb2Z0d2FyZSBFbmdpbmVlciAtIEMrKyBHbyBQeXRob24gLSBSZW1vdGUiLCJqb2JUeXBlIjoicHJvZ3JhbW1hdGljIn0= +Sr. Software Engineer - C++ Go Python - Remote,Comcast Corporation,https://www.devjobsscanner.com/company/comcast corporation,"['video', 'data', 'design', 'build', 'c++', 'go', 'python']",1 week ago,Not mentioned,https://www.dice.com/apply-redirect?eyJjb25maWd1cmVkVXJsIjoiaHR0cHM6Ly9kc3AucHJuZy5jby9aWktRYmtiIiwiam9iSWQiOiI4YjVjMWZmYi0xMzgyLTQ0MDYtYmM3Yy00M2YwMjM1MmFhNmYiLCJqb2JUaXRsZSI6IlNyLiBTb2Z0d2FyZSBFbmdpbmVlciAtIEMrKyBHbyBQeXRob24gLSBSZW1vdGUiLCJqb2JUeXBlIjoicHJvZ3JhbW1hdGljIn0= +Sr. Software Engineer - C++ Go Python - Remote,Comcast Corporation,https://www.devjobsscanner.com/company/comcast corporation,"['video', 'data', 'design', 'build', 'c++', 'go', 'python']",1 week ago,Not mentioned,https://www.dice.com/apply-redirect?eyJjb25maWd1cmVkVXJsIjoiaHR0cHM6Ly9kc3AucHJuZy5jby9GUEhQV09iIiwiam9iSWQiOiJlOWViMzY2Ni04MDdhLTRiNGYtODc3NS02NWFiOWEwODBlMzYiLCJqb2JUaXRsZSI6IlNyLiBTb2Z0d2FyZSBFbmdpbmVlciAtIEMrKyBHbyBQeXRob24gLSBSZW1vdGUiLCJqb2JUeXBlIjoicHJvZ3JhbW1hdGljIn0= +Sr. Software Engineer - C++ Go Python - Remote,Comcast Corporation,https://www.devjobsscanner.com/company/comcast corporation,"['video', 'data', 'design', 'build', 'c++', 'go', 'python']",1 week ago,Not mentioned,https://www.dice.com/apply-redirect?eyJjb25maWd1cmVkVXJsIjoiaHR0cHM6Ly9kc3AucHJuZy5jby9GeFd4YUZiIiwiam9iSWQiOiJkZjBlNzE5Yy1iMTE5LTQ1NjctYjE0Ni0wOTY2NDI2MzMyZDkiLCJqb2JUaXRsZSI6IlNyLiBTb2Z0d2FyZSBFbmdpbmVlciAtIEMrKyBHbyBQeXRob24gLSBSZW1vdGUiLCJqb2JUeXBlIjoicHJvZ3JhbW1hdGljIn0= +Sr. Software Engineer - C++ Go Python - Remote,Comcast Corporation,https://www.devjobsscanner.com/company/comcast corporation,"['video', 'data', 'design', 'build', 'c++', 'go', 'python']",1 week ago,Not mentioned,https://www.dice.com/apply-redirect?eyJjb25maWd1cmVkVXJsIjoiaHR0cHM6Ly9kc3AucHJuZy5jby9VdktKb09iIiwiam9iSWQiOiJmMzhlNDg0ZC00ZTAwLTQ2YmEtYmRjYS0xMjM4YzM2Y2ViMDAiLCJqb2JUaXRsZSI6IlNyLiBTb2Z0d2FyZSBFbmdpbmVlciAtIEMrKyBHbyBQeXRob24gLSBSZW1vdGUiLCJqb2JUeXBlIjoicHJvZ3JhbW1hdGljIn0= +Senior ServiceNow Custom App Developer DHS (Remote),ICF,https://www.devjobsscanner.com/company/icf,"['Support', 'ITIL', 'JavaScript', 'Security', 'ServiceNow']",1 week ago,$85K-144K,https://devitjobs.us/jobs/ICF-Senior-ServiceNow-Custom-App-Developer-DHS-Remote?utm_source=devjobsscanner +Senior ServiceNow ITBM and SPM Developer,ICF,https://www.devjobsscanner.com/company/icf,"['CMS', 'HTML5', 'ITIL', 'JSON', 'JavaScript', 'REST', 'SOAP', 'Security', 'ServiceNow', 'jQuery', 'UX UI Design']",1 week ago,$83K-141K,https://devitjobs.us/jobs/ICF-Senior-ServiceNow-ITBM-and-SPM-Developer?utm_source=devjobsscanner +Full Stack Engineer FTE,Linkitall LLC,https://www.devjobsscanner.com/company/linkitall llc,"['AWS', 'C#', 'Cloud', 'CSS', 'JavaScript', 'MySQL', 'PostgreSQL', 'Python', 'React', 'Ruby', 'Security', 'Serverless', 'Web', 'ASP.NET']",1 week ago,$100K-120K,https://devitjobs.us/jobs/Linkitall-LLC-Full-Stack-Engineer-FTE?utm_source=devjobsscanner +NestJS Developer,"Business Performance Systems, LLC","https://www.devjobsscanner.com/company/business performance systems, llc","['Architect', 'Backend', 'CSS', 'GitHub', 'HTTP', 'JSON', 'NestJS', 'RPA', 'React', 'Selenium', 'TypeScript', 'Web', 'XML', 'DDD']",1 week ago,$104K-166K,https://devitjobs.us/jobs/Business-Performance-Systems-LLC-NestJS-Developer?utm_source=devjobsscanner +"Full stack Developer, Trilogy (Remote) - $100,000/year USD",Crossover,https://www.devjobsscanner.com/company/crossover,[],1 week ago,Not mentioned,https://ca.linkedin.com/jobs/view/full-stack-developer-trilogy-remote-%24100-000-year-usd-at-crossover-3918956049?position=4&pageNum=82&refId=o5Fir2Hl1NbqZJIDVZDTTg%3D%3D&trackingId=9C369v4uC7ZvlIG362ZzPg%3D%3D&trk=public_jobs_jserp-result_search-card +"Full stack Developer, Trilogy (Remote) - $100,000/year USD",Crossover,https://www.devjobsscanner.com/company/crossover,[],1 week ago,Not mentioned,https://ca.linkedin.com/jobs/view/full-stack-developer-trilogy-remote-%24100-000-year-usd-at-crossover-3918952607?position=10&pageNum=77&refId=rIp8uk7Zb7YJ%2FIoM6gjThA%3D%3D&trackingId=4%2BR9sWdqi6VNsYdqYbI%2BSg%3D%3D&trk=public_jobs_jserp-result_search-card +"Full stack Developer, Trilogy (Remote) - $100,000/year USD",Crossover,https://www.devjobsscanner.com/company/crossover,[],1 week ago,Not mentioned,https://ee.linkedin.com/jobs/view/full-stack-developer-trilogy-remote-%24100-000-year-usd-at-crossover-3918952164?position=7&pageNum=2&refId=%2BlzGQBFIZNr%2F77X2aCLJwg%3D%3D&trackingId=NwmYBAuw6pdZbJvt7BUl%2FA%3D%3D&trk=public_jobs_jserp-result_search-card +"Back End Developer, Trilogy (Remote) - $100,000/year USD",Crossover,https://www.devjobsscanner.com/company/crossover,[],1 week ago,Not mentioned,https://se.linkedin.com/jobs/view/back-end-developer-trilogy-remote-%24100-000-year-usd-at-crossover-3918952649?position=2&pageNum=95&refId=gkhd25N%2BusYKXmVi%2Ftc6hQ%3D%3D&trackingId=Df2REZr6HIyqEOi59JTEXQ%3D%3D&trk=public_jobs_jserp-result_search-card +"Back End Developer, Trilogy (Remote) - $100,000/year USD",Crossover,https://www.devjobsscanner.com/company/crossover,[],1 week ago,Not mentioned,https://jp.linkedin.com/jobs/view/back-end-developer-trilogy-remote-%24100-000-year-usd-at-crossover-3918955247?position=2&pageNum=92&refId=M%2F%2B%2FfR2XZRE3Q7c%2BcUH98Q%3D%3D&trackingId=fImG1FN3mqOKjFysIccDkw%3D%3D&trk=public_jobs_jserp-result_search-card +"Full stack Developer, Trilogy (Remote) - $100,000/year USD",Crossover,https://www.devjobsscanner.com/company/crossover,[],1 week ago,Not mentioned,https://jp.linkedin.com/jobs/view/full-stack-developer-trilogy-remote-%24100-000-year-usd-at-crossover-3918958006?position=4&pageNum=62&refId=zFLlHYOklNghNqc5H5wHeg%3D%3D&trackingId=WD%2B0Wti%2FEdhUVqRVIFR%2FCQ%3D%3D&trk=public_jobs_jserp-result_search-card +"Full stack Developer, Trilogy (Remote) - $100,000/year USD",Crossover,https://www.devjobsscanner.com/company/crossover,[],1 week ago,Not mentioned,https://jp.linkedin.com/jobs/view/full-stack-developer-trilogy-remote-%24100-000-year-usd-at-crossover-3918956027?position=6&pageNum=45&refId=c3IIxVPPuCAd6X%2B9eAfStA%3D%3D&trackingId=UcpNg1sflvPcannqUbWp9Q%3D%3D&trk=public_jobs_jserp-result_search-card +"Full stack Developer, Trilogy (Remote) - $100,000/year USD",Crossover,https://www.devjobsscanner.com/company/crossover,[],1 week ago,Not mentioned,https://mx.linkedin.com/jobs/view/full-stack-developer-trilogy-remote-%24100-000-year-usd-at-crossover-3918951923?position=2&pageNum=60&refId=11dLN08Bn3KEU19lv2RyJw%3D%3D&trackingId=bNTnSuMHG9M9TSPyAEdjcQ%3D%3D&trk=public_jobs_jserp-result_search-card +"Development Team Lead, gt.school (Remote) - $100,000/year USD",Crossover,https://www.devjobsscanner.com/company/crossover,['lead'],1 week ago,Not mentioned,https://ar.linkedin.com/jobs/view/development-team-lead-gt-school-remote-%24100-000-year-usd-at-crossover-3918949522?position=7&pageNum=40&refId=6UvPAwIoDVN26%2BwNoBzz7Q%3D%3D&trackingId=W2om2ebZp74ceBYLiXAL1A%3D%3D&trk=public_jobs_jserp-result_search-card +Software Development Engineer in Test (Remote Canada),Milk Moovement,https://www.devjobsscanner.com/company/milk moovement,[],1 week ago,Not mentioned,https://www.glassdoor.com/partner/jobListing.htm?pos=338&ao=1136043&s=58&guid=0000018f70da9400a9dd451b642c35d5&src=GD_JOB_VIEW&t=SR&vt=w&cs=1_ebf9e050&cb=1715585324501&jobListingId=1009124516931&jrtk=5-yul1-0-1htodl51oj33d805-acafb3b76c0b8a5c diff --git a/WEB SCRAPING/devJobsScanner_Scraper/outputFiles/Python Developer_jobs_remote_true_sorted_by_newest.txt b/WEB SCRAPING/devJobsScanner_Scraper/outputFiles/Python Developer_jobs_remote_true_sorted_by_newest.txt new file mode 100644 index 00000000..e29e517a --- /dev/null +++ b/WEB SCRAPING/devJobsScanner_Scraper/outputFiles/Python Developer_jobs_remote_true_sorted_by_newest.txt @@ -0,0 +1,320 @@ +Title: Lead Software Engineer, Capital One Shopping (Remote) +Company: Capital One +Company URL: https://www.devjobsscanner.com/company/capital one +Tags: lead, startup, build, javascript, python, typescript +Date Posted: 1 week ago +Salary: Not mentioned +Job URL: https://www.dice.com/apply-redirect?eyJjb25maWd1cmVkVXJsIjoiaHR0cHM6Ly9kc3AucHJuZy5jby91akVEUUxiIiwiam9iSWQiOiI1ZjEzM2ExZS05YzYzLTQzOTgtYmZiZS01ZDZhNjQ1MGZjMTIiLCJqb2JUaXRsZSI6IkxlYWQgU29mdHdhcmUgRW5naW5lZXIsIENhcGl0YWwgT25lIFNob3BwaW5nIChSZW1vdGUpIiwiam9iVHlwZSI6InByb2dyYW1tYXRpYyJ9 +---------------------------------------- +Title: Sr. Software Engineer - C++ Go Python - Remote +Company: Comcast Corporation +Company URL: https://www.devjobsscanner.com/company/comcast corporation +Tags: video, data, design, build, c++, go, python +Date Posted: 1 week ago +Salary: Not mentioned +Job URL: https://www.dice.com/apply-redirect?eyJjb25maWd1cmVkVXJsIjoiaHR0cHM6Ly9kc3AucHJuZy5jby9jcnFBNFViIiwiam9iSWQiOiJhZmVjNTk5Yy0yZmE2LTQxMmYtYWExOC1kMTE2ZGExNTMxYTQiLCJqb2JUaXRsZSI6IlNyLiBTb2Z0d2FyZSBFbmdpbmVlciAtIEMrKyBHbyBQeXRob24gLSBSZW1vdGUiLCJqb2JUeXBlIjoicHJvZ3JhbW1hdGljIn0= +---------------------------------------- +Title: Sr. Software Engineer - C++ Go Python - Remote +Company: Comcast Corporation +Company URL: https://www.devjobsscanner.com/company/comcast corporation +Tags: video, data, design, build, c++, go, python +Date Posted: 1 week ago +Salary: Not mentioned +Job URL: https://www.dice.com/apply-redirect?eyJjb25maWd1cmVkVXJsIjoiaHR0cHM6Ly9kc3AucHJuZy5jby9aWktRYmtiIiwiam9iSWQiOiI4YjVjMWZmYi0xMzgyLTQ0MDYtYmM3Yy00M2YwMjM1MmFhNmYiLCJqb2JUaXRsZSI6IlNyLiBTb2Z0d2FyZSBFbmdpbmVlciAtIEMrKyBHbyBQeXRob24gLSBSZW1vdGUiLCJqb2JUeXBlIjoicHJvZ3JhbW1hdGljIn0= +---------------------------------------- +Title: Sr. Software Engineer - C++ Go Python - Remote +Company: Comcast Corporation +Company URL: https://www.devjobsscanner.com/company/comcast corporation +Tags: video, data, design, build, c++, go, python +Date Posted: 1 week ago +Salary: Not mentioned +Job URL: https://www.dice.com/apply-redirect?eyJjb25maWd1cmVkVXJsIjoiaHR0cHM6Ly9kc3AucHJuZy5jby9GUEhQV09iIiwiam9iSWQiOiJlOWViMzY2Ni04MDdhLTRiNGYtODc3NS02NWFiOWEwODBlMzYiLCJqb2JUaXRsZSI6IlNyLiBTb2Z0d2FyZSBFbmdpbmVlciAtIEMrKyBHbyBQeXRob24gLSBSZW1vdGUiLCJqb2JUeXBlIjoicHJvZ3JhbW1hdGljIn0= +---------------------------------------- +Title: Sr. Software Engineer - C++ Go Python - Remote +Company: Comcast Corporation +Company URL: https://www.devjobsscanner.com/company/comcast corporation +Tags: video, data, design, build, c++, go, python +Date Posted: 1 week ago +Salary: Not mentioned +Job URL: https://www.dice.com/apply-redirect?eyJjb25maWd1cmVkVXJsIjoiaHR0cHM6Ly9kc3AucHJuZy5jby9GeFd4YUZiIiwiam9iSWQiOiJkZjBlNzE5Yy1iMTE5LTQ1NjctYjE0Ni0wOTY2NDI2MzMyZDkiLCJqb2JUaXRsZSI6IlNyLiBTb2Z0d2FyZSBFbmdpbmVlciAtIEMrKyBHbyBQeXRob24gLSBSZW1vdGUiLCJqb2JUeXBlIjoicHJvZ3JhbW1hdGljIn0= +---------------------------------------- +Title: Sr. Software Engineer - C++ Go Python - Remote +Company: Comcast Corporation +Company URL: https://www.devjobsscanner.com/company/comcast corporation +Tags: video, data, design, build, c++, go, python +Date Posted: 1 week ago +Salary: Not mentioned +Job URL: https://www.dice.com/apply-redirect?eyJjb25maWd1cmVkVXJsIjoiaHR0cHM6Ly9kc3AucHJuZy5jby9VdktKb09iIiwiam9iSWQiOiJmMzhlNDg0ZC00ZTAwLTQ2YmEtYmRjYS0xMjM4YzM2Y2ViMDAiLCJqb2JUaXRsZSI6IlNyLiBTb2Z0d2FyZSBFbmdpbmVlciAtIEMrKyBHbyBQeXRob24gLSBSZW1vdGUiLCJqb2JUeXBlIjoicHJvZ3JhbW1hdGljIn0= +---------------------------------------- +Title: Senior ServiceNow Custom App Developer DHS (Remote) +Company: ICF +Company URL: https://www.devjobsscanner.com/company/icf +Tags: Support, ITIL, JavaScript, Security, ServiceNow +Date Posted: 1 week ago +Salary: $85K-144K +Job URL: https://devitjobs.us/jobs/ICF-Senior-ServiceNow-Custom-App-Developer-DHS-Remote?utm_source=devjobsscanner +---------------------------------------- +Title: Senior ServiceNow ITBM and SPM Developer +Company: ICF +Company URL: https://www.devjobsscanner.com/company/icf +Tags: CMS, HTML5, ITIL, JSON, JavaScript, REST, SOAP, Security, ServiceNow, jQuery, UX UI Design +Date Posted: 1 week ago +Salary: $83K-141K +Job URL: https://devitjobs.us/jobs/ICF-Senior-ServiceNow-ITBM-and-SPM-Developer?utm_source=devjobsscanner +---------------------------------------- +Title: Full Stack Engineer FTE +Company: Linkitall LLC +Company URL: https://www.devjobsscanner.com/company/linkitall llc +Tags: AWS, C#, Cloud, CSS, JavaScript, MySQL, PostgreSQL, Python, React, Ruby, Security, Serverless, Web, ASP.NET +Date Posted: 1 week ago +Salary: $100K-120K +Job URL: https://devitjobs.us/jobs/Linkitall-LLC-Full-Stack-Engineer-FTE?utm_source=devjobsscanner +---------------------------------------- +Title: NestJS Developer +Company: Business Performance Systems, LLC +Company URL: https://www.devjobsscanner.com/company/business performance systems, llc +Tags: Architect, Backend, CSS, GitHub, HTTP, JSON, NestJS, RPA, React, Selenium, TypeScript, Web, XML, DDD +Date Posted: 1 week ago +Salary: $104K-166K +Job URL: https://devitjobs.us/jobs/Business-Performance-Systems-LLC-NestJS-Developer?utm_source=devjobsscanner +---------------------------------------- +Title: Full stack Developer, Trilogy (Remote) - $100,000/year USD +Company: Crossover +Company URL: https://www.devjobsscanner.com/company/crossover +Tags: +Date Posted: 1 week ago +Salary: Not mentioned +Job URL: https://ca.linkedin.com/jobs/view/full-stack-developer-trilogy-remote-%24100-000-year-usd-at-crossover-3918956049?position=4&pageNum=82&refId=o5Fir2Hl1NbqZJIDVZDTTg%3D%3D&trackingId=9C369v4uC7ZvlIG362ZzPg%3D%3D&trk=public_jobs_jserp-result_search-card +---------------------------------------- +Title: Full stack Developer, Trilogy (Remote) - $100,000/year USD +Company: Crossover +Company URL: https://www.devjobsscanner.com/company/crossover +Tags: +Date Posted: 1 week ago +Salary: Not mentioned +Job URL: https://ca.linkedin.com/jobs/view/full-stack-developer-trilogy-remote-%24100-000-year-usd-at-crossover-3918952607?position=10&pageNum=77&refId=rIp8uk7Zb7YJ%2FIoM6gjThA%3D%3D&trackingId=4%2BR9sWdqi6VNsYdqYbI%2BSg%3D%3D&trk=public_jobs_jserp-result_search-card +---------------------------------------- +Title: Full stack Developer, Trilogy (Remote) - $100,000/year USD +Company: Crossover +Company URL: https://www.devjobsscanner.com/company/crossover +Tags: +Date Posted: 1 week ago +Salary: Not mentioned +Job URL: https://ee.linkedin.com/jobs/view/full-stack-developer-trilogy-remote-%24100-000-year-usd-at-crossover-3918952164?position=7&pageNum=2&refId=%2BlzGQBFIZNr%2F77X2aCLJwg%3D%3D&trackingId=NwmYBAuw6pdZbJvt7BUl%2FA%3D%3D&trk=public_jobs_jserp-result_search-card +---------------------------------------- +Title: Back End Developer, Trilogy (Remote) - $100,000/year USD +Company: Crossover +Company URL: https://www.devjobsscanner.com/company/crossover +Tags: +Date Posted: 1 week ago +Salary: Not mentioned +Job URL: https://se.linkedin.com/jobs/view/back-end-developer-trilogy-remote-%24100-000-year-usd-at-crossover-3918952649?position=2&pageNum=95&refId=gkhd25N%2BusYKXmVi%2Ftc6hQ%3D%3D&trackingId=Df2REZr6HIyqEOi59JTEXQ%3D%3D&trk=public_jobs_jserp-result_search-card +---------------------------------------- +Title: Back End Developer, Trilogy (Remote) - $100,000/year USD +Company: Crossover +Company URL: https://www.devjobsscanner.com/company/crossover +Tags: +Date Posted: 1 week ago +Salary: Not mentioned +Job URL: https://jp.linkedin.com/jobs/view/back-end-developer-trilogy-remote-%24100-000-year-usd-at-crossover-3918955247?position=2&pageNum=92&refId=M%2F%2B%2FfR2XZRE3Q7c%2BcUH98Q%3D%3D&trackingId=fImG1FN3mqOKjFysIccDkw%3D%3D&trk=public_jobs_jserp-result_search-card +---------------------------------------- +Title: Full stack Developer, Trilogy (Remote) - $100,000/year USD +Company: Crossover +Company URL: https://www.devjobsscanner.com/company/crossover +Tags: +Date Posted: 1 week ago +Salary: Not mentioned +Job URL: https://jp.linkedin.com/jobs/view/full-stack-developer-trilogy-remote-%24100-000-year-usd-at-crossover-3918958006?position=4&pageNum=62&refId=zFLlHYOklNghNqc5H5wHeg%3D%3D&trackingId=WD%2B0Wti%2FEdhUVqRVIFR%2FCQ%3D%3D&trk=public_jobs_jserp-result_search-card +---------------------------------------- +Title: Full stack Developer, Trilogy (Remote) - $100,000/year USD +Company: Crossover +Company URL: https://www.devjobsscanner.com/company/crossover +Tags: +Date Posted: 1 week ago +Salary: Not mentioned +Job URL: https://jp.linkedin.com/jobs/view/full-stack-developer-trilogy-remote-%24100-000-year-usd-at-crossover-3918956027?position=6&pageNum=45&refId=c3IIxVPPuCAd6X%2B9eAfStA%3D%3D&trackingId=UcpNg1sflvPcannqUbWp9Q%3D%3D&trk=public_jobs_jserp-result_search-card +---------------------------------------- +Title: Full stack Developer, Trilogy (Remote) - $100,000/year USD +Company: Crossover +Company URL: https://www.devjobsscanner.com/company/crossover +Tags: +Date Posted: 1 week ago +Salary: Not mentioned +Job URL: https://mx.linkedin.com/jobs/view/full-stack-developer-trilogy-remote-%24100-000-year-usd-at-crossover-3918951923?position=2&pageNum=60&refId=11dLN08Bn3KEU19lv2RyJw%3D%3D&trackingId=bNTnSuMHG9M9TSPyAEdjcQ%3D%3D&trk=public_jobs_jserp-result_search-card +---------------------------------------- +Title: Development Team Lead, gt.school (Remote) - $100,000/year USD +Company: Crossover +Company URL: https://www.devjobsscanner.com/company/crossover +Tags: lead +Date Posted: 1 week ago +Salary: Not mentioned +Job URL: https://ar.linkedin.com/jobs/view/development-team-lead-gt-school-remote-%24100-000-year-usd-at-crossover-3918949522?position=7&pageNum=40&refId=6UvPAwIoDVN26%2BwNoBzz7Q%3D%3D&trackingId=W2om2ebZp74ceBYLiXAL1A%3D%3D&trk=public_jobs_jserp-result_search-card +---------------------------------------- +Title: Software Development Engineer in Test (Remote Canada) +Company: Milk Moovement +Company URL: https://www.devjobsscanner.com/company/milk moovement +Tags: +Date Posted: 1 week ago +Salary: Not mentioned +Job URL: https://www.glassdoor.com/partner/jobListing.htm?pos=338&ao=1136043&s=58&guid=0000018f70da9400a9dd451b642c35d5&src=GD_JOB_VIEW&t=SR&vt=w&cs=1_ebf9e050&cb=1715585324501&jobListingId=1009124516931&jrtk=5-yul1-0-1htodl51oj33d805-acafb3b76c0b8a5c +---------------------------------------- +Title: Lead Software Engineer, Capital One Shopping (Remote) +Company: Capital One +Company URL: https://www.devjobsscanner.com/company/capital one +Tags: lead, startup, build, javascript, python, typescript +Date Posted: 1 week ago +Salary: Not mentioned +Job URL: https://www.dice.com/apply-redirect?eyJjb25maWd1cmVkVXJsIjoiaHR0cHM6Ly9kc3AucHJuZy5jby91akVEUUxiIiwiam9iSWQiOiI1ZjEzM2ExZS05YzYzLTQzOTgtYmZiZS01ZDZhNjQ1MGZjMTIiLCJqb2JUaXRsZSI6IkxlYWQgU29mdHdhcmUgRW5naW5lZXIsIENhcGl0YWwgT25lIFNob3BwaW5nIChSZW1vdGUpIiwiam9iVHlwZSI6InByb2dyYW1tYXRpYyJ9 +---------------------------------------- +Title: Sr. Software Engineer - C++ Go Python - Remote +Company: Comcast Corporation +Company URL: https://www.devjobsscanner.com/company/comcast corporation +Tags: video, data, design, build, c++, go, python +Date Posted: 1 week ago +Salary: Not mentioned +Job URL: https://www.dice.com/apply-redirect?eyJjb25maWd1cmVkVXJsIjoiaHR0cHM6Ly9kc3AucHJuZy5jby9jcnFBNFViIiwiam9iSWQiOiJhZmVjNTk5Yy0yZmE2LTQxMmYtYWExOC1kMTE2ZGExNTMxYTQiLCJqb2JUaXRsZSI6IlNyLiBTb2Z0d2FyZSBFbmdpbmVlciAtIEMrKyBHbyBQeXRob24gLSBSZW1vdGUiLCJqb2JUeXBlIjoicHJvZ3JhbW1hdGljIn0= +---------------------------------------- +Title: Sr. Software Engineer - C++ Go Python - Remote +Company: Comcast Corporation +Company URL: https://www.devjobsscanner.com/company/comcast corporation +Tags: video, data, design, build, c++, go, python +Date Posted: 1 week ago +Salary: Not mentioned +Job URL: https://www.dice.com/apply-redirect?eyJjb25maWd1cmVkVXJsIjoiaHR0cHM6Ly9kc3AucHJuZy5jby9aWktRYmtiIiwiam9iSWQiOiI4YjVjMWZmYi0xMzgyLTQ0MDYtYmM3Yy00M2YwMjM1MmFhNmYiLCJqb2JUaXRsZSI6IlNyLiBTb2Z0d2FyZSBFbmdpbmVlciAtIEMrKyBHbyBQeXRob24gLSBSZW1vdGUiLCJqb2JUeXBlIjoicHJvZ3JhbW1hdGljIn0= +---------------------------------------- +Title: Sr. Software Engineer - C++ Go Python - Remote +Company: Comcast Corporation +Company URL: https://www.devjobsscanner.com/company/comcast corporation +Tags: video, data, design, build, c++, go, python +Date Posted: 1 week ago +Salary: Not mentioned +Job URL: https://www.dice.com/apply-redirect?eyJjb25maWd1cmVkVXJsIjoiaHR0cHM6Ly9kc3AucHJuZy5jby9GUEhQV09iIiwiam9iSWQiOiJlOWViMzY2Ni04MDdhLTRiNGYtODc3NS02NWFiOWEwODBlMzYiLCJqb2JUaXRsZSI6IlNyLiBTb2Z0d2FyZSBFbmdpbmVlciAtIEMrKyBHbyBQeXRob24gLSBSZW1vdGUiLCJqb2JUeXBlIjoicHJvZ3JhbW1hdGljIn0= +---------------------------------------- +Title: Sr. Software Engineer - C++ Go Python - Remote +Company: Comcast Corporation +Company URL: https://www.devjobsscanner.com/company/comcast corporation +Tags: video, data, design, build, c++, go, python +Date Posted: 1 week ago +Salary: Not mentioned +Job URL: https://www.dice.com/apply-redirect?eyJjb25maWd1cmVkVXJsIjoiaHR0cHM6Ly9kc3AucHJuZy5jby9GeFd4YUZiIiwiam9iSWQiOiJkZjBlNzE5Yy1iMTE5LTQ1NjctYjE0Ni0wOTY2NDI2MzMyZDkiLCJqb2JUaXRsZSI6IlNyLiBTb2Z0d2FyZSBFbmdpbmVlciAtIEMrKyBHbyBQeXRob24gLSBSZW1vdGUiLCJqb2JUeXBlIjoicHJvZ3JhbW1hdGljIn0= +---------------------------------------- +Title: Sr. Software Engineer - C++ Go Python - Remote +Company: Comcast Corporation +Company URL: https://www.devjobsscanner.com/company/comcast corporation +Tags: video, data, design, build, c++, go, python +Date Posted: 1 week ago +Salary: Not mentioned +Job URL: https://www.dice.com/apply-redirect?eyJjb25maWd1cmVkVXJsIjoiaHR0cHM6Ly9kc3AucHJuZy5jby9VdktKb09iIiwiam9iSWQiOiJmMzhlNDg0ZC00ZTAwLTQ2YmEtYmRjYS0xMjM4YzM2Y2ViMDAiLCJqb2JUaXRsZSI6IlNyLiBTb2Z0d2FyZSBFbmdpbmVlciAtIEMrKyBHbyBQeXRob24gLSBSZW1vdGUiLCJqb2JUeXBlIjoicHJvZ3JhbW1hdGljIn0= +---------------------------------------- +Title: Senior ServiceNow Custom App Developer DHS (Remote) +Company: ICF +Company URL: https://www.devjobsscanner.com/company/icf +Tags: Support, ITIL, JavaScript, Security, ServiceNow +Date Posted: 1 week ago +Salary: $85K-144K +Job URL: https://devitjobs.us/jobs/ICF-Senior-ServiceNow-Custom-App-Developer-DHS-Remote?utm_source=devjobsscanner +---------------------------------------- +Title: Senior ServiceNow ITBM and SPM Developer +Company: ICF +Company URL: https://www.devjobsscanner.com/company/icf +Tags: CMS, HTML5, ITIL, JSON, JavaScript, REST, SOAP, Security, ServiceNow, jQuery, UX UI Design +Date Posted: 1 week ago +Salary: $83K-141K +Job URL: https://devitjobs.us/jobs/ICF-Senior-ServiceNow-ITBM-and-SPM-Developer?utm_source=devjobsscanner +---------------------------------------- +Title: Full Stack Engineer FTE +Company: Linkitall LLC +Company URL: https://www.devjobsscanner.com/company/linkitall llc +Tags: AWS, C#, Cloud, CSS, JavaScript, MySQL, PostgreSQL, Python, React, Ruby, Security, Serverless, Web, ASP.NET +Date Posted: 1 week ago +Salary: $100K-120K +Job URL: https://devitjobs.us/jobs/Linkitall-LLC-Full-Stack-Engineer-FTE?utm_source=devjobsscanner +---------------------------------------- +Title: NestJS Developer +Company: Business Performance Systems, LLC +Company URL: https://www.devjobsscanner.com/company/business performance systems, llc +Tags: Architect, Backend, CSS, GitHub, HTTP, JSON, NestJS, RPA, React, Selenium, TypeScript, Web, XML, DDD +Date Posted: 1 week ago +Salary: $104K-166K +Job URL: https://devitjobs.us/jobs/Business-Performance-Systems-LLC-NestJS-Developer?utm_source=devjobsscanner +---------------------------------------- +Title: Full stack Developer, Trilogy (Remote) - $100,000/year USD +Company: Crossover +Company URL: https://www.devjobsscanner.com/company/crossover +Tags: +Date Posted: 1 week ago +Salary: Not mentioned +Job URL: https://ca.linkedin.com/jobs/view/full-stack-developer-trilogy-remote-%24100-000-year-usd-at-crossover-3918956049?position=4&pageNum=82&refId=o5Fir2Hl1NbqZJIDVZDTTg%3D%3D&trackingId=9C369v4uC7ZvlIG362ZzPg%3D%3D&trk=public_jobs_jserp-result_search-card +---------------------------------------- +Title: Full stack Developer, Trilogy (Remote) - $100,000/year USD +Company: Crossover +Company URL: https://www.devjobsscanner.com/company/crossover +Tags: +Date Posted: 1 week ago +Salary: Not mentioned +Job URL: https://ca.linkedin.com/jobs/view/full-stack-developer-trilogy-remote-%24100-000-year-usd-at-crossover-3918952607?position=10&pageNum=77&refId=rIp8uk7Zb7YJ%2FIoM6gjThA%3D%3D&trackingId=4%2BR9sWdqi6VNsYdqYbI%2BSg%3D%3D&trk=public_jobs_jserp-result_search-card +---------------------------------------- +Title: Full stack Developer, Trilogy (Remote) - $100,000/year USD +Company: Crossover +Company URL: https://www.devjobsscanner.com/company/crossover +Tags: +Date Posted: 1 week ago +Salary: Not mentioned +Job URL: https://ee.linkedin.com/jobs/view/full-stack-developer-trilogy-remote-%24100-000-year-usd-at-crossover-3918952164?position=7&pageNum=2&refId=%2BlzGQBFIZNr%2F77X2aCLJwg%3D%3D&trackingId=NwmYBAuw6pdZbJvt7BUl%2FA%3D%3D&trk=public_jobs_jserp-result_search-card +---------------------------------------- +Title: Back End Developer, Trilogy (Remote) - $100,000/year USD +Company: Crossover +Company URL: https://www.devjobsscanner.com/company/crossover +Tags: +Date Posted: 1 week ago +Salary: Not mentioned +Job URL: https://se.linkedin.com/jobs/view/back-end-developer-trilogy-remote-%24100-000-year-usd-at-crossover-3918952649?position=2&pageNum=95&refId=gkhd25N%2BusYKXmVi%2Ftc6hQ%3D%3D&trackingId=Df2REZr6HIyqEOi59JTEXQ%3D%3D&trk=public_jobs_jserp-result_search-card +---------------------------------------- +Title: Back End Developer, Trilogy (Remote) - $100,000/year USD +Company: Crossover +Company URL: https://www.devjobsscanner.com/company/crossover +Tags: +Date Posted: 1 week ago +Salary: Not mentioned +Job URL: https://jp.linkedin.com/jobs/view/back-end-developer-trilogy-remote-%24100-000-year-usd-at-crossover-3918955247?position=2&pageNum=92&refId=M%2F%2B%2FfR2XZRE3Q7c%2BcUH98Q%3D%3D&trackingId=fImG1FN3mqOKjFysIccDkw%3D%3D&trk=public_jobs_jserp-result_search-card +---------------------------------------- +Title: Full stack Developer, Trilogy (Remote) - $100,000/year USD +Company: Crossover +Company URL: https://www.devjobsscanner.com/company/crossover +Tags: +Date Posted: 1 week ago +Salary: Not mentioned +Job URL: https://jp.linkedin.com/jobs/view/full-stack-developer-trilogy-remote-%24100-000-year-usd-at-crossover-3918958006?position=4&pageNum=62&refId=zFLlHYOklNghNqc5H5wHeg%3D%3D&trackingId=WD%2B0Wti%2FEdhUVqRVIFR%2FCQ%3D%3D&trk=public_jobs_jserp-result_search-card +---------------------------------------- +Title: Full stack Developer, Trilogy (Remote) - $100,000/year USD +Company: Crossover +Company URL: https://www.devjobsscanner.com/company/crossover +Tags: +Date Posted: 1 week ago +Salary: Not mentioned +Job URL: https://jp.linkedin.com/jobs/view/full-stack-developer-trilogy-remote-%24100-000-year-usd-at-crossover-3918956027?position=6&pageNum=45&refId=c3IIxVPPuCAd6X%2B9eAfStA%3D%3D&trackingId=UcpNg1sflvPcannqUbWp9Q%3D%3D&trk=public_jobs_jserp-result_search-card +---------------------------------------- +Title: Full stack Developer, Trilogy (Remote) - $100,000/year USD +Company: Crossover +Company URL: https://www.devjobsscanner.com/company/crossover +Tags: +Date Posted: 1 week ago +Salary: Not mentioned +Job URL: https://mx.linkedin.com/jobs/view/full-stack-developer-trilogy-remote-%24100-000-year-usd-at-crossover-3918951923?position=2&pageNum=60&refId=11dLN08Bn3KEU19lv2RyJw%3D%3D&trackingId=bNTnSuMHG9M9TSPyAEdjcQ%3D%3D&trk=public_jobs_jserp-result_search-card +---------------------------------------- +Title: Development Team Lead, gt.school (Remote) - $100,000/year USD +Company: Crossover +Company URL: https://www.devjobsscanner.com/company/crossover +Tags: lead +Date Posted: 1 week ago +Salary: Not mentioned +Job URL: https://ar.linkedin.com/jobs/view/development-team-lead-gt-school-remote-%24100-000-year-usd-at-crossover-3918949522?position=7&pageNum=40&refId=6UvPAwIoDVN26%2BwNoBzz7Q%3D%3D&trackingId=W2om2ebZp74ceBYLiXAL1A%3D%3D&trk=public_jobs_jserp-result_search-card +---------------------------------------- +Title: Software Development Engineer in Test (Remote Canada) +Company: Milk Moovement +Company URL: https://www.devjobsscanner.com/company/milk moovement +Tags: +Date Posted: 1 week ago +Salary: Not mentioned +Job URL: https://www.glassdoor.com/partner/jobListing.htm?pos=338&ao=1136043&s=58&guid=0000018f70da9400a9dd451b642c35d5&src=GD_JOB_VIEW&t=SR&vt=w&cs=1_ebf9e050&cb=1715585324501&jobListingId=1009124516931&jrtk=5-yul1-0-1htodl51oj33d805-acafb3b76c0b8a5c +---------------------------------------- diff --git a/WEB SCRAPING/devJobsScanner_Scraper/requirements.txt b/WEB SCRAPING/devJobsScanner_Scraper/requirements.txt new file mode 100644 index 00000000..734fc03d --- /dev/null +++ b/WEB SCRAPING/devJobsScanner_Scraper/requirements.txt @@ -0,0 +1,3 @@ +beautifulsoup4 +requests +seleniumbase \ No newline at end of file