Closed WaqarSM closed 3 years ago
Should the Keywords list in portal_parser.py also account for capitalizations?
Keywords
portal_parser.py
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 🚀
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.
Should the
Keywords
list inportal_parser.py
also account for capitalizations?eg. C++ vs c++, or python vs Python.
I reckon this should handle it:
Cheers 🚀