sahilsk11 / glide

Debug your resume in one click
https://glidecv.com
GNU General Public License v3.0
92 stars 14 forks source link

Keywords in portal_parser.py #3

Closed WaqarSM closed 3 years ago

WaqarSM commented 3 years ago

Should the Keywords list in portal_parser.py also account for capitalizations?

eg. C++ vs c++, or python vs Python.

I reckon this should handle it:

portal_parser.py L26: 

keywordsCap = [keyword.capitalize() for keyword in keywords]
Keywords.append(keywordsCap)

Cheers 🚀

Saaniya00 commented 3 years ago

Hi, thanks for bringing that up! We actually did a case insensitive search for all keywords found in portal_parser and the web portal that we were looking at, this was done locally and then added to our list.