Skip to content

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

Description

@hwk06023
# 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.

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions