Keyword Script - RaspPywriter/web_scraper GitHub Wiki
Purpose
The purpose of this script is to see how many keywords appear in each description. This returns a printed count.
Here is a sample
number = db.jobs.find( {jobDesc : /.SQL./i}).count() print('SQL Count ' + number)
number = db.jobs.find( {jobDesc : /.python./i}).count() print('Python Count ' + number) This is what the output looks like:
SQL Count 4170 Python Count 2949