Google Script | Quick Work
Budget: $30 – $50 USD
##Overview
We want a script that uses Google to search for things. This script uses a list of keywords and a list of keys to make these searches. If it finds our keywords in the search results, it saves these results into a file.
##The Lists
The script uses two lists from two text files:
A keyword list from keyword.txt. We usually have 10-12 keywords.
A key list from key.txt. We usually have 10 keys.
How it Works
The script combines each keyword with each key to make search terms.
For example let's take 1 keyword and 2 keys:
Keyword is "copy mba cardinal mason"
keys are "download" and "torrent"
The script will search for:
copy mba cardinal mason download
copy mba cardinal mason torrent
Thus, it will look like this:
Keyword 1 + Key 1
Keyword 1 + Key 2
...and so on.
The script follows this pattern for all the keywords and all the keys.
##The Searchers
After making a search, the script looks at the search results. If a result contains the keyword (e.g "copy mba cardinal mason") in the URL, headline, or description, the script stores this result.
##The Results
The script saves the results into a CSV file. The file has four columns:
The URL of the result.
The headline of the URL.
The description of the URL.
The keyword(copy mba cardinal mason) found in the result.
##Summary
Read Lists: First, the script should read the two lists from keyword.txt and key.txt.
Create Search Terms: The script will then create a combination of each keyword and key. This means that if you have 10 keywords and 10 keys, you will get 100 (10x10) search terms.
Perform Searches: The script will then use these search terms to conduct a Google search.
Analyze Search Results: After getting the search results, the script should parse the data to check if the URL, headline, or description of each result contains the keyword. If the keyword is found, the script should store this result.
Save Results: The script should save the URL, headline, and description of the matching search results, as well as the keyword that was found, into a CSV file.
------END------
Start your cover letter with 'GOOGLE" if you can create a script that is 100% accurate.
We want a script that uses Google to search for things. This script uses a list of keywords and a list of keys to make these searches. If it finds our keywords in the search results, it saves these results into a file.
##The Lists
The script uses two lists from two text files:
A keyword list from keyword.txt. We usually have 10-12 keywords.
A key list from key.txt. We usually have 10 keys.
How it Works
The script combines each keyword with each key to make search terms.
For example let's take 1 keyword and 2 keys:
Keyword is "copy mba cardinal mason"
keys are "download" and "torrent"
The script will search for:
copy mba cardinal mason download
copy mba cardinal mason torrent
Thus, it will look like this:
Keyword 1 + Key 1
Keyword 1 + Key 2
...and so on.
The script follows this pattern for all the keywords and all the keys.
##The Searchers
After making a search, the script looks at the search results. If a result contains the keyword (e.g "copy mba cardinal mason") in the URL, headline, or description, the script stores this result.
##The Results
The script saves the results into a CSV file. The file has four columns:
The URL of the result.
The headline of the URL.
The description of the URL.
The keyword(copy mba cardinal mason) found in the result.
##Summary
Read Lists: First, the script should read the two lists from keyword.txt and key.txt.
Create Search Terms: The script will then create a combination of each keyword and key. This means that if you have 10 keywords and 10 keys, you will get 100 (10x10) search terms.
Perform Searches: The script will then use these search terms to conduct a Google search.
Analyze Search Results: After getting the search results, the script should parse the data to check if the URL, headline, or description of each result contains the keyword. If the keyword is found, the script should store this result.
Save Results: The script should save the URL, headline, and description of the matching search results, as well as the keyword that was found, into a CSV file.
------END------
Start your cover letter with 'GOOGLE" if you can create a script that is 100% accurate.