if search_string:
keyword = search_string.replace("'", "")
So we have a search string, that we pass into query to db. For now it isn't protected at all and it's scary.
How can i validate the string doesn't containt any of injections?
If you know libraries or built in stuff to do this - please send me the names of it.