mattlisiv / newsapi-python

A Python Client for News API
MIT License
375 stars 130 forks source link

'us' is working but 'kr', 'jp', 'cn' .. are not working #93

Open hwk06023 opened 1 month ago

hwk06023 commented 1 month ago
# US
head_lines = newsapi.get_top_headlines(category='entertainment', country='us')

for x in head_lines['articles']:
    print('title:', x['title'])
    print('description:', x['description'])    
    print('url:', x['url'])
    # print('urlToImage:', x['urlToImage'])
    print('content:', x['content'])
    print()

->

news_api




head_lines = newsapi.get_top_headlines(category='entertainment', country='kr') # or 'jp' or 'cn' ....

print(top_headlines)

for x in head_lines['articles']:
    print('title:', x['title'])
    print('description:', x['description'])    
    print('url:', x['url'])
    # print('urlToImage:', x['urlToImage'])
    print('content:', x['content'])
    print()

->

news_api_kr




Hi. In my case, 'us' is working but 'kr', 'jp', 'cn' .. are not working. Is it not supported originally, or does there seem to be a problem?

Thank you.

lukasfasnacht commented 3 weeks ago

I've encountered the same problem. The modul supported all the country codes when I first implemented it. Seems like a new issue to me.