This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
from WxMini.Utils.NewsUtil import *
# 示例调用
if __name__ == '__main__':
user_input = "最近CBA的比赛结果怎么样?"
result=get_news(user_input)
if result is not None:
print(result)
else:
print("No results found.")