-
Notifications
You must be signed in to change notification settings - Fork 0
/
Beautiful Soup 4.x では parser を明示指定しよう - AWS _ PHP _ Python ちょいメモ.html
1161 lines (724 loc) · 41.3 KB
/
Beautiful Soup 4.x では parser を明示指定しよう - AWS _ PHP _ Python ちょいメモ.html
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
<!DOCTYPE html>
<html
lang="ja"
data-admin-domain="//blog.hatena.ne.jp"
data-author="hidehara"
data-avail-langs="ja en"
data-blog="hideharaaws.hatenablog.com"
data-blog-host="hideharaaws.hatenablog.com"
data-blog-is-public="1"
data-blog-name="AWS / PHP / Python ちょいメモ"
data-blog-owner="hidehara"
data-blog-uri="http://hideharaaws.hatenablog.com/"
data-blog-uuid="11696248318756226147"
data-blogs-uri-base="http://hideharaaws.hatenablog.com"
data-brand="hatenablog"
data-data-layer="{"hatenablog":{"brand":"hatenablog","page_id":"entry","pro":"free","analytics":{"brand_property_id":"","non_sampling_property_id":"","property_id":"UA-42811780-1","separated_property_id":"UA-29716941-23"},"admin":{},"permalink_entry":{"hour":"17","categories":"CentOS\tRedHat\tpython\tTIPS","date":"2016-05-06","title":"Beautiful Soup 4.x \u3067\u306f parser \u3092\u660e\u793a\u6307\u5b9a\u3057\u3088\u3046","uri":"http://hideharaaws.hatenablog.com/entry/2016/05/06/175056","author_name":"hidehara"},"blog":{"is_responsive_view":"false","uri":"http://hideharaaws.hatenablog.com/","name":"AWS / PHP / Python \u3061\u3087\u3044\u30e1\u30e2","enable_keyword_link":"true","force_pc_view":"false","is_sleeping":"false","is_public":"true","entry_show_footer_related_entries":"true","enable_ads":"true","disable_ads":"","content_seems_japanese":"true","owner_name":"hidehara","lang":"ja"},"brand_tracking_category":"hatenablog","router_type":"blogs"}}"
data-device="pc"
data-dont-recommend-pro="false"
data-global-domain="https://hatenablog.com"
data-globalheader-color="b"
data-globalheader-type="pc"
data-has-touch-view="1"
data-page="entry"
data-parts-domain="https://hatenablog-parts.com"
data-plus-available=""
data-pro="false"
data-router-type="blogs"
data-sentry-dsn="https://[email protected]/1195218"
data-sentry-environment="production"
data-sentry-sample-rate="0.1"
data-static-domain="https://cdn.blog.st-hatena.com"
data-version="c0b5310d5635c3a7555dbabea9048c83"
itemscope
itemtype="http://schema.org/Article"
data-initial-state="{}"
>
<head prefix="og: http://ogp.me/ns# fb: http://ogp.me/ns/fb# article: http://ogp.me/ns/article#">
<meta charset="utf-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=7; IE=9; IE=10; IE=11" />
<title>Beautiful Soup 4.x では parser を明示指定しよう - AWS / PHP / Python ちょいメモ</title>
<link rel="canonical" href="http://hideharaaws.hatenablog.com/entry/2016/05/06/175056"/>
<meta itemprop="name" content="Beautiful Soup 4.x では parser を明示指定しよう - AWS / PHP / Python ちょいメモ"/>
<meta itemprop="image" content="https://cdn.blog.st-hatena.com/images/theme/og-image-1500.png"/>
<meta property="og:title" content="Beautiful Soup 4.x では parser を明示指定しよう - AWS / PHP / Python ちょいメモ"/>
<meta property="og:type" content="article"/>
<meta property="og:url" content="http://hideharaaws.hatenablog.com/entry/2016/05/06/175056"/>
<meta property="og:image" content="https://ogimage.blog.st-hatena.com/11696248318756226147/6653812171394663483/1462524656"/>
<meta property="og:image:alt" content="Beautiful Soup 4.x では parser を明示指定しよう - AWS / PHP / Python ちょいメモ"/>
<meta property="og:description" content="python で スクレイピングなどを行うときに便利なのが BeautifulSoup (ここでは bs4 を扱っています) 。 parserを選択できる仕様になっていますが、 4.3.xまでは明示的に指定しなくても、適度に動いていました (どう動いてたかは、調べてない)。 こちらにあるように、lxmlやhtml5libがインストールされている場合はそちらが優先されるそうです。 PythonとBeautiful Soupでスクレイピング - Qiita 4.4.x からは明示的に指定しないと、自動選択されるとともにWARNING がでて、何を使って動いてのかを教えてくれます。lxml が自動で…" />
<meta property="og:site_name" content="AWS / PHP / Python ちょいメモ"/>
<meta property="article:published_time" content="1462524656" />
<meta property="article:tag" content="CentOS" />
<meta property="article:tag" content="RedHat" />
<meta property="article:tag" content="python" />
<meta property="article:tag" content="TIPS" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:image" content="https://ogimage.blog.st-hatena.com/11696248318756226147/6653812171394663483/1462524656" /> <meta name="twitter:title" content="Beautiful Soup 4.x では parser を明示指定しよう - AWS / PHP / Python ちょいメモ" /> <meta name="twitter:description" content="python で スクレイピングなどを行うときに便利なのが BeautifulSoup (ここでは bs4 を扱っています) 。 parserを選択できる仕様になっていますが、 4.3.xまでは明示的に指定しなくても、適度に動いていました (どう動いてたかは、調べてない)。 こちらにあるように、lxmlやhtml5li…" /> <meta name="twitter:app:name:iphone" content="はてなブログアプリ" />
<meta name="twitter:app:id:iphone" content="583299321" />
<meta name="twitter:app:url:iphone" content="hatenablog:///open?uri=http%3A%2F%2Fhideharaaws.hatenablog.com%2Fentry%2F2016%2F05%2F06%2F175056" />
<meta name="description" content="python で スクレイピングなどを行うときに便利なのが BeautifulSoup (ここでは bs4 を扱っています) 。 parserを選択できる仕様になっていますが、 4.3.xまでは明示的に指定しなくても、適度に動いていました (どう動いてたかは、調べてない)。 こちらにあるように、lxmlやhtml5libがインストールされている場合はそちらが優先されるそうです。 PythonとBeautiful Soupでスクレイピング - Qiita 4.4.x からは明示的に指定しないと、自動選択されるとともにWARNING がでて、何を使って動いてのかを教えてくれます。lxml が自動で…" />
<meta name="keywords" content="AWS, Amazon Web Service, Cloud, AWS SDK for PHP" />
<script
id="embed-gtm-data-layer-loader"
data-data-layer-page-specific="{"hatenablog":{"blogs_permalink":{"blog_afc_issued":"false","blog_hide_afc_field":"false","brand_hide_afc":"false","blog_hide_afc_func":"false","has_related_entries_with_elasticsearch":"true","entry_afc_issued":"false","is_blog_sleeping":"false","is_author_pro":"false","blog_struct_hide_afc":"false"}}}"
>
(function() {
function loadDataLayer(elem, attrName) {
if (!elem) { return {}; }
var json = elem.getAttribute(attrName);
if (!json) { return {}; }
return JSON.parse(json);
}
var globalVariables = loadDataLayer(
document.documentElement,
'data-data-layer'
);
var pageSpecificVariables = loadDataLayer(
document.getElementById('embed-gtm-data-layer-loader'),
'data-data-layer-page-specific'
);
var variables = [globalVariables, pageSpecificVariables];
if (!window.dataLayer) {
window.dataLayer = [];
}
for (var i = 0; i < variables.length; i++) {
window.dataLayer.push(variables[i]);
}
})();
</script>
<!-- Google Tag Manager -->
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer','GTM-P4CXTW');</script>
<!-- End Google Tag Manager -->
<link rel="shortcut icon" href="http://hideharaaws.hatenablog.com/favicon">
<link rel="apple-touch-icon" href="https://cdn.blog.st-hatena.com/images/touch-icon-iphone-retina.png">
<link rel="icon" sizes="192x192" href="https://cdn.blog.st-hatena.com/images/common/meta-icon-global.png">
<link rel="alternate" type="application/atom+xml" title="Atom" href="http://hideharaaws.hatenablog.com/feed"/>
<link rel="alternate" type="application/rss+xml" title="RSS2.0" href="http://hideharaaws.hatenablog.com/rss"/>
<link rel="alternate" type="application/json+oembed" href="https://hatenablog.com/oembed?url=http%3A%2F%2Fhideharaaws.hatenablog.com%2Fentry%2F2016%2F05%2F06%2F175056&format=json" title="oEmbed Profile of Beautiful Soup 4.x では parser を明示指定しよう"/>
<link rel="alternate" type="text/xml+oembed" href="https://hatenablog.com/oembed?url=http%3A%2F%2Fhideharaaws.hatenablog.com%2Fentry%2F2016%2F05%2F06%2F175056&format=xml" title="oEmbed Profile of Beautiful Soup 4.x では parser を明示指定しよう"/>
<link rel="author" href="http://www.hatena.ne.jp/hidehara/">
<link rel="stylesheet" type="text/css" href="https://cdn.blog.st-hatena.com/css/blog.css?version=2c17f42f85cf323a2a651c1e7c614fe5d45eb18d&env=production"/>
<link rel="stylesheet" type="text/css" href="https://blog.hatena.ne.jp/-/blog_style/11696248318756226147/77f84a6aa24cf3987b30ef9c97f8353201eec1e2"/>
<script> </script>
<style>
div#google_afc_user,
div.google-afc-user-container,
div.google_afc_image,
div.google_afc_blocklink {
display: block !important;
}
</style>
<script src="https://cdn.pool.st-hatena.com/valve/valve.js" async></script>
<script id="test-valve-definition">
var valve = window.valve || [];
valve.push(function(v) {
v.config({
service: 'blog',
content: {
result: 'adtrust',
documentIds: ["blog:entry:6653812171394663483"]
}
});
v.defineDFPSlot({"slotId":"google_afc_user_container_0","unit":"/4374287/blog_user","lazy":"","sizes":[[300,250],[336,280],[468,60],"fluid"]});
v.sealDFPSlots();
});
</script>
</head>
<body class="page-entry category-CentOS category-RedHat category-python category-TIPS">
<div id="header-container">
<div id="sp-suggest" style="display: none;"><a id="sp-suggest-link" href="#">スマートフォン用の表示で見る</a></div>
</div>
<div id="globalheader-container"
data-brand="hatenablog"
>
<iframe id="globalheader" height="37" frameborder="0" allowTransparency="true"></iframe>
</div>
<div id="container">
<div id="container-inner">
<header id="blog-title" data-brand="hatenablog">
<div id="blog-title-inner" >
<div id="blog-title-content">
<h1 id="title"><a href="http://hideharaaws.hatenablog.com/">AWS / PHP / Python ちょいメモ</a></h1>
<h2 id="blog-description">amazon web service , PHP, Python を使ったときのメモ。日本語でググってもわからなかった事を中心に。</h2>
</div>
</div>
</header>
<div id="content" class="hfeed"
>
<div id="content-inner">
<div id="wrapper">
<div id="main">
<div id="main-inner">
<!-- google_ad_section_start -->
<!-- rakuten_ad_target_begin -->
<article class="entry hentry js-entry-article date-first autopagerize_page_element chars-800 words-100 mode-hatena entry-odd" id="entry-6653812171394663483" data-keyword-campaign="" data-uuid="6653812171394663483" data-publication-type="entry">
<div class="entry-inner">
<header class="entry-header">
<div class="date entry-date first">
<a href="http://hideharaaws.hatenablog.com/archive/2016/05/06" rel="nofollow">
<time pubdate datetime="2016-05-06T08:50:56Z" title="2016-05-06T08:50:56Z">
<span class="date-year">2016</span><span class="hyphen">-</span><span class="date-month">05</span><span class="hyphen">-</span><span class="date-day">06</span>
</time>
</a>
</div>
<h1 class="entry-title">
<a href="http://hideharaaws.hatenablog.com/entry/2016/05/06/175056" class="entry-title-link bookmark">Beautiful Soup 4.x では parser を明示指定しよう</a>
</h1>
<div class="entry-categories categories">
<a href="http://hideharaaws.hatenablog.com/archive/category/CentOS" class="entry-category-link category-CentOS">CentOS</a>
<a href="http://hideharaaws.hatenablog.com/archive/category/RedHat" class="entry-category-link category-RedHat">RedHat</a>
<a href="http://hideharaaws.hatenablog.com/archive/category/python" class="entry-category-link category-python">python</a>
<a href="http://hideharaaws.hatenablog.com/archive/category/TIPS" class="entry-category-link category-TIPS">TIPS</a>
</div>
</header>
<div class="entry-content">
<p><a class="keyword" href="http://d.hatena.ne.jp/keyword/python">python</a> で <a class="keyword" href="http://d.hatena.ne.jp/keyword/%A5%B9%A5%AF%A5%EC%A5%A4%A5%D4%A5%F3%A5%B0">スクレイピング</a>などを行うときに便利なのが BeautifulSoup (ここでは bs4 を扱っています) 。<br />
parserを選択できる仕様になっていますが、 4.3.xまでは明示的に指定しなくても、適度に動いていました (どう動いてたかは、調べてない)。 </p><p>こちらにあるように、lxmlやhtml5libがインストールされている場合はそちらが優先されるそうです。</p>
<ul>
<li><a href="http://qiita.com/itkr/items/513318a9b5b92bd56185">PythonとBeautiful Soupでスクレイピング - Qiita</a></li>
</ul><p><br />
4.4.x からは明示的に指定しないと、自動選択されるとともにWARNING がでて、何を使って動いてのかを教えてくれます。</p><p>lxml が自動で選ばれた例)</p>
<blockquote>
<p>soup = BeautifulSoup(html)<br />
..python2.7/site-packages/bs4/__init__.py:166: UserWarning: No parser was explicitly specified, so I'm using the best available HTML parser for this system ("lxml"). This usually isn't a problem, but if you run this code on another system, or in a different virtual environment, it may use a different parser and behave differently.</p>
</blockquote>
<p><br />
ただし、自動選択に依存してしまうと環境によって動作が変わってしまいます。そこで、各parserの特性を理解して、明示的に指定するのが吉ですね。と調べたメモです。</p>
<ul>
<li>BautifulSoup 4.4.1 ( by pip. 2016/5 現在の最新版 )</li>
</ul>
<div class="section">
<h4>パーサーを選ぶ</h4>
<p>HTMLに限定すると次の3つが対応しています。</p>
<table>
<tr>
<th> パーサー</th>
<th> アドバンテージ</th>
<th> ディスアドバンテージ</th>
</tr>
<tr>
<td>html.parser</td>
<td><a class="keyword" href="http://d.hatena.ne.jp/keyword/Python">Python</a>標準で含まれている</td>
<td>寛大ではない</td>
</tr>
<tr>
<td>lxml</td>
<td>高速動作する</td>
<td>外部のCライブラリ依存 (pip導入時には、libxslt, libxml2などのCライブラリが必要)</td>
</tr>
<tr>
<td>html5lib</td>
<td>寛大な動作をする(文法間違いの修正度合い)。 Webブラウザと同じ手法でパース。有効な<a class="keyword" href="http://d.hatena.ne.jp/keyword/HTML5">HTML5</a>を作る。</td>
<td>とても動作が遅い。外部の<a class="keyword" href="http://d.hatena.ne.jp/keyword/Python">Python</a>ライブラリ依存がある</td>
</tr>
</table><p><br />
パースしたいページで試したところ、lxml OR html5lib なれば正常に動作していました。lxmlがいいなと思ったのですが、libxslt が古く "/usr/bin/ld: skipping incompatible" (CentOS6) と言われたので、pip で導入できる html5lib を使うことにしました。簡単に動作比較したところlxmlの方が10倍以上早かったので、Cライブラリのハードルがなければ、そっちが良かったかも(あまり厳密な<a class="keyword" href="http://d.hatena.ne.jp/keyword/HTML5">HTML5</a>コーディングも不要だし)。</p>
<pre class="code lang-python" data-lang="python" data-unlink>soup = BeautifulSoup(html, <span class="synConstant">'html5lib'</span>)
</pre><p>※なお html5lib自体は正常にインストールされていれば import する必要ないです。</p><br />
<p>parser別の特徴の比較。</p>
<ul>
<li><a href="https://www.crummy.com/software/BeautifulSoup/bs4/doc/#installing-a-parser">Installing a parser</a></li>
</ul><p><br />
parser別の動作比較。どれがいいとは言えないが、ポリシーの違いが明確にでる例をあげてくれています。</p>
<ul>
<li><a href="https://www.crummy.com/software/BeautifulSoup/bs4/doc/#differences-between-parsers">Differences between parsers</a></li>
</ul><p>選択に迷った時は、diagnose() で検証も出来るようになっています。</p>
<ul>
<li><a href="https://www.crummy.com/software/BeautifulSoup/bs4/doc/#diagnose">diagnose()</a></li>
</ul><p><br />
最終的には、用途やリソース次第ですね。<br />
<br />
</p>
</div>
<div class="section">
<h4>その他</h4>
<p>以前動いてたという理由で、ワーニングとかを無視して進めるのは良くないなぁと気づきました。はい。</p><p>今回は、開発を手伝ってもらう際、新しい環境構築を行うことになり気づけました。</p><p>急ぎ、README と コード直して、明示的に指定せねば。。。</p>
</div>
</div>
<footer class="entry-footer">
<p class="entry-footer-section">
<span class="author vcard"><span class="fn" data-load-nickname="1" data-user-name="hidehara">hidehara</span></span>
<span class="entry-footer-time"><a href="http://hideharaaws.hatenablog.com/entry/2016/05/06/175056"><time data-relative datetime="2016-05-06T08:50:56Z" title="2016-05-06T08:50:56Z" pubdate class="updated">2016-05-06 17:50</time></a></span>
</p>
<div class="hatena-star-container">
</div>
<div class="hatena-star-metadata" style="display: none">
<a class="hatena-star-permalink" href="http://hideharaaws.hatenablog.com/entry/2016/05/06/175056">Beautiful Soup 4.x では parser を明示指定しよう</a>
</div>
<div class="social-buttons">
<div class="social-button-item">
<a href="https://b.hatena.ne.jp/entry/http://hideharaaws.hatenablog.com/entry/2016/05/06/175056" class="hatena-bookmark-button" data-hatena-bookmark-url="http://hideharaaws.hatenablog.com/entry/2016/05/06/175056" data-hatena-bookmark-layout="vertical-balloon" data-hatena-bookmark-lang="ja" title="この記事をはてなブックマークに追加"><img src="https://b.st-hatena.com/images/entry-button/button-only.gif" alt="この記事をはてなブックマークに追加" width="20" height="20" style="border: none;" /></a>
</div>
<div class="social-button-item">
<div class="fb-share-button" data-layout="box_count" data-href="http://hideharaaws.hatenablog.com/entry/2016/05/06/175056"></div>
</div>
<div class="social-button-item">
<a href="https://twitter.com/share" class="twitter-share-button" data-url="http://hideharaaws.hatenablog.com/entry/2016/05/06/175056" data-count="vertical" data-text="Beautiful Soup 4.x では parser を明示指定しよう - AWS / PHP / Python ちょいメモ" data-lang="ja">Tweet</a>
</div>
</div>
<div class="google-afc-image test-google-rectangle-ads">
<div id="google_afc_user_container_0" class="google-afc-user-container google_afc_blocklink2_5 google_afc_boder" data-test-unit="/4374287/blog_user"></div>
<a href="http://blog.hatena.ne.jp/guide/pro" class="open-pro-modal" data-guide-pro-modal-ad-url="https://hatenablog.com/guide/pro/modal/ad">広告を非表示にする</a>
</div>
<div class="customized-footer">
<div class="entry-footer-modules" id="entry-footer-secondary-modules">
<div class="hatena-module hatena-module-related-entries" >
<!-- Hatena-Epic-has-related-entries-with-elasticsearch:true -->
<div class="hatena-module-title">
関連記事
</div>
<div class="hatena-module-body">
<ul class="related-entries hatena-urllist urllist-with-thumbnails">
<li class="urllist-item related-entries-item">
<div class="urllist-item-inner related-entries-item-inner">
<div class="urllist-date-link related-entries-date-link">
<a href="http://hideharaaws.hatenablog.com/archive/2016/10/03" rel="nofollow">
<time pubdate datetime="2016-10-03T08:45:45Z" title="2016-10-03T08:45:45Z">
2016-10-03
</time>
</a>
</div>
<a href="http://hideharaaws.hatenablog.com/entry/2016/10/03/174545" class="urllist-title-link related-entries-title-link urllist-title related-entries-title">"/usr/bin/ld: cannot find -lxslt" が出て pip で lxml が…</a>
<div class="urllist-entry-body related-entries-entry-body">長年の問題が解決した。。。(発覚してから1年ほどで、解決に…</div>
</div>
</li>
<li class="urllist-item related-entries-item">
<div class="urllist-item-inner related-entries-item-inner">
<div class="urllist-date-link related-entries-date-link">
<a href="http://hideharaaws.hatenablog.com/archive/2016/04/14" rel="nofollow">
<time pubdate datetime="2016-04-14T00:46:41Z" title="2016-04-14T00:46:41Z">
2016-04-14
</time>
</a>
</div>
<a href="http://hideharaaws.hatenablog.com/entry/2016/04/14/094641" class="urllist-title-link related-entries-title-link urllist-title related-entries-title">homebrew direnv には homebrew python が必要?</a>
<div class="urllist-entry-body related-entries-entry-body">(4/27 追記) homebew版 python が必要ではなく、direnv で使…</div>
</div>
</li>
<li class="urllist-item related-entries-item">
<div class="urllist-item-inner related-entries-item-inner">
<div class="urllist-date-link related-entries-date-link">
<a href="http://hideharaaws.hatenablog.com/archive/2015/12/10" rel="nofollow">
<time pubdate datetime="2015-12-09T15:00:00Z" title="2015-12-09T15:00:00Z">
2015-12-10
</time>
</a>
</div>
<a href="http://hideharaaws.hatenablog.com/entry/django-upgrade-16to18" class="urllist-title-link related-entries-title-link urllist-title related-entries-title">Django アップグレード手順まとめ 1.6.x to 1.8.x</a>
<div class="urllist-entry-body related-entries-entry-body">この記事は、Python その2 Advent Calendar 2015 の10日目の記…</div>
</div>
</li>
<li class="urllist-item related-entries-item">
<div class="urllist-item-inner related-entries-item-inner">
<div class="urllist-date-link related-entries-date-link">
<a href="http://hideharaaws.hatenablog.com/archive/2015/10/22" rel="nofollow">
<time pubdate datetime="2015-10-22T10:13:42Z" title="2015-10-22T10:13:42Z">
2015-10-22
</time>
</a>
</div>
<a href="http://hideharaaws.hatenablog.com/entry/2015/10/22/191342" class="urllist-title-link related-entries-title-link urllist-title related-entries-title">dateutil で 曖昧な日付をパースする </a>
<div class="urllist-entry-body related-entries-entry-body">python の dateutil ライブラリ。標準の datetime.strptime で…</div>
</div>
</li>
<li class="urllist-item related-entries-item">
<div class="urllist-item-inner related-entries-item-inner">
<div class="urllist-date-link related-entries-date-link">
<a href="http://hideharaaws.hatenablog.com/archive/2015/10/06" rel="nofollow">
<time pubdate datetime="2015-10-06T04:18:48Z" title="2015-10-06T04:18:48Z">
2015-10-06
</time>
</a>
</div>
<a href="http://hideharaaws.hatenablog.com/entry/2015/10/06/131848" class="urllist-title-link related-entries-title-link urllist-title related-entries-title">self と cls とかが何か気になって調べてみた + @staticmethod</a>
<div class="urllist-entry-body related-entries-entry-body">python 書いてると”ふと”気になる self と cls を調べメモ。な…</div>
</div>
</li>
</ul>
</div>
</div>
</div>
</div>
<div class="comment-box">
<ul class="comment">
<li class="read-more-comments" style="display: none;"><a>もっと読む</a></li>
</ul>
<a class="leave-comment-title">コメントを書く</a>
</div>
</footer>
</div>
</article>
<!-- rakuten_ad_target_end -->
<!-- google_ad_section_end -->
<div class="pager pager-permalink permalink">
<span class="pager-prev">
<a href="http://hideharaaws.hatenablog.com/entry/2016/09/09/143957" rel="prev">
<span class="pager-arrow">« </span>
管理時に欲しくなる yum オプションをまと…
</a>
</span>
<span class="pager-next">
<a href="http://hideharaaws.hatenablog.com/entry/2016/04/27/090410" rel="next">
Mac に pythonz 入れる前にやっておくこと
<span class="pager-arrow"> »</span>
</a>
</span>
</div>
</div>
</div>
<aside id="box1">
<div id="box1-inner">
</div>
</aside>
</div><!-- #wrapper -->
<aside id="box2">
<div id="box2-inner">
<div class="hatena-module hatena-module-category">
<div class="hatena-module-title">
カテゴリー
</div>
<div class="hatena-module-body">
<ul class="hatena-urllist">
<li>
<a href="http://hideharaaws.hatenablog.com/archive/category/TIPS">
TIPS (51)
</a>
</li>
<li>
<a href="http://hideharaaws.hatenablog.com/archive/category/python">
python (34)
</a>
</li>
<li>
<a href="http://hideharaaws.hatenablog.com/archive/category/Django">
Django (25)
</a>
</li>
<li>
<a href="http://hideharaaws.hatenablog.com/archive/category/PHP">
PHP (20)
</a>
</li>
<li>
<a href="http://hideharaaws.hatenablog.com/archive/category/Ubuntu">
Ubuntu (17)
</a>
</li>
<li>
<a href="http://hideharaaws.hatenablog.com/archive/category/%E9%81%8B%E7%94%A8">
運用 (16)
</a>
</li>
<li>
<a href="http://hideharaaws.hatenablog.com/archive/category/SDK">
SDK (15)
</a>
</li>
<li>
<a href="http://hideharaaws.hatenablog.com/archive/category/CentOS">
CentOS (13)
</a>
</li>
<li>
<a href="http://hideharaaws.hatenablog.com/archive/category/RedHat">
RedHat (10)
</a>
</li>
<li>
<a href="http://hideharaaws.hatenablog.com/archive/category/%E3%83%89%E3%82%AD%E3%83%A5%E3%83%A1%E3%83%B3%E3%83%88">
ドキュメント (10)
</a>
</li>
<li>
<a href="http://hideharaaws.hatenablog.com/archive/category/CakePHP2.x">
CakePHP2.x (10)
</a>
</li>
<li>
<a href="http://hideharaaws.hatenablog.com/archive/category/%E3%82%A8%E3%83%A9%E3%83%BC">
エラー (8)
</a>
</li>
<li>
<a href="http://hideharaaws.hatenablog.com/archive/category/Apache2.4">
Apache2.4 (6)
</a>
</li>
<li>
<a href="http://hideharaaws.hatenablog.com/archive/category/sphinx">
sphinx (5)
</a>
</li>
<li>
<a href="http://hideharaaws.hatenablog.com/archive/category/Mac">
Mac (5)
</a>
</li>
<li>
<a href="http://hideharaaws.hatenablog.com/archive/category/%E9%96%8B%E7%99%BA">
開発 (4)
</a>
</li>
<li>
<a href="http://hideharaaws.hatenablog.com/archive/category/mysql">
mysql (3)
</a>
</li>
<li>
<a href="http://hideharaaws.hatenablog.com/archive/category/Git">
Git (3)
</a>
</li>
<li>
<a href="http://hideharaaws.hatenablog.com/archive/category/EMR">
EMR (3)
</a>
</li>
<li>
<a href="http://hideharaaws.hatenablog.com/archive/category/S3">
S3 (3)
</a>
</li>
<li>
<a href="http://hideharaaws.hatenablog.com/archive/category/Win">
Win (2)
</a>
</li>
<li>
<a href="http://hideharaaws.hatenablog.com/archive/category/SDB">
SDB (1)
</a>
</li>
<li>
<a href="http://hideharaaws.hatenablog.com/archive/category/vim">
vim (1)
</a>
</li>
<li>
<a href="http://hideharaaws.hatenablog.com/archive/category/EC2">
EC2 (1)
</a>
</li>
</ul>
</div>
</div>
<div class="hatena-module hatena-module-profile">
<div class="hatena-module-title">
プロフィール
</div>
<div class="hatena-module-body">
<a href="http://hideharaaws.hatenablog.com/about" class="profile-icon-link">
<img src="https://cdn.profile-image.st-hatena.com/users/hidehara/profile.png?1447721487"
alt="id:hidehara" class="profile-icon" />
</a>
<div class="hatena-follow-button-box btn-subscribe js-hatena-follow-button-box"
>
<a href="#" class="hatena-follow-button js-hatena-follow-button">
<span class="subscribing">
<span class="foreground">読者です</span>
<span class="background">読者をやめる</span>
</span>
<span class="unsubscribing" data-track-name="profile-widget-subscribe-button" data-track-once>
<span class="foreground">読者になる</span>
<span class="background">読者になる</span>
</span>
</a>
<div class="subscription-count-box js-subscription-count-box">
<i></i>
<u></u>
<span class="subscription-count js-subscription-count">
</span>
</div>
</div>
</div>
</div>
<div class="hatena-module hatena-module-recent-entries ">
<div class="hatena-module-title">
<a href="http://hideharaaws.hatenablog.com/archive">
最新記事
</a>
</div>
<div class="hatena-module-body">
<ul class="recent-entries hatena-urllist ">
<li class="urllist-item recent-entries-item">
<div class="urllist-item-inner recent-entries-item-inner">
<a href="http://hideharaaws.hatenablog.com/entry/2019/11/23/111229" class="urllist-title-link recent-entries-title-link urllist-title recent-entries-title">Django admin カスタマイズ</a>
</div>
</li>
<li class="urllist-item recent-entries-item">
<div class="urllist-item-inner recent-entries-item-inner">
<a href="http://hideharaaws.hatenablog.com/entry/2019/09/19/200029" class="urllist-title-link recent-entries-title-link urllist-title recent-entries-title">Firefox on CUI 今と昔</a>
</div>
</li>
<li class="urllist-item recent-entries-item">
<div class="urllist-item-inner recent-entries-item-inner">
<a href="http://hideharaaws.hatenablog.com/entry/2019/08/25/233021" class="urllist-title-link recent-entries-title-link urllist-title recent-entries-title">firefox on Ubuntu 14.04.6 が落ちる</a>
</div>
</li>
<li class="urllist-item recent-entries-item">
<div class="urllist-item-inner recent-entries-item-inner">
<a href="http://hideharaaws.hatenablog.com/entry/2018/06/18/122725" class="urllist-title-link recent-entries-title-link urllist-title recent-entries-title">Python が 参照する証明書ストアを掘ってみた (CentOS 版)</a>
</div>
</li>
<li class="urllist-item recent-entries-item">
<div class="urllist-item-inner recent-entries-item-inner">
<a href="http://hideharaaws.hatenablog.com/entry/2018/06/18/110053" class="urllist-title-link recent-entries-title-link urllist-title recent-entries-title">HTTPS調べるときに便利なOpenSSLの使い方 <s_client編></a>
</div>
</li>
</ul>
</div>
</div>
<div class="hatena-module hatena-module-search-box">
<div class="hatena-module-title">
検索
</div>
<div class="hatena-module-body">
<form class="search-form" role="search" action="http://hideharaaws.hatenablog.com/search" method="get">
<input type="text" name="q" class="search-module-input" value="" placeholder="記事を検索" required>
<input type="submit" value="検索" class="search-module-button" />
</form>
</div>
</div>
<div class="hatena-module hatena-module-links">
<div class="hatena-module-title">
リンク
</div>
<div class="hatena-module-body">
<ul class="hatena-urllist">
<li>
<a href="http://aws.amazon.com/jp/">AWS (JP)</a>
</li>
</ul>
</div>
</div>
<div class="hatena-module hatena-module-archive" data-archive-type="default" data-archive-url="http://hideharaaws.hatenablog.com/archive">
<div class="hatena-module-title">
<a href="http://hideharaaws.hatenablog.com/archive">月別アーカイブ</a>
</div>
<div class="hatena-module-body">
</div>
</div>
</div>
</aside>
</div>
</div>
</div>
</div>
<footer id="footer" data-brand="hatenablog">
<div id="footer-inner">
<div style="display:none !important" class="guest-footer js-guide-register test-blogs-register-guide" data-action="guide-register">
<div class="guest-footer-content">
<h3>はてなブログをはじめよう!</h3>
<p>hideharaさんは、はてなブログを使っています。あなたもはてなブログをはじめてみませんか?</p>
<div class="guest-footer-btn-container">
<div class="guest-footer-btn">
<a class="btn btn-register" href="http://blog.hatena.ne.jp/register?via=200227" target="_blank">はてなブログをはじめる(無料)</a>
</div>
<div class="guest-footer-btn">
<a href="https://hatenablog.com/guide" target="_blank">はてなブログとは</a>