Naming
NewsConcerning is styled in the way PEP 8 would tell us to style a class name. It should be in snake case: news_concerning.
String replacements
You can either convert the input immediately to lowercase, or let the NewsConcerning function do it.
Exception handling
Your try is miles from your actual exception handlers. The code in your try block should be as absolutely minimal as possible.
Boolean tests and false-y values
In a couple of places you do boolean tests on the length of lists or on whether strings are empty. You should be aware that empty strings are false in Python, as are empty lists.