Last active
September 7, 2017 02:39
-
-
Save junsuk5/6b293ac781b038366419ac6e4027abb7 to your computer and use it in GitHub Desktop.
네트워크 통신 연습용 날씨 데이터
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [ | |
| { | |
| "country": "한국", | |
| "weather": "비", | |
| "temperature": "20" | |
| }, | |
| { | |
| "country": "일본", | |
| "weather": "맑음", | |
| "temperature": "19" | |
| }, | |
| { | |
| "country": "중국", | |
| "weather": "눈", | |
| "temperature": "14" | |
| }, | |
| { | |
| "country": "스페인", | |
| "weather": "우박", | |
| "temperature": "13" | |
| }, | |
| { | |
| "country": "미국", | |
| "weather": "흐림", | |
| "temperature": "2" | |
| }, | |
| { | |
| "country": "영국", | |
| "weather": "비", | |
| "temperature": "10" | |
| }, | |
| { | |
| "country": "프랑스", | |
| "weather": "흐림", | |
| "temperature": "15" | |
| }, | |
| { | |
| "country": "브라질", | |
| "weather": "흐림", | |
| "temperature": "35" | |
| }, | |
| { | |
| "country": "스위스", | |
| "weather": "맑음", | |
| "temperature": "13" | |
| }, | |
| { | |
| "country": "덴마크", | |
| "weather": "비", | |
| "temperature": "2" | |
| }, | |
| { | |
| "country": "스웨덴", | |
| "weather": "눈", | |
| "temperature": "0" | |
| }, | |
| { | |
| "country": "네덜란드", | |
| "weather": "비", | |
| "temperature": "12" | |
| }, | |
| { | |
| "country": "크로아티아", | |
| "weather": "맑음", | |
| "temperature": "30" | |
| }, | |
| { | |
| "country": "필리핀", | |
| "weather": "맑음", | |
| "temperature": "28" | |
| }, | |
| { | |
| "country": "독일", | |
| "weather": "눈", | |
| "temperature": "3" | |
| }, | |
| { | |
| "country": "헝가리", | |
| "weather": "비", | |
| "temperature": "13" | |
| }, | |
| { | |
| "country": "벨기에", | |
| "weather": "흐림", | |
| "temperature": "8" | |
| }, | |
| { | |
| "country": "핀란드", | |
| "weather": "우박", | |
| "temperature": "15" | |
| }, | |
| { | |
| "country": "이탈리아", | |
| "weather": "맑음", | |
| "temperature": "23" | |
| } | |
| ] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment