문제

I am trying to test Twitter API and find trends in a country. How can I find the WOEID (WHERE ON EARTH IDENTIFIER) for a specific country? I tried looking on Google but could not find a list.

If there is any program in Python that provides WOEID that is fine as well.

도움이 되었습니까?

해결책

The yweather package provides a way of doing this:

>>> import yweather
>>> client = yweather.Client()
>>> client.fetch_woeid('Australia')
'23424748'
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top