-
Notifications
You must be signed in to change notification settings - Fork 0
/
6-데이터분석연습3.(from.Jeon)ipynb
13167 lines (13167 loc) · 740 KB
/
6-데이터분석연습3.(from.Jeon)ipynb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"cells": [
{
"cell_type": "code",
"execution_count": 1,
"metadata": {},
"outputs": [],
"source": [
"import numpy as np\n",
"import pandas as pd\n",
"import matplotlib as mpl\n",
"import matplotlib.pyplot as plt \n",
"import seaborn as sns\n",
"\n",
"#폰트 지정\n",
"import matplotlib.font_manager as fm\n",
"font_name=fm.FontProperties(fname=\"C:/Windows/Fonts/malgun.ttf\").get_name()\n",
"plt.rc('font', family=font_name)\n",
"\n",
"mpl.rcParams[\"axes.unicode_minus\"] = False"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"### XML (Extension Markup Language) <시작>데이터</끝> 문서보관용 언어\n",
"\n",
" 1.특징\n",
" 1) 메타 언어 : GML -> SGML -> XML\n",
" 2) 데이터를 위한 언어\n",
" 3) 데이터베이스 용도\n",
" 4) 데이터 표준화 : 이 기종 시스템간의 정보교환, 웹서비스, 유비쿼터스, 사물인터넷 기타등등...\n",
" \n",
" 2. 문법 (xml의 물리적인 구성요소)\n",
" 1) XML(.xml) : 실제 데이터를 보관(설명)하고 있는 파일\n",
" 2) DTD(.dtd) : XML 작성을 위한 설계문서 (설계도) 간단한 문법 / 설계도를 간단하게 밖에 못만든다.\n",
" 3) XML Schema(.xsd) : XML 작성을 위한 설계문서 (설계도) 복잡한 문법 / 디테일한 것 까지 조정 가능 \n",
" 4) XSL(.xsl, xslt) : XML문서에 스타일을 입혀주는 언어 / 디자인 기능 \n",
" \n",
" 3. 결과 문서의 종류 (심사)\n",
" 1) Well-Formed XML Document(잘 짜여진 문서) : XML 규칙(Element 문법,..)에 맞춰서 잘 만들어진 문서\n",
" 2) Valid XML Document(유효한 문서) : XML 규칙도 잘 지켰고 설계도에 맞춰서 잘 만들어진 문서\n",
" \n",
" 4. Element 문법(시작태그와 끝태그를 하나로 묶어서 사용하는 단위, XML의 가장 기본적인 문법)\n",
" - 작성 규칙\n",
" a) 모든 XML문서는 반드시 단 하나의 루트 엘리먼트를 가진다.\n",
" b) 루트 엘리먼트는 여러 개의 자식 엘리먼트를 가질 수 있고\n",
" 또 그 자식도 자신의 자식을 가질 수 있다.\n",
" c) 시작태그와 끝태그는 반드시 짝을 이루어야 한다.\n",
" d) \"<\"는 값으로 사용 불가. \">\"는 사용할 수 있으나 가급적 사용 금지\n",
" e) \"<\"와 \">\" 다음에 공백문자가 올 수 없으며 반드시 시작태그와 끝태그의 이름이 같아야 한다.\n",
"\n",
" - 종류\n",
" a) 내용을 가지는 엘리먼트 (시작 태그와 끝태그 사이에 내용이 있는 경우)\n",
" b) 내용이 없는 엘리먼트 (html에 <img>)\n",
"\n",
" - 내용에 대한 종류\n",
" a) 문자 데이터\n",
" b) 자식 엘리먼트\n",
" c) 엔티티 또는 문자 참조 (특수문자 / 실제 객체를 가리키는 변수)\n",
" d) CDATA Section (문자를 자유롭게 쓸 수 있는 구역을 만들어주는 / 특수문자든 뭐든 자유롭게 사용 할 수 있다.)\n",
" e) 프로세싱 지시자 (태그 안에 또다른 프로그램을 사용할 수 있게)\n",
" f) 주석 : <!-- 주석 내용 --> \n",
" g) 공백 문자열\n",
"\n",
" 5. DTD (설계도)\n",
" - 종류\n",
" 내부 DTD (xml안에다가 dtd / 효용성이 떨어짐/ 많이 활용하지 않음)\n",
" 외부 DTD (별도로 따로 만들어둠 / 다른 xml에 사용가능 / 대부분 외부 dtd)\n",
" \n",
" - 구성 요소\n",
" 엘리먼트 선언\n",
" 속성(attribute) 선언\n",
" Entity 선언\n",
" Notation 선언\n",
" 프로세싱 지시자\n",
" 파라미터 엔티티 참조\n",
" 주석\n",
" 공백\n",
" conditional section\n",
"\n",
" - 문서 유형 선언 (DTD를 가지고 XML를 만들겠다 선언)\n",
" <!DOCTYPE 루트엘리먼트명 SYSTEM 또는 PUBLIC \"식별자\">\n",
" DOCTYPE은 반드시 대문자 \n",
" SYSTEM은 특정 단체나 업체내부에서 사용되는 경우\n",
" PUBLIC은 공개\n",
" 식별자는 다운로드 받을 수 있는 경로\n",
" PUBLIC일 경우 추가된 식별자\n",
" +-//DTD를 개발 및 유지보수 업체명//DTD명 및 버전번호//사용된 언어\n",
"\n",
" - 엘리먼트 선언\n",
" <!ELEMENT 엘리먼트명 컨텐트 유형>\n",
" 컨텐트 유형\n",
" #PCDATA\t: 내용으로 문자데이터만 갖는 엘리먼트\n",
" 자식 엘리먼트\n",
" , : 작성 순서\n",
" | : 선택\n",
" ? : 생략하거나 한번만 작성\n",
" + : 한번 이상\n",
" * : 생략하거나 여러번 작성\n",
" 기호 없음 : 단 한번만 작성\n",
" EMPTY\n",
" MIXED : 문자데이터 또는 자식엘리먼트를 혼합형태\n",
" ANY\n",
"\n",
" - ATTRIBUTE 선언\n",
" <!ATTLIST 엘리먼트명 속성명 속성유형 디폴트선언>\n",
" 속성 유형\n",
" CDATA : 문자 데이터\n",
" ENUMERATION\t: dtd에 나열된 값 중 하나가 와야 함\n",
" ID : 유일한 값을 지정\n",
" IDREF/IDREFS : ID값을 참조\n",
" NMTOKEN/NMTOKENS : 이름 작성 규칙을 준수하는 데이터만 사용\n",
" NOTATION : dtd에 명시적으로 선언된 notation만 사용가능\n",
" ENTITY : dtd에 명시적으로 선언된 entity만 사용 가능\n",
" \n",
" - validation check\n",
" https://www.xmlvalidation.com/\n",
"\n",
" 6. 네임 스페이스(태그 이름이 같을 때 구별할 수 있게)\n",
" CML \n",
" -----\n",
" <?xml version=1.0>\n",
" <정보>\n",
" <고유번호>111111-1111111</고유번호>\n",
" <이름>홍길동</이름>\n",
" ...\n",
" </정보>\n",
"\n",
" PML\n",
" -----\n",
" <?xml version=1.0>\n",
" <정보>\n",
" <고유번호>LC100</고유번호>\n",
" <이름>캠코더</이름>\n",
" ...\n",
" </정보>\n",
"\n",
" OML\n",
" -----\n",
" <?xml version=1.0>\n",
" <주문정보 xmlns:고객=\"http://www.a.com/2017/Custom\"\n",
" xmlns:상품=\"http://www.a.com/2017/Product\"\n",
" xmlns=\"http://www.a.com/2017/Order\">\n",
" <주문번호>1</주문번호>\n",
" <주문수량>10</주문수량>\n",
" <결제>\n",
" <방법>현금</방법>\n",
" <금액>10000000</금액>\n",
" </결제>\n",
"\n",
" <고객:고유번호>111111-1111111</고객:고유번호>\n",
" <고객:이름>홍길동</고객:이름>\n",
"\n",
" <상품:고유번호>LC100</상품:고유번호>\n",
" <상품:이름>캠코더</상품:이름>\n",
" ...\n",
" </주문정보>\n"
]
},
{
"cell_type": "code",
"execution_count": 2,
"metadata": {},
"outputs": [],
"source": [
"import xml.etree.ElementTree as elemTree\n",
"\n",
"# XML을 parsing하는 방법 \n",
"# 1 실제 XML파일로 존재하는 경우 : parse()\n",
"# 2 XML 문자열로 존재하는 경우 : fromstring()\n",
"# 텍스트 노드 (단말노드) : 더 이상 자식을 가질 수 업는 노드\n"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"#### xml 데이터 불러오기"
]
},
{
"cell_type": "code",
"execution_count": 25,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"<xml.etree.ElementTree.ElementTree at 0x1779ed34190>"
]
},
"execution_count": 25,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"tree1 = elemTree.parse(\"data/users.xml\")\n",
"tree1\n"
]
},
{
"cell_type": "code",
"execution_count": 5,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"<Element 'users' at 0x000001779EC79900>"
]
},
"execution_count": 5,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"xmlstr=\"\"\"<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n",
"<users>\n",
"\t<user grade=\"gold\">\n",
" <name>Kim Cheol Soo</name>\n",
" <age>25</age>\n",
" <birthday>19940215</birthday>\n",
" </user>\n",
" <user grade=\"diamond\">\n",
" <name>Kim Yoo Mee</name>\n",
" <age>21</age>\n",
" <birthday>19980417</birthday>\n",
" </user>\n",
"</users>\n",
"\"\"\"\n",
"\n",
"#공백이 없어야 한다 .\n",
"tree2=elemTree.fromstring(xmlstr)\n",
"tree2"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"#### xml 데이터 다루기"
]
},
{
"cell_type": "code",
"execution_count": 24,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"user\n",
"{'grade': 'gold'}\n",
"gold\n",
"-----------------------------------------\n",
"name\n",
"{}\n",
"Kim Cheol Soo\n",
"-----------------------------------------\n",
"25\n"
]
}
],
"source": [
"#태그명 검색\n",
"#XPath 경로지정 : ./, ../\n",
"\n",
"\n",
"#data = tree1.find(\"user\")\n",
"#data = tree1.find(\"user[1]\") #배열이다.\n",
"#data = tree1.find(\"user[2]\")\n",
"data = tree1.find(\"./user[1]\")\n",
"data\n",
"type(data)\n",
"dir(data)\n",
"print(data.tag) # 태그 이름\n",
"print(data.attrib) # 태그 속성 \n",
"print(data.get(\"grade\"))\n",
"\n",
"print(\"-----------------------------------------\")\n",
"username = data.find(\"name\")\n",
"username\n",
"print(username.tag)\n",
"print(username.attrib)\n",
"print(username.text)\n",
"\n",
"print(\"-----------------------------------------\")\n",
"\n",
"userage = data.find(\"age\")\n",
"print(userage.text)\n"
]
},
{
"cell_type": "code",
"execution_count": 35,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"{'grade': 'diamond'}\n"
]
}
],
"source": [
"# 태그 조건으로 검색\n",
"#data = tree1.find(\"./user[@grade]\") # @ = attribute\n",
"#data = tree1.find(\"./user[@grade][1]\")\n",
"#data = tree1.find(\"./user[@grade][2]\")\n",
"data = tree1.find('./user[@grade=\"diamond\"]')\n",
"print(data.attrib)"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"# 여러 개의 태그를 한꺼번에 가져오기\n",
"users = tree1.findall(\"./user\")\n",
"users\n",
"\n",
"for user in users:\n",
" print(user.attrib)\n",
" print(user.find(\"name\").text)\n"
]
},
{
"cell_type": "code",
"execution_count": 51,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"<Element 'users' at 0x000001779F561C70>\n",
"users\n",
"{}\n",
"------------------------------------\n",
"gold\n",
"['grade']\n",
"[('grade', 'gold')]\n",
"------------------------------------\n",
"None\n"
]
}
],
"source": [
"# 그외 기타 api\n",
"\n",
"t = tree1.getroot()\n",
"print(t)\n",
"print(t.tag)\n",
"print(t.attrib)\n",
"\n",
"print(\"------------------------------------\")\n",
" \n",
"u1 = t.find(\"./user\")\n",
"print(u1.get(\"grade\"))\n",
"print(u1.keys())\n",
"print(u1.items())\n",
"\n",
"print(\"------------------------------------\")\n",
"\n",
"print(t.findtext(\"age\"))\n"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"---\n",
"## JSON"
]
},
{
"cell_type": "code",
"execution_count": 3,
"metadata": {},
"outputs": [],
"source": [
"import json\n",
"\n",
"#dumps() : 데이터를 저장\n",
"#lodas() : 데이터를 불러올 때"
]
},
{
"cell_type": "code",
"execution_count": 53,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"['JSONDecodeError',\n",
" 'JSONDecoder',\n",
" 'JSONEncoder',\n",
" '__all__',\n",
" '__author__',\n",
" '__builtins__',\n",
" '__cached__',\n",
" '__doc__',\n",
" '__file__',\n",
" '__loader__',\n",
" '__name__',\n",
" '__package__',\n",
" '__path__',\n",
" '__spec__',\n",
" '__version__',\n",
" '_default_decoder',\n",
" '_default_encoder',\n",
" 'codecs',\n",
" 'decoder',\n",
" 'detect_encoding',\n",
" 'dump',\n",
" 'dumps',\n",
" 'encoder',\n",
" 'load',\n",
" 'loads',\n",
" 'scanner']"
]
},
"execution_count": 53,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"dir(json)"
]
},
{
"cell_type": "code",
"execution_count": 67,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"<class 'dict'>\n",
"{'name': '홍길동', 'birth': '0519', 'age': 20}\n",
"-------------------\n",
"<class 'str'>\n",
"{\n",
" \"name\": \"\\ud64d\\uae38\\ub3d9\",\n",
" \"birth\": \"0519\",\n",
" \"age\": 20\n",
"}\n",
"-------------------\n",
"<class 'str'>\n",
"<class 'str'>\n",
"-------------------\n",
"<class 'dict'>\n",
"{'name': '홍길동', 'birth': '0519', 'age': 20}\n"
]
}
],
"source": [
"j1 = {\"name\" : \"홍길동\", \"birth\":\"0519\",\"age\":20}\n",
"print(type(j1))\n",
"print(j1)\n",
"\n",
"print(\"-------------------\")\n",
"# dict를 json으로\n",
"#j2 =json.dumps(j1)\n",
"j2 =json.dumps(j1, indent=2)\n",
"print(type(j2))\n",
"print(j2)\n",
"print(\"-------------------\")\n",
"#리스트나 튜플도 json으로 변환 \n",
"print(type(json.dumps([1, 2, 3]))) #리스트 -> json\n",
"print(type(json.dumps((1, 2, 3)))) #튜플 -> json\n",
"\n",
"print(\"-------------------\")\n",
"j3 = json.loads(j2)\n",
"print(type(j3))\n",
"print(j3)"
]
},
{
"cell_type": "code",
"execution_count": 69,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"{\n",
"\"id\": \"0001\",\n",
"\"type\": \"donut\",\n",
"\"name\": \"Cake\",\n",
"\"ppu\": 0.55,\n",
"\"batters\":\n",
"{\n",
"\"batter\":\n",
"[\n",
"{ \"id\": \"1001\", \"type\": \"Regular\" },\n",
"{ \"id\": \"1002\", \"type\": \"Chocolate\" },\n",
"{ \"id\": \"1003\", \"type\": \"Blueberry\" },\n",
"{ \"id\": \"1004\", \"type\": \"Devil's Food\" }\n",
"]\n",
"},\n",
"\"topping\":\n",
"[\n",
"{ \"id\": \"5001\", \"type\": \"None\" },\n",
"{ \"id\": \"5002\", \"type\": \"Glazed\" },\n",
"{ \"id\": \"5005\", \"type\": \"Sugar\" },\n",
"{ \"id\": \"5007\", \"type\": \"Powdered Sugar\" },\n",
"{ \"id\": \"5006\", \"type\": \"Chocolate with Sprinkles\" },\n",
"{ \"id\": \"5003\", \"type\": \"Chocolate\" },\n",
"{ \"id\": \"5004\", \"type\": \"Maple\" }\n",
"]\n",
"}\n",
"\n"
]
}
],
"source": [
"obj=\"\"\"\n",
"{\n",
"\"id\": \"0001\",\n",
"\"type\": \"donut\",\n",
"\"name\": \"Cake\",\n",
"\"ppu\": 0.55,\n",
"\"batters\":\n",
"{\n",
"\"batter\":\n",
"[\n",
"{ \"id\": \"1001\", \"type\": \"Regular\" },\n",
"{ \"id\": \"1002\", \"type\": \"Chocolate\" },\n",
"{ \"id\": \"1003\", \"type\": \"Blueberry\" },\n",
"{ \"id\": \"1004\", \"type\": \"Devil's Food\" }\n",
"]\n",
"},\n",
"\"topping\":\n",
"[\n",
"{ \"id\": \"5001\", \"type\": \"None\" },\n",
"{ \"id\": \"5002\", \"type\": \"Glazed\" },\n",
"{ \"id\": \"5005\", \"type\": \"Sugar\" },\n",
"{ \"id\": \"5007\", \"type\": \"Powdered Sugar\" },\n",
"{ \"id\": \"5006\", \"type\": \"Chocolate with Sprinkles\" },\n",
"{ \"id\": \"5003\", \"type\": \"Chocolate\" },\n",
"{ \"id\": \"5004\", \"type\": \"Maple\" }\n",
"]\n",
"}\n",
"\"\"\"\n",
"print(obj)"
]
},
{
"cell_type": "code",
"execution_count": 71,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"<class 'str'>\n"
]
}
],
"source": [
"print(type(obj))"
]
},
{
"cell_type": "code",
"execution_count": 73,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"<class 'dict'>\n",
"{'id': '0001', 'type': 'donut', 'name': 'Cake', 'ppu': 0.55, 'batters': {'batter': [{'id': '1001', 'type': 'Regular'}, {'id': '1002', 'type': 'Chocolate'}, {'id': '1003', 'type': 'Blueberry'}, {'id': '1004', 'type': \"Devil's Food\"}]}, 'topping': [{'id': '5001', 'type': 'None'}, {'id': '5002', 'type': 'Glazed'}, {'id': '5005', 'type': 'Sugar'}, {'id': '5007', 'type': 'Powdered Sugar'}, {'id': '5006', 'type': 'Chocolate with Sprinkles'}, {'id': '5003', 'type': 'Chocolate'}, {'id': '5004', 'type': 'Maple'}]}\n",
"----------------------------------------------\n",
"0001\n",
"---------------------------------------------\n",
"1001\n"
]
}
],
"source": [
"result=json.loads(obj)\n",
"print(type(result))\n",
"print(result)\n",
"\n",
"print(\"----------------------------------------------\")\n",
"\n",
"print(result[\"id\"])\n",
"\n",
"print(\"---------------------------------------------\")\n",
"#batter 안에 있는 첫번째 id 접근\n",
"print(result[\"batters\"][\"batter\"][0][\"id\"])"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"---\n",
"### BeautifulSoup"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"#### 웹 소스 읽기 "
]
},
{
"cell_type": "code",
"execution_count": 4,
"metadata": {},
"outputs": [],
"source": [
"from urllib.request import urlopen"
]
},
{
"cell_type": "code",
"execution_count": 79,
"metadata": {
"collapsed": true
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"<class 'http.client.HTTPResponse'>\n",
"b'<!doctype html><html itemscope=\"\" itemtype=\"http://schema.org/WebPage\" lang=\"ko\"><head><meta content=\"text/html; charset=UTF-8\" http-equiv=\"Content-Type\"><meta content=\"/logos/doodles/2020/december-holidays-days-2-30-6753651837108830.3-law.gif\" itemprop=\"image\"><meta content=\"연말 스페셜\" property=\"twitter:title\"><meta content=\"#GoogleDoodle\" property=\"twitter:description\"><meta content=\"#GoogleDoodle\" property=\"og:description\"><meta content=\"summary_large_image\" property=\"twitter:card\"><meta content=\"@GoogleDoodles\" property=\"twitter:site\"><meta content=\"https://www.google.com/logos/doodles/2020/december-holidays-days-2-30-6753651837108830.3-2xa.gif\" property=\"twitter:image\"><meta content=\"https://www.google.com/logos/doodles/2020/december-holidays-days-2-30-6753651837108830.3-2xa.gif\" property=\"og:image\"><meta content=\"1100\" property=\"og:image:width\"><meta content=\"440\" property=\"og:image:height\"><meta content=\"https://www.google.com/logos/doodles/2020/december-holidays-days-2-30-6753651837108830.3-2xa.gif\" property=\"og:url\"><meta content=\"video.other\" property=\"og:type\"><title>Google</title><script nonce=\"si2wjQ5bTybNWJf187rCRA==\">(function(){window.google={kEI:\\'GNzqX5b4OM38wAOi0KOIBA\\',kEXPI:\\'0,1359409,730,224,5105,206,3204,10,1144,82,364,1499,817,383,246,5,1354,4414,3,65,768,7,211,1263,861,604,964,1611,7,1944,1559,56,433,1112996,1197699,583,8,328977,13677,4855,32692,16114,17444,11240,9188,8384,4859,1361,9291,3021,4746,7,12834,4020,978,7931,5297,1838,216,920,873,4192,6430,14528,4517,2778,918,2277,9,2795,1593,1279,2212,531,148,561,542,840,517,1522,157,4101,108,204,1137,2,2063,606,2023,1777,520,1947,2209,3,110,328,1284,2943,24,2222,3600,2269,1,957,2845,7,5599,6755,5096,7877,4928,108,1456,1951,908,2,941,2614,2397,7468,3277,3,576,970,865,4625,150,5988,7985,4,1528,2304,1236,833,312,447,1818,1817,576,537,43,1211,2429,17,446,460,1555,4067,1036,1315,3283,1426,2484,2725,286,1753,2658,491,3752,520,910,564,213,251,217,8,430,31,1303,2551,139,2883,211,990,52,3286,2213,2305,638,1494,130,475,2,1484,2145,1030,320,2361,55,744,213,399,3229,773,2,940,490,587,11,731,64,601,337,513,2,1293,117,260,877,2407,1339,1160,52,479,12,1141,415,848,59,777,363,17,19,460,2032,92,518,6,171,737,3,202,1325,1924,90,1,336,1667,2070,979,965,490,492,34,670,1104,870,768,147,355,390,116,332,157,1029,618,4,1117,233,474,480,513,152,245,706,2910,655,395,1126,210,430,472,568,166,5,521,195,210,280,5717759,1873,1997,35,8798011,549,333,444,1,2,80,1,900,896,1,9,2,2551,1,748,141,59,736,563,1,4265,1,1,2,1017,9,305,3299,248,595,1,2301,19,86,7,9,7,11,46,7,16,25,1,1,1,1,11,21,1,23957690\\',kBL:\\'ZWEf\\'};google.sn=\\'webhp\\';google.kHL=\\'ko\\';})();(function(){\\ngoogle.lc=[];google.li=0;google.getEI=function(a){for(var b;a&&(!a.getAttribute||!(b=a.getAttribute(\"eid\")));)a=a.parentNode;return b||google.kEI};google.getLEI=function(a){for(var b=null;a&&(!a.getAttribute||!(b=a.getAttribute(\"leid\")));)a=a.parentNode;return b};google.ml=function(){return null};google.time=function(){return Date.now()};google.log=function(a,b,c,d,g){if(c=google.logUrl(a,b,c,d,g)){a=new Image;var e=google.lc,f=google.li;e[f]=a;a.onerror=a.onload=a.onabort=function(){delete e[f]};a.src=c;google.li=f+1}};google.logUrl=function(a,b,c,d,g){var e=\"\",f=google.ls||\"\";c||-1!=b.search(\"&ei=\")||(e=\"&ei=\"+google.getEI(d),-1==b.search(\"&lei=\")&&(d=google.getLEI(d))&&(e+=\"&lei=\"+d));d=\"\";!c&&google.cshid&&-1==b.search(\"&cshid=\")&&\"slh\"!=a&&(d=\"&cshid=\"+google.cshid);c=c||\"/\"+(g||\"gen_204\")+\"?atyp=i&ct=\"+a+\"&cad=\"+b+e+f+\"&zx=\"+google.time()+d;/^http:/i.test(c)&&\"https:\"==window.location.protocol&&(google.ml(Error(\"a\"),!1,{src:c,glmm:1}),c=\"\");return c};}).call(this);(function(){google.y={};google.x=function(a,b){if(a)var c=a.id;else{do c=Math.random();while(google.y[c])}google.y[c]=[a,b];return!1};google.lm=[];google.plm=function(a){google.lm.push.apply(google.lm,a)};google.lq=[];google.load=function(a,b,c){google.lq.push([[a],b,c])};google.loadAll=function(a,b){google.lq.push([a,b])};}).call(this);google.f={};(function(){\\ndocument.documentElement.addEventListener(\"submit\",function(b){var a;if(a=b.target){var c=a.getAttribute(\"data-submitfalse\");a=\"1\"==c||\"q\"==c&&!a.elements.q.value?!0:!1}else a=!1;a&&(b.preventDefault(),b.stopPropagation())},!0);document.documentElement.addEventListener(\"click\",function(b){var a;a:{for(a=b.target;a&&a!=document.documentElement;a=a.parentElement)if(\"A\"==a.tagName){a=\"1\"==a.getAttribute(\"data-nohref\");break a}a=!1}a&&b.preventDefault()},!0);}).call(this);\\nvar a=window.location,b=a.href.indexOf(\"#\");if(0<=b){var c=a.href.substring(b+1);/(^|&)q=/.test(c)&&-1==c.indexOf(\"#\")&&a.replace(\"/search?\"+c.replace(/(^|&)fp=[^&]*/g,\"\")+\"&cad=h\")};</script><style>#gbar,#guser{font-size:13px;padding-top:1px !important;}#gbar{height:22px}#guser{padding-bottom:7px !important;text-align:right}.gbh,.gbd{border-top:1px solid #c9d7f1;font-size:1px}.gbh{height:0;position:absolute;top:24px;width:100%}@media all{.gb1{height:22px;margin-right:.5em;vertical-align:top}#gbar{float:left}}a.gb1,a.gb4{text-decoration:underline !important}a.gb1,a.gb4{color:#00c !important}.gbi .gb4{color:#dd8e27 !important}.gbf .gb4{color:#900 !important}\\n</style><style>body,td,a,p,.h{font-family:굴림,돋움,arial,sans-serif}.ko{font-size:9pt}body{margin:0;overflow-y:scroll}#gog{padding:3px 8px 0}td{line-height:.8em}.gac_m td{line-height:17px}form{margin-bottom:20px}.h{color:#1558d6}em{font-weight:bold;font-style:normal}.lst{height:25px;width:496px}.gsfi,.lst{font:18px arial,sans-serif}.gsfs{font:17px arial,sans-serif}.ds{display:inline-box;display:inline-block;margin:3px 0 4px;margin-left:4px}input{font-family:inherit}body{background:#fff;color:#000}a{color:#4b11a8;text-decoration:none}a:hover,a:active{text-decoration:underline}.fl a{color:#1558d6}a:visited{color:#4b11a8}.sblc{padding-top:5px}.sblc a{display:block;margin:2px 0;margin-left:13px;font-size:11px}.lsbb{background:#f8f9fa;border:solid 1px;border-color:#dadce0 #70757a #70757a #dadce0;height:30px}.lsbb{display:block}#WqQANb a{display:inline-block;margin:0 12px}.lsb{background:url(/images/nav_logo229.png) 0 -261px repeat-x;border:none;color:#000;cursor:pointer;height:30px;margin:0;outline:0;font:15px arial,sans-serif;vertical-align:top}.lsb:active{background:#dadce0}.lst:focus{outline:none}.tiah{width:458px}</style><script nonce=\"si2wjQ5bTybNWJf187rCRA==\"></script></head><body bgcolor=\"#fff\"><script nonce=\"si2wjQ5bTybNWJf187rCRA==\">(function(){var src=\\'/images/nav_logo229.png\\';var iesg=false;document.body.onload = function(){window.n && window.n();if (document.images){new Image().src=src;}\\nif (!iesg){document.f&&document.f.q.focus();document.gbqf&&document.gbqf.q.focus();}\\n}\\n})();</script><div id=\"mngb\"><div id=gbar><nobr><b class=gb1>검색</b> <a class=gb1 href=\"http://www.google.co.kr/imghp?hl=ko&tab=wi\">이미지</a> <a class=gb1 href=\"http://maps.google.co.kr/maps?hl=ko&tab=wl\">지도</a> <a class=gb1 href=\"https://play.google.com/?hl=ko&tab=w8\">Play</a> <a class=gb1 href=\"http://www.youtube.com/?gl=KR&tab=w1\">YouTube</a> <a class=gb1 href=\"https://news.google.com/?tab=wn\">뉴스</a> <a class=gb1 href=\"https://mail.google.com/mail/?tab=wm\">Gmail</a> <a class=gb1 href=\"https://drive.google.com/?tab=wo\">드라이브</a> <a class=gb1 style=\"text-decoration:none\" href=\"https://www.google.co.kr/intl/ko/about/products?tab=wh\"><u>더보기</u> »</a></nobr></div><div id=guser width=100%><nobr><span id=gbn class=gbi></span><span id=gbf class=gbf></span><span id=gbe></span><a href=\"http://www.google.co.kr/history/optout?hl=ko\" class=gb4>웹 기록</a> | <a href=\"/preferences?hl=ko\" class=gb4>설정</a> | <a target=_top id=gb_70 href=\"https://accounts.google.com/ServiceLogin?hl=ko&passive=true&continue=http://www.google.com/&ec=GAZAAQ\" class=gb4>로그인</a></nobr></div><div class=gbh style=left:0></div><div class=gbh style=right:0></div></div><center><br clear=\"all\" id=\"lgpd\"><div id=\"lga\"><a href=\"/search?ie=UTF-8&q=%EC%97%B0%EB%A7%90+%EC%8A%A4%ED%8E%98%EC%85%9C&oi=ddle&ct=173710363&hl=ko&kgmid=ddl&sa=X&ved=0ahUKEwiW5K3n1vLtAhVNPnAKHSLoCEEQPQgD\"><img alt=\"연말 스페셜\" border=\"0\" height=\"180\" src=\"/logos/doodles/2020/december-holidays-days-2-30-6753651837108830.3-law.gif\" title=\"연말 스페셜\" width=\"500\" id=\"hplogo\"><br></a><br></div><form action=\"/search\" name=\"f\"><table cellpadding=\"0\" cellspacing=\"0\"><tr valign=\"top\"><td width=\"25%\"> </td><td align=\"center\" nowrap=\"\"><input name=\"ie\" value=\"ISO-8859-1\" type=\"hidden\"><input value=\"ko\" name=\"hl\" type=\"hidden\"><input name=\"source\" type=\"hidden\" value=\"hp\"><input name=\"biw\" type=\"hidden\"><input name=\"bih\" type=\"hidden\"><div class=\"ds\" style=\"height:32px;margin:4px 0\"><div style=\"position:relative;zoom:1\"><input class=\"lst tiah\" style=\"margin:0;padding:5px 8px 0 6px;vertical-align:top;color:#000;padding-right:38px\" autocomplete=\"off\" value=\"\" title=\"Google 검색\" maxlength=\"2048\" name=\"q\" size=\"57\"><img src=\"/textinputassistant/tia.png\" style=\"position:absolute;cursor:pointer;right:5px;top:4px;z-index:300\" data-script-url=\"/textinputassistant/11/ko_tia.js\" id=\"tsuid1\" alt=\"\" height=\"23\" width=\"27\"><script nonce=\"si2wjQ5bTybNWJf187rCRA==\">(function(){var id=\\'tsuid1\\';document.getElementById(id).onclick = function(){var s = document.createElement(\\'script\\');s.src = this.getAttribute(\\'data-script-url\\');(document.getElementById(\\'xjsc\\')||document.body).appendChild(s);};})();</script></div></div><br style=\"line-height:0\"><span class=\"ds\"><span class=\"lsbb\"><input class=\"lsb\" value=\"Google 검색\" name=\"btnG\" type=\"submit\"></span></span><span class=\"ds\"><span class=\"lsbb\"><input class=\"lsb\" id=\"tsuid2\" value=\"I’m Feeling Lucky\" name=\"btnI\" type=\"submit\"><script nonce=\"si2wjQ5bTybNWJf187rCRA==\">(function(){var id=\\'tsuid2\\';document.getElementById(id).onclick = function(){if (this.form.q.value){this.checked = 1;if (this.form.iflsig)this.form.iflsig.disabled = false;}\\nelse top.location=\\'/doodles/\\';};})();</script><input value=\"AINFCbYAAAAAX-rqKQTDWAMRe8Kp-_quH714FiQ7mPDg\" name=\"iflsig\" type=\"hidden\"></span></span></td><td class=\"fl sblc\" align=\"left\" nowrap=\"\" width=\"25%\"><a href=\"/advanced_search?hl=ko&authuser=0\">고급검색</a></td></tr></table><input id=\"gbv\" name=\"gbv\" type=\"hidden\" value=\"1\"><script nonce=\"si2wjQ5bTybNWJf187rCRA==\">(function(){var a,b=\"1\";if(document&&document.getElementById)if(\"undefined\"!=typeof XMLHttpRequest)b=\"2\";else if(\"undefined\"!=typeof ActiveXObject){var c,d,e=[\"MSXML2.XMLHTTP.6.0\",\"MSXML2.XMLHTTP.3.0\",\"MSXML2.XMLHTTP\",\"Microsoft.XMLHTTP\"];for(c=0;d=e[c++];)try{new ActiveXObject(d),b=\"2\"}catch(h){}}a=b;if(\"2\"==a&&-1==location.search.indexOf(\"&gbv=2\")){var f=google.gbvu,g=document.getElementById(\"gbv\");g&&(g.value=a);f&&window.setTimeout(function(){location.href=f},0)};}).call(this);</script></form><div id=\"gac_scont\"></div><div style=\"font-size:83%;min-height:3.5em\"><br></div><span id=\"footer\"><div style=\"font-size:10pt\"><div style=\"margin:19px auto;text-align:center\" id=\"WqQANb\"><a href=\"/intl/ko/ads/\">광고 프로그램</a><a href=\"http://www.google.co.kr/intl/ko/services/\">비즈니스 솔루션</a><a href=\"/intl/ko/about.html\">Google 정보</a><a href=\"http://www.google.com/setprefdomain?prefdom=KR&prev=http://www.google.co.kr/&sig=K_FQG8nYrCaj77S9RL0IlFK-msv28%3D\">Google.co.kr</a></div></div><p style=\"font-size:8pt;color:#70757a\">© 2020 - <a href=\"/intl/ko/policies/privacy/\">개인정보처리방침</a> - <a href=\"/intl/ko/policies/terms/\">약관</a></p></span></center><script nonce=\"si2wjQ5bTybNWJf187rCRA==\">(function(){window.google.cdo={height:0,width:0};(function(){var a=window.innerWidth,b=window.innerHeight;if(!a||!b){var c=window.document,d=\"CSS1Compat\"==c.compatMode?c.documentElement:c.body;a=d.clientWidth;b=d.clientHeight}a&&b&&(a!=google.cdo.width||b!=google.cdo.height)&&google.log(\"\",\"\",\"/client_204?&atyp=i&biw=\"+a+\"&bih=\"+b+\"&ei=\"+google.kEI);}).call(this);})();(function(){var u=\\'/xjs/_/js/k\\\\x3dxjs.hp.en.5THRwtAPYFk.O/m\\\\x3dsb_he,d/am\\\\x3dAHiCOA/d\\\\x3d1/rs\\\\x3dACT90oFKbc9Z7G9_DuzW-Np9DtaSdO3Krg\\';\\nvar c=this||self,e=/^[\\\\w+/_-]+[=]{0,2}$/,f=null,g=function(a){return(a=a.querySelector&&a.querySelector(\"script[nonce]\"))&&(a=a.nonce||a.getAttribute(\"nonce\"))&&e.test(a)?a:\"\"},h=function(a){return a};var l;var n=function(a,b){this.g=b===m?a:\"\"},m={};setTimeout(function(){var a=document;var b=\"SCRIPT\";\"application/xhtml+xml\"===a.contentType&&(b=b.toLowerCase());b=a.createElement(b);a=u;if(void 0===l){var d=null;var k=c.trustedTypes;if(k&&k.createPolicy){try{d=k.createPolicy(\"goog#html\",{createHTML:h,createScript:h,createScriptURL:h})}catch(p){c.console&&c.console.error(p.message)}l=d}else l=d}a=(d=l)?d.createScriptURL(a):a;a=new n(a,m);b.src=a instanceof n&&a.constructor===n?a.g:\"type_error:TrustedResourceUrl\";(a=b.ownerDocument&&b.ownerDocument.defaultView)&&\\na!=c?a=g(a.document):(null===f&&(f=g(c.document)),a=f);a&&b.setAttribute(\"nonce\",a);google.timers&&google.timers.load&&google.tick&&google.tick(\"load\",\"xjsls\");document.body.appendChild(b)},0);})();(function(){window.google.xjsu=\\'/xjs/_/js/k\\\\x3dxjs.hp.en.5THRwtAPYFk.O/m\\\\x3dsb_he,d/am\\\\x3dAHiCOA/d\\\\x3d1/rs\\\\x3dACT90oFKbc9Z7G9_DuzW-Np9DtaSdO3Krg\\';})();function _DumpException(e){throw e;}\\nfunction _F_installCss(c){}\\n(function(){google.jl={dw:false,em:[],emw:false,lls:\\'default\\',pdt:0,snet:true,uwp:true};})();(function(){var pmc=\\'{\\\\x22d\\\\x22:{},\\\\x22sb_he\\\\x22:{\\\\x22agen\\\\x22:true,\\\\x22cgen\\\\x22:true,\\\\x22client\\\\x22:\\\\x22heirloom-hp\\\\x22,\\\\x22dh\\\\x22:true,\\\\x22dhqt\\\\x22:true,\\\\x22ds\\\\x22:\\\\x22\\\\x22,\\\\x22ffql\\\\x22:\\\\x22ko\\\\x22,\\\\x22fl\\\\x22:true,\\\\x22host\\\\x22:\\\\x22google.com\\\\x22,\\\\x22isbh\\\\x22:28,\\\\x22jsonp\\\\x22:true,\\\\x22msgs\\\\x22:{\\\\x22cibl\\\\x22:\\\\x22검색어 지우기\\\\x22,\\\\x22dym\\\\x22:\\\\x22이것을 찾으셨나요?\\\\x22,\\\\x22lcky\\\\x22:\\\\x22I’m Feeling Lucky\\\\x22,\\\\x22lml\\\\x22:\\\\x22자세히 알아보기\\\\x22,\\\\x22oskt\\\\x22:\\\\x22입력 도구\\\\x22,\\\\x22psrc\\\\x22:\\\\x22검색어가 \\\\\\\\u003Ca href\\\\x3d\\\\\\\\\\\\x22/history\\\\\\\\\\\\x22\\\\\\\\u003E웹 기록\\\\\\\\u003C/a\\\\\\\\u003E에서 삭제되었습니다.\\\\x22,\\\\x22psrl\\\\x22:\\\\x22삭제\\\\x22,\\\\x22sbit\\\\x22:\\\\x22이미지로 검색\\\\x22,\\\\x22srch\\\\x22:\\\\x22Google 검색\\\\x22},\\\\x22nrft\\\\x22:false,\\\\x22ovr\\\\x22:{},\\\\x22pq\\\\x22:\\\\x22\\\\x22,\\\\x22refpd\\\\x22:true,\\\\x22refspre\\\\x22:true,\\\\x22rfs\\\\x22:[],\\\\x22sbas\\\\x22:\\\\x220 3px 8px 0 rgba(0,0,0,0.2),0 0 0 1px rgba(0,0,0,0.08)\\\\x22,\\\\x22sbpl\\\\x22:16,\\\\x22sbpr\\\\x22:16,\\\\x22scd\\\\x22:10,\\\\x22stok\\\\x22:\\\\x22CUoNRegpWn740KjwW_gJ0-MylDo\\\\x22,\\\\x22uhde\\\\x22:false}}\\';google.pmc=JSON.parse(pmc);})();</script> </body></html>'\n"
]
}
],
"source": [
"html= urlopen(\"http://google.com\")\n",
"print(type(html))\n",
"print(html.read())"
]
},
{
"cell_type": "code",
"execution_count": 5,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"URL Error 입니다 : <urlopen error [Errno 11001] getaddrinfo failed>\n"
]
}
],
"source": [
"from urllib.error import HTTPError, URLError\n",
"\n",
"try:\n",
" #html = urlopen(\"https://www.naver.com/index.jsp\") #http error\n",
" html = urlopen(\"https://www.naverabcde.com/index.jsp\") # url error\n",
"except HTTPError as e : \n",
" print(\"HTTP Error 입니다 : \"+ str(e))\n",
"except URLError as e:\n",
" print(\"URL Error 입니다 : \"+ str(e))\n",
"else:\n",
" print(html.read())"
]
},
{
"cell_type": "code",
"execution_count": 6,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"저장 되었습니다.\n"
]
}
],
"source": [
"# 이미지 가져오기\n",
"import urllib.request as req\n",
"\n",
"req.urlretrieve(\"https://t1.daumcdn.net/daumtop_chanel/op/20200723055344399.png\", \"data/daum.png\")\n",
"print(\"저장 되었습니다.\")\n"
]
},
{
"cell_type": "code",
"execution_count": 92,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"저장 되었습니다.\n"
]
}
],
"source": [
"img = urlopen(\"https://t1.daumcdn.net/daumtop_chanel/op/20200723055344399.png\")\n",
"img = img.read()\n",
"img\n",
"\n",
"f=open(\"data/daum2.png\", \"wb\")\n",
"f.write(img)\n",
"print(\"저장 되었습니다.\")\n",
"f.close()"
]
},
{
"cell_type": "code",
"execution_count": 7,
"metadata": {},
"outputs": [],
"source": [
"import urllib.parse"
]
},
{
"cell_type": "code",
"execution_count": 97,
"metadata": {
"collapsed": true
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"stnid=109\n",
"http://www.kma.go.kr/weather/forecast/mid-term-rss3.jsp??stnid=109\n",
"<?xml version=\"1.0\" encoding=\"utf-8\" ?>\r\n",
"<rss version=\"2.0\">\r\n",
"<channel>\r\n",
"<title>기상청 육상 중기예보</title>\r\n",
"<link>http://www.kma.go.kr/weather/forecast/mid-term_01.jsp</link>\r\n",
"<description>기상청 날씨 웹서비스</description>\r\n",
"<language>ko</language>\r\n",
"<generator>기상청</generator>\r\n",
"<pubDate>2020년 12월 29일 (화)요일 06:00</pubDate>\r\n",
" <item>\r\n",
"<author>기상청</author>\r\n",
"<category>육상중기예보</category>\r\n",
"<title>전국 육상 중기예보 - 2020년 12월 29일 (화)요일 06:00 발표</title>\r\n",
"<link>http://www.kma.go.kr/weather/forecast/mid-term_01.jsp</link>\r\n",
"<guid>http://www.kma.go.kr/weather/forecast/mid-term_01.jsp</guid>\r\n",
"<description>\r\n",
"\t<header>\r\n",
"\t\t<title>전국 육상중기예보</title>\r\n",
"\t\t<tm>202012290600</tm>\r\n",
"\t\t<wf><![CDATA[○ (강수) 1월 1일(금) 오전까지 충남과 전라도, 제주도에 눈이 오겠습니다. 또한, 1월 5일(화)~8일(금)에도 전라도와 제주도에 눈이 오겠습니다.<br />○ (기온) 이번 예보기간 동안 아침 기온은 -17~-1도, 낮 기온은 -4~7도로 어제(아침 기온 -1~7도, 낮 기온 9~15도)보다 크게 낮겠습니다. <br /> 한편, 1월 1일(금) 오후부터 4일(월)까지 일시적으로 기온이 회복되겠으나, 5일(화) 오후부터 다시 기온이 큰 폭으로 떨어지면서 매우 춥겠습니다.<br />○ (해상) 1월 1일(금)과 1월 5일(화)~7일(목)은 대부분 해상에서 바람이 매우 강하게 불고, 물결이 2.0~4.0m로 매우 높게 일겠습니다.<br />○ (주말전망) 1월 2일(토)~3일(일) 중부지방은 대체로 맑겠고, 남부지방은 가끔 구름많겠습니다.<br /> 아침 기온은 -14~-2도로 평년(-9~0도)보다 낮겠으나, 낮 기온은 -1~6도로 평년(1~9도)과 비슷하거나 조금 낮겠습니다.<br /><br />* 1월 5일(화)~8일(금)은 찬 대륙고기압이 확장하면서 기온이 큰 폭으로 떨어지고, 바람이 강하게 불면서 체감온도는 더욱 낮아 매우 춥겠습니다.<br /> 찬 공기의 강도와 남하정도에 따라 전라서해안을 중심으로 많은 눈이 내릴 가능성이 있으니, 앞으로 발표되는 기상정보를 참고하기 바랍니다.]]></wf>\r\n",
"\t</header>\r\n",
"\t<body>\r\n",
"\t\t\t\t\r\n",
"\r\n",
"\t\t<location wl_ver=\"3\">\r\n",
"\t\t\t\t<province>서울ㆍ인천ㆍ경기도</province>\r\n",
"\t\t\t\t<city>서울</city>\r\n",
"\t\t\t\t\r\n",
"\t\t\t\t<data>\r\n",
"\t\t\t\t\t<mode>A02</mode>\r\n",
"\t\t\t\t\t<tmEf>2021-01-01 00:00</tmEf>\r\n",
"\t\t\t\t\t<wf>맑음</wf>\r\n",
"\t\t\t\t\t<tmn>-10</tmn>\r\n",
"\t\t\t\t\t<tmx>-2</tmx>\r\n",
"\t\t\t\t\t<reliability></reliability>\r\n",
"\t\t\t\t\t<rnSt>0</rnSt>\r\n",
"\t\t\t\t</data>\r\n",
"\r\n",
"\t\t\t\t\r\n",
"\t\t\t\t<data>\r\n",
"\t\t\t\t\t<mode>A02</mode>\r\n",
"\t\t\t\t\t<tmEf>2021-01-01 12:00</tmEf>\r\n",
"\t\t\t\t\t<wf>맑음</wf>\r\n",
"\t\t\t\t\t<tmn>-10</tmn>\r\n",
"\t\t\t\t\t<tmx>-2</tmx>\r\n",
"\t\t\t\t\t<reliability></reliability>\r\n",
"\t\t\t\t\t<rnSt>0</rnSt>\r\n",
"\t\t\t\t</data>\r\n",
"\r\n",
"\t\t\t\t\r\n",
"\t\t\t\t<data>\r\n",
"\t\t\t\t\t<mode>A02</mode>\r\n",
"\t\t\t\t\t<tmEf>2021-01-02 00:00</tmEf>\r\n",
"\t\t\t\t\t<wf>맑음</wf>\r\n",
"\t\t\t\t\t<tmn>-9</tmn>\r\n",
"\t\t\t\t\t<tmx>-1</tmx>\r\n",
"\t\t\t\t\t<reliability></reliability>\r\n",
"\t\t\t\t\t<rnSt>10</rnSt>\r\n",
"\t\t\t\t</data>\r\n",
"\r\n",
"\t\t\t\t\r\n",
"\t\t\t\t<data>\r\n",
"\t\t\t\t\t<mode>A02</mode>\r\n",
"\t\t\t\t\t<tmEf>2021-01-02 12:00</tmEf>\r\n",
"\t\t\t\t\t<wf>맑음</wf>\r\n",
"\t\t\t\t\t<tmn>-9</tmn>\r\n",
"\t\t\t\t\t<tmx>-1</tmx>\r\n",
"\t\t\t\t\t<reliability></reliability>\r\n",
"\t\t\t\t\t<rnSt>0</rnSt>\r\n",
"\t\t\t\t</data>\r\n",
"\r\n",
"\t\t\t\t\r\n",
"\t\t\t\t<data>\r\n",
"\t\t\t\t\t<mode>A02</mode>\r\n",
"\t\t\t\t\t<tmEf>2021-01-03 00:00</tmEf>\r\n",
"\t\t\t\t\t<wf>맑음</wf>\r\n",
"\t\t\t\t\t<tmn>-7</tmn>\r\n",
"\t\t\t\t\t<tmx>0</tmx>\r\n",
"\t\t\t\t\t<reliability></reliability>\r\n",
"\t\t\t\t\t<rnSt>0</rnSt>\r\n",
"\t\t\t\t</data>\r\n",
"\r\n",
"\t\t\t\t\r\n",
"\t\t\t\t<data>\r\n",
"\t\t\t\t\t<mode>A02</mode>\r\n",
"\t\t\t\t\t<tmEf>2021-01-03 12:00</tmEf>\r\n",
"\t\t\t\t\t<wf>맑음</wf>\r\n",
"\t\t\t\t\t<tmn>-7</tmn>\r\n",
"\t\t\t\t\t<tmx>0</tmx>\r\n",
"\t\t\t\t\t<reliability></reliability>\r\n",
"\t\t\t\t\t<rnSt>0</rnSt>\r\n",
"\t\t\t\t</data>\r\n",
"\r\n",
"\t\t\t\t\r\n",
"\t\t\t\t<data>\r\n",
"\t\t\t\t\t<mode>A02</mode>\r\n",
"\t\t\t\t\t<tmEf>2021-01-04 00:00</tmEf>\r\n",
"\t\t\t\t\t<wf>맑음</wf>\r\n",
"\t\t\t\t\t<tmn>-7</tmn>\r\n",
"\t\t\t\t\t<tmx>0</tmx>\r\n",
"\t\t\t\t\t<reliability></reliability>\r\n",
"\t\t\t\t\t<rnSt>0</rnSt>\r\n",
"\t\t\t\t</data>\r\n",
"\r\n",
"\t\t\t\t\r\n",
"\t\t\t\t<data>\r\n",
"\t\t\t\t\t<mode>A02</mode>\r\n",
"\t\t\t\t\t<tmEf>2021-01-04 12:00</tmEf>\r\n",
"\t\t\t\t\t<wf>구름많음</wf>\r\n",
"\t\t\t\t\t<tmn>-7</tmn>\r\n",
"\t\t\t\t\t<tmx>0</tmx>\r\n",
"\t\t\t\t\t<reliability></reliability>\r\n",
"\t\t\t\t\t<rnSt>20</rnSt>\r\n",
"\t\t\t\t</data>\r\n",
"\r\n",
"\t\t\t\t\r\n",
"\t\t\t\t<data>\r\n",
"\t\t\t\t\t<mode>A02</mode>\r\n",
"\t\t\t\t\t<tmEf>2021-01-05 00:00</tmEf>\r\n",
"\t\t\t\t\t<wf>맑음</wf>\r\n",
"\t\t\t\t\t<tmn>-8</tmn>\r\n",
"\t\t\t\t\t<tmx>-2</tmx>\r\n",
"\t\t\t\t\t<reliability></reliability>\r\n",
"\t\t\t\t\t<rnSt>20</rnSt>\r\n",
"\t\t\t\t</data>\r\n",
"\r\n",
"\t\t\t\t\r\n",
"\t\t\t\t<data>\r\n",
"\t\t\t\t\t<mode>A02</mode>\r\n",
"\t\t\t\t\t<tmEf>2021-01-05 12:00</tmEf>\r\n",
"\t\t\t\t\t<wf>맑음</wf>\r\n",
"\t\t\t\t\t<tmn>-8</tmn>\r\n",
"\t\t\t\t\t<tmx>-2</tmx>\r\n",
"\t\t\t\t\t<reliability></reliability>\r\n",
"\t\t\t\t\t<rnSt>10</rnSt>\r\n",
"\t\t\t\t</data>\r\n",
"\r\n",
"\t\t\t\t\r\n",
"\t\t\t\t<data>\r\n",
"\t\t\t\t\t<mode>A01</mode>\r\n",
"\t\t\t\t\t<tmEf>2021-01-06 00:00</tmEf>\r\n",
"\t\t\t\t\t<wf>맑음</wf>\r\n",
"\t\t\t\t\t<tmn>-11</tmn>\r\n",
"\t\t\t\t\t<tmx>-4</tmx>\r\n",
"\t\t\t\t\t<reliability></reliability>\r\n",
"\t\t\t\t\t<rnSt>10</rnSt>\r\n",
"\t\t\t\t</data>\r\n",
"\r\n",
"\t\t\t\t\r\n",
"\t\t\t\t<data>\r\n",
"\t\t\t\t\t<mode>A01</mode>\r\n",
"\t\t\t\t\t<tmEf>2021-01-07 00:00</tmEf>\r\n",
"\t\t\t\t\t<wf>맑음</wf>\r\n",
"\t\t\t\t\t<tmn>-11</tmn>\r\n",
"\t\t\t\t\t<tmx>-4</tmx>\r\n",
"\t\t\t\t\t<reliability></reliability>\r\n",
"\t\t\t\t\t<rnSt>10</rnSt>\r\n",
"\t\t\t\t</data>\r\n",
"\r\n",
"\t\t\t\t\r\n",
"\t\t\t\t<data>\r\n",
"\t\t\t\t\t<mode>A01</mode>\r\n",
"\t\t\t\t\t<tmEf>2021-01-08 00:00</tmEf>\r\n",
"\t\t\t\t\t<wf>맑음</wf>\r\n",
"\t\t\t\t\t<tmn>-11</tmn>\r\n",
"\t\t\t\t\t<tmx>-4</tmx>\r\n",
"\t\t\t\t\t<reliability></reliability>\r\n",
"\t\t\t\t\t<rnSt>10</rnSt>\r\n",
"\t\t\t\t</data>\r\n",
"\r\n",
"\r\n",
"\t\t</location>\r\n",
"\r\n",
"\t\t<location wl_ver=\"3\">\r\n",
"\t\t\t\t<province>서울ㆍ인천ㆍ경기도</province>\r\n",
"\t\t\t\t<city>인천</city>\r\n",
"\t\t\t\t\r\n",
"\t\t\t\t<data>\r\n",
"\t\t\t\t\t<mode>A02</mode>\r\n",
"\t\t\t\t\t<tmEf>2021-01-01 00:00</tmEf>\r\n",
"\t\t\t\t\t<wf>맑음</wf>\r\n",
"\t\t\t\t\t<tmn>-9</tmn>\r\n",
"\t\t\t\t\t<tmx>-2</tmx>\r\n",
"\t\t\t\t\t<reliability></reliability>\r\n",
"\t\t\t\t\t<rnSt>0</rnSt>\r\n",
"\t\t\t\t</data>\r\n",
"\r\n",
"\t\t\t\t\r\n",
"\t\t\t\t<data>\r\n",
"\t\t\t\t\t<mode>A02</mode>\r\n",
"\t\t\t\t\t<tmEf>2021-01-01 12:00</tmEf>\r\n",
"\t\t\t\t\t<wf>맑음</wf>\r\n",
"\t\t\t\t\t<tmn>-9</tmn>\r\n",
"\t\t\t\t\t<tmx>-2</tmx>\r\n",
"\t\t\t\t\t<reliability></reliability>\r\n",
"\t\t\t\t\t<rnSt>0</rnSt>\r\n",
"\t\t\t\t</data>\r\n",
"\r\n",
"\t\t\t\t\r\n",
"\t\t\t\t<data>\r\n",
"\t\t\t\t\t<mode>A02</mode>\r\n",
"\t\t\t\t\t<tmEf>2021-01-02 00:00</tmEf>\r\n",
"\t\t\t\t\t<wf>맑음</wf>\r\n",
"\t\t\t\t\t<tmn>-8</tmn>\r\n",
"\t\t\t\t\t<tmx>-1</tmx>\r\n",
"\t\t\t\t\t<reliability></reliability>\r\n",
"\t\t\t\t\t<rnSt>10</rnSt>\r\n",
"\t\t\t\t</data>\r\n",
"\r\n",
"\t\t\t\t\r\n",
"\t\t\t\t<data>\r\n",
"\t\t\t\t\t<mode>A02</mode>\r\n",
"\t\t\t\t\t<tmEf>2021-01-02 12:00</tmEf>\r\n",
"\t\t\t\t\t<wf>맑음</wf>\r\n",
"\t\t\t\t\t<tmn>-8</tmn>\r\n",
"\t\t\t\t\t<tmx>-1</tmx>\r\n",
"\t\t\t\t\t<reliability></reliability>\r\n",
"\t\t\t\t\t<rnSt>0</rnSt>\r\n",
"\t\t\t\t</data>\r\n",
"\r\n",
"\t\t\t\t\r\n",
"\t\t\t\t<data>\r\n",
"\t\t\t\t\t<mode>A02</mode>\r\n",
"\t\t\t\t\t<tmEf>2021-01-03 00:00</tmEf>\r\n",
"\t\t\t\t\t<wf>맑음</wf>\r\n",
"\t\t\t\t\t<tmn>-6</tmn>\r\n",
"\t\t\t\t\t<tmx>-1</tmx>\r\n",
"\t\t\t\t\t<reliability></reliability>\r\n",
"\t\t\t\t\t<rnSt>0</rnSt>\r\n",
"\t\t\t\t</data>\r\n",
"\r\n",
"\t\t\t\t\r\n",
"\t\t\t\t<data>\r\n",
"\t\t\t\t\t<mode>A02</mode>\r\n",
"\t\t\t\t\t<tmEf>2021-01-03 12:00</tmEf>\r\n",
"\t\t\t\t\t<wf>맑음</wf>\r\n",
"\t\t\t\t\t<tmn>-6</tmn>\r\n",
"\t\t\t\t\t<tmx>-1</tmx>\r\n",
"\t\t\t\t\t<reliability></reliability>\r\n",
"\t\t\t\t\t<rnSt>0</rnSt>\r\n",
"\t\t\t\t</data>\r\n",
"\r\n",
"\t\t\t\t\r\n",
"\t\t\t\t<data>\r\n",
"\t\t\t\t\t<mode>A02</mode>\r\n",
"\t\t\t\t\t<tmEf>2021-01-04 00:00</tmEf>\r\n",
"\t\t\t\t\t<wf>맑음</wf>\r\n",
"\t\t\t\t\t<tmn>-6</tmn>\r\n",
"\t\t\t\t\t<tmx>0</tmx>\r\n",
"\t\t\t\t\t<reliability></reliability>\r\n",