Google Jobs Scraper
3 days trial then $20.00/month - No credit card required now
Google Jobs Scraper
3 days trial then $20.00/month - No credit card required now
The most comprehensive Google Jobs Scraper ever! Extremely configurable, highly customizable, and blazing fast. Retrieve salary, social links, apply links, and all detailed sections. Both for data retrieval and API Integration. Easy use without any limits!
You can access the Google Jobs Scraper programmatically from your own Python applications by using the Apify API. You can also choose the language preference from below. To use the Apify API, you’ll need an Apify account and your API token, found in Integrations settings in Apify Console.
1from apify_client import ApifyClient
2
3# Initialize the ApifyClient with your Apify API token
4# Replace '<YOUR_API_TOKEN>' with your token.
5client = ApifyClient("<YOUR_API_TOKEN>")
6
7# Prepare the Actor input
8run_input = {
9 "startUrls": ["https://www.google.com/search?sca_esv=593729410&q=Software+Engineer+jobs&uds=AMIYvT8-5jbJIP1-CbwNj1OVjAm_ezkS5e9c6xL1Cc4ifVo4bFIMuuQemtnb3giV7cKava9luZMDXVTS5p4powtoyb0ACtDGDu9unNkXZkFxC0i7ZSwrZd_aHgim6pFgOWgs0dte0pnb&sa=X&ictx=0&biw=1621&bih=648&dpr=2&ibp=htl;jobs&ved=2ahUKEwjt-4-Y6KyDAxUog4kEHSJ8DjQQudcGKAF6BAgRECo"],
10 "maxItems": 20,
11 "endPage": 1,
12 "queries": ["teacher"],
13 "locationUule": "w+CAIQICIIaXN0YW5idWw=",
14 "radius": 300,
15 "extendOutputFunction": "($) => { return {} }",
16 "customMapFunction": "(object) => { return {...object} }",
17 "proxy": { "useApifyProxy": True },
18}
19
20# Run the Actor and wait for it to finish
21run = client.actor("epctex/google-jobs-scraper").call(run_input=run_input)
22
23# Fetch and print Actor results from the run's dataset (if there are any)
24print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
25for item in client.dataset(run["defaultDatasetId"]).iterate_items():
26 print(item)
27
28# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start
Google Jobs Scraper API in Python
The Apify API client for Python is the official library that allows you to use Google Jobs Scraper API in Python, providing convenience functions and automatic retries on errors.
Install the apify-client
pip install apify-client
Other API clients include:
Actor Metrics
75 monthly users
-
4 stars
>99% runs succeeded
9.4 hours response time
Created in Dec 2023
Modified 12 hours ago