Python » 履歴 » バージョン 2
kanata, 2025/04/13 15:53
1 | 1 | kanata | # Python |
---|---|---|---|
2 | |||
3 | {{toc}} |
||
4 | |||
5 | # Study |
||
6 | |||
7 | All Algorithms implemented in Python |
||
8 | https://github.com/TheAlgorithms/Python |
||
9 | |||
10 | >Pythonで全てのアルゴリズムが実装されている |
||
11 | |||
12 | Cracking Codes with Python |
||
13 | http://inventwithpython.com/cracking/ |
||
14 | |||
15 | Python ヒッチハイク・ガイド |
||
16 | http://python-guideja.readthedocs.io/ja/latest/ |
||
17 | |||
18 | Lean Baseball - Python初心者がチェックしておいたほうが良いサイト・本・イベントなど. |
||
19 | http://shinyorke.hatenablog.com/entry/2016/05/30/194346 |
||
20 | |||
21 | 2018年版・この処理Pythonでどう書く? |
||
22 | https://www.m3tech.blog/entry/python-snippets |
||
23 | |||
24 | Python言語による実務で使える100の最適化問題 |
||
25 | https://mikiokubo.github.io/opt100/ |
||
26 | |||
27 | |||
28 | |||
29 | |||
30 | |||
31 | |||
32 | # Blog |
||
33 | |||
34 | oneshotlife-pythonのブログ |
||
35 | http://oneshotlife-python.hatenablog.com/ |
||
36 | |||
37 | |||
38 | |||
39 | # 環境構築 |
||
40 | |||
41 | ## AnacondaとJupyterのインストール |
||
42 | |||
43 | 最近はAnacondaというのがあってpipやvirtualenvより良さげ。 |
||
44 | 後述するpipやvirtualenvを入れる必要が無くなった(入れてもいい)。 |
||
45 | |||
46 | Jupyterは、Markdown形式のメモと一緒にWeb上で実行&保存できちゃうステキ機能。 |
||
47 | |||
48 | 詳細は[[Jupyter]]参照。 |
||
49 | |||
50 | Jupyter不要な人は、minicondaインストールのとこまでやって、以降のJupyterの所は無視してよい。 |
||
51 | |||
52 | |||
53 | ## pipのインストール |
||
54 | |||
55 | ``` |
||
56 | # curl -kL https://raw.github.com/pypa/pip/master/contrib/get-pip.py | python |
||
57 | ``` |
||
58 | |||
59 | ## virtualenvのインストール |
||
60 | |||
61 | ``` |
||
62 | # pip install virtualenv |
||
63 | ``` |
||
64 | |||
65 | ### 仮想環境構築 |
||
66 | |||
67 | プロジェクトのディレクトリを作る。 |
||
68 | |||
69 | ``` |
||
70 | $ mkdir PythonSandBox |
||
71 | ``` |
||
72 | |||
73 | virtualenvコマンドを実行 |
||
74 | |||
75 | ``` |
||
76 | $ virtualenv --no-site-packages PythonSandBox |
||
77 | ``` |
||
78 | |||
79 | 仮想環境 起動 |
||
80 | |||
81 | ``` |
||
82 | $ cd PythonSandBox |
||
83 | $ source bin/activate |
||
84 | (PythonSandBox)% |
||
85 | ``` |
||
86 | |||
87 | 仮想環境 終了 |
||
88 | |||
89 | ``` |
||
90 | (PythonSandBox)% deactivate |
||
91 | ``` |
||
92 | |||
93 | |||
94 | |||
95 | # Gadgets |
||
96 | |||
97 | ## PythonでGMail |
||
98 | |||
99 | ※まだ動作をきちんと確認してない |
||
100 | |||
101 | ``` |
||
102 | # pip install gmail |
||
103 | ``` |
||
104 | |||
105 | ```python |
||
106 | #!/usr/local/bin/python |
||
107 | # -*- coding: utf-8 -*- |
||
108 | |||
109 | from gmail import * |
||
110 | gmail_client = GMail("sample@gmail.com", "password") |
||
111 | gmail_client.connect() |
||
112 | gmail_client.send(Message(subject="タイトル", to="宛先sample@example.com", text="本文")) |
||
113 | ``` |
||
114 | |||
115 | ## Beautiful soup (HTML/XMLのパーサー) |
||
116 | |||
117 | HTMLやXMLファイルからデータを取得するPythonのライブラリです。あなたの好きなパーサー(構文解析器)を使って、パースツリー(構文木)の探索、検索、修正を行います。 |
||
118 | |||
119 | Sample |
||
120 | |||
121 | ```python |
||
122 | #!/usr/local/bin/python |
||
123 | # -*- coding: utf-8 -*- |
||
124 | |||
125 | from bs4 import BeautifulSoup |
||
126 | |||
127 | doc = ['<html><head><title>Page title</title></head>', |
||
128 | '<body><p id="firstpara" align="center">This is paragraph <b>one</b>.', |
||
129 | '<p id="secondpara" align="blah">This is paragraph <b>two</b>.', |
||
130 | '</html>'] |
||
131 | |||
132 | data = ''.join(doc) |
||
133 | |||
134 | html = BeautifulSoup(data) |
||
135 | print(html) # htmlソースを表示する |
||
136 | print(html.title) # タイトルタグ |
||
137 | print(html.title.string) # タイトルタグ内の文字 |
||
138 | print(html.find('h1')) # h1タグ |
||
139 | print(html.find_all('link')) # 全てのlinkタグのリスト |
||
140 | print(html.find_all('link', attrs={'href': 'style.css'})) # linkタグかつhrefがstyle.cssのもののリスト |
||
141 | |||
142 | ``` |
||
143 | |||
144 | ## OCR |
||
145 | |||
146 | ひよこになりたい - Python3でOCR(pytesseract)を使えるようにする |
||
147 | http://kondou.com/BS4/ |
||
148 | |||
149 | ## 形態素解析 |
||
150 | |||
151 | CUBE SUGAR CONTAINER - Python: Janome で手軽に形態素解析する |
||
152 | http://blog.amedama.jp/entry/2015/11/26/210515 |
||
153 | |||
154 | ## 他人の過去の全ツイートを取得するコード |
||
155 | |||
156 | 歩いたら休め - 【Python】Twilog + Pythonで他人の過去の全ツイートを取得するコード |
||
157 | http://kiito.hatenablog.com/entry/2015/11/17/041808 |
||
158 | |||
159 | ## 画像分類のサンプル |
||
160 | |||
161 | kivantium活動日記 - 大抵の画像分類タスクはこのコードを少し変えるだけでできるかと思います |
||
162 | http://kivantium.hateblo.jp/entry/2015/11/18/233834 |
||
163 | |||
164 | |||
165 | |||
166 | # Coding |
||
167 | |||
168 | Kesin's diary - Pythonらしいコードの書き方 |
||
169 | http://kesin.hatenablog.com/entry/2013/05/12/004541 |
||
170 | |||
171 | Codecademy - JavaScriptやPython等を対話形式でコードを学べる学習サイト |
||
172 | https://www.codecademy.com/ |
||
173 | |||
174 | |||
175 | |||
176 | # Decompile |
||
177 | |||
178 | wibiti/uncompyle2 |
||
179 | https://github.com/wibiti/uncompyle2 |
||
180 | |||
181 | pycを読む(アセンブリ味) |
||
182 | http://poppycompass.hatenablog.jp/entry/2018/09/24/170212 |
||
183 | |||
184 | pycを読む(スクリプト味) |
||
185 | http://poppycompass.hatenablog.jp/entry/2018/09/27/043358 |
||
186 | |||
187 | |||
188 | |||
189 | |||
190 | |||
191 | # Pythonお試し環境 |
||
192 | |||
193 | https://bit.run/ |
||
194 | |||
195 | http://ideone.com/ |
||
196 | |||
197 | https://paiza.io/ |
||
198 | |||
199 | http://www.tutorialspoint.com/codingground.htm |
||
200 | |||
201 | glot.io - 様々な言語のコードスニペットが共有できるサイト |
||
202 | https://glot.io/ |
||
203 | |||
204 | # Memo |
||
205 | |||
206 | Java vs Python |
||
207 | http://blogs.perceptionsystem.com/images/JavaVsPython.png?utm_content=buffer3816a&utm_medium=social&utm_source=twitter.com&utm_campaign=buffer |
||
208 | |||
209 | GitHub - bakfoo/awesome-pysci |
||
210 | https://github.com/bakfoo/awesome-pysci |
||
211 | |||
212 | >Pythonの科学スタックをまとめました.開発コードの更新が二年以上ない重要でないライブラリ・パッケージは基本的に排除するようにしています. |
||
213 | |||
214 | POSTD - Pythonの新しい文字列フォーマット : %記号、str.format()から文字列補間へ |
||
215 | http://postd.cc/new-string-formatting-in-python/ |
||
216 | |||
217 | CUBE SUGAR CONTAINER - Python のバージョン毎の違いとその吸収方法について |
||
218 | http://blog.amedama.jp/entry/2015/09/06/204552 |
||
219 | |||
220 | 俺的備忘録 〜なんかいろいろ〜 - Pythonによるssh自動接続用スクリプト(試作) 鍵認証ログイン対応 |
||
221 | http://orebibou.com/2015/11/python%E3%81%AB%E3%82%88%E3%82%8Bssh%E8%87%AA%E5%8B%95%E6%8E%A5%E7%B6%9A%E7%94%A8%E3%82%B9%E3%82%AF%E3%83%AA%E3%83%97%E3%83%88%E8%A9%A6%E4%BD%9C-%E9%8D%B5%E8%AA%8D%E8%A8%BC%E3%83%AD%E3%82%B0/ |
||
222 | http://orebibou.com/2015/11/python%E3%81%AB%E3%82%88%E3%82%8Bssh%E8%87%AA%E5%8B%95%E6%8E%A5%E7%B6%9A%E7%94%A8%E3%82%B9%E3%82%AF%E3%83%AA%E3%83%97%E3%83%88%E8%A9%A6%E4%BD%9C-%E3%82%BF%E3%82%A4%E3%83%A0%E3%82%B9%E3%82%BF/ |
||
223 | |||
224 | jtwp470.net |
||
225 | https://jtwp470.net/ |
||
226 | |||
227 | ispy - ispy is a python tool for monitoring the output of terminals and processes. |
||
228 | https://github.com/dellis23/ispy |
||
229 | |||
230 | 俺的備忘録 〜なんかいろいろ〜 - PythonのSubprocessでコマンドの実行結果を出力させない |
||
231 | https://orebibou.com/2016/12/python%e3%81%aesubprocess%e3%81%a7%e3%82%b3%e3%83%9e%e3%83%b3%e3%83%89%e3%81%ae%e5%ae%9f%e8%a1%8c%e7%b5%90%e6%9e%9c%e3%82%92%e5%87%ba%e5%8a%9b%e3%81%95%e3%81%9b%e3%81%aa%e3%81%84/ |
||
232 | |||
233 | pandas入門 |
||
234 | http://www.yunabe.jp/docs/pandas_basics.html |
||
235 | |||
236 | |||
237 | |||
238 | |||
239 | |||
240 | |||
241 | |||
242 | |||
243 | |||
244 | |||
245 | |||
246 | |||
247 | ## 『サイバーセキュリティプログラミング』のサポートページ |
||
248 | |||
249 | https://github.com/oreilly-japan/black-hat-python-jp-support |
||
250 | |||
251 | ## kippoの導入メモ |
||
252 | |||
253 | [[kippoBrinker]]参照 |
||
254 | |||
255 | |||
256 | |||
257 | |||
258 | |||
259 | |||
260 | |||
261 | |||
262 | |||
263 | |||
264 | |||
265 | |||
266 | |||
267 | ## 2017/9/12 BookMark |
||
268 | |||
269 | 0xC Python Tutorial- Python Malware |
||
270 | http://www.primalsecurity.net/0xc-python-tutorial-python-malware/ |
||
271 | |||
272 | Creating Excel files with Python and XlsxWriter — XlsxWriter Documentation |
||
273 | http://xlsxwriter.readthedocs.org/index.html |
||
274 | |||
275 | C言語アプリケーションにPyPyを埋め込む プログラミング POSTD |
||
276 | http://postd.cc/embedding-pypy-in-a-c-application/ |
||
277 | |||
278 | Deep Learning実習 |
||
279 | https://kyamagu.github.io/dl-workshop-2016/ |
||
280 | |||
281 | Effective Pythonを読んで心に響いたこと - MyEnigma |
||
282 | http://myenigma.hatenablog.com/entry/2016/03/26/213823 |
||
283 | |||
284 | GitHub - athre0zwasm- WebAssembly decoder & disassembler library |
||
285 | https://github.com/athre0z/wasm |
||
286 | |||
287 | GitHub - bakfooawesome-pysci |
||
288 | https://github.com/bakfoo/awesome-pysci |
||
289 | |||
290 | GitHub - inaz2jythonrunner- Run python script everywhere with GUI |
||
291 | https://github.com/inaz2/jythonrunner |
||
292 | |||
293 | GitHub - nvbnthefuck- Magnificent app which corrects your previous console command. |
||
294 | https://github.com/nvbn/thefuck |
||
295 | |||
296 | GitHub - pleedpyqemu- Dynamic binary instrumentation based crypto detection framework. Implementation of http-ieeexplore.ieee.orgstampstamp.jsptp=&arnumber=6461007&isnumber=6460999 |
||
297 | https://github.com/pleed/pyqemu |
||
298 | |||
299 | GitHub - vintaawesome-python- A curated list of awesome Python frameworks, libraries, software and resources |
||
300 | https://github.com/vinta/awesome-python |
||
301 | |||
302 | Google、PythonのコードをGo言語に変換する「Grumpy」を公開:CodeZine(コードジン) |
||
303 | http://codezine.jp/article/detail/9918 |
||
304 | |||
305 | JupyterでTensorFlowが使えるDockerイメージ - めもめも |
||
306 | http://enakai00.hatenablog.com/entry/2016/03/28/131157 |
||
307 | |||
308 | Jupyter事始め - Qiita |
||
309 | http://qiita.com/taka4sato/items/2c3397ff34c440044978 |
||
310 | |||
311 | Kaitai Struct- declarative binary format parsing language |
||
312 | http://kaitai.io/ |
||
313 | |||
314 | OWASP ZAP�でPythonを学んでZAPを学ぼう!!(APIで遊ぶ話です) - SlideSnack |
||
315 | http://share.snacktools.com/FE5B9776AED/b7c8yj3c |
||
316 | |||
317 | PIPEによるプロセス間通信とselect, poll, epollの話 - c-bata web |
||
318 | http://nwpct1.hatenablog.com/entry/interprocess-communication |
||
319 | |||
320 | Pandasを使ったデータ操作の基本 - ぴよぴよ.py |
||
321 | http://cocodrips.hateblo.jp/entry/2017/07/30/185430 |
||
322 | |||
323 | PhantomJSとか使わずに簡単なJavaScriptを処理してスクレイピング - orangain flavor |
||
324 | http://orangain.hatenablog.com/entry/duktape |
||
325 | |||
326 | PyScan-Scanner - Vulnerability Scanner With Custom Payload |
||
327 | http://www.kitploit.com/2016/02/pyscan-scanner-vulnerability-scanner.html?utm_source=dlvr.it&utm_medium=twitter |
||
328 | |||
329 | Python - Automating Tasks - Reading and Writing Files(Mad Libs) Kamimura's blog |
||
330 | http://sitekamimura.blogspot.jp/2016/01/python-automating-tasks-reading-and_30.html |
||
331 | |||
332 | Python Cheat Sheets |
||
333 | https://drive.google.com/folderview?id=0ByIrJAE4KMTtaGhRcXkxNHhmY2M |
||
334 | |||
335 | Python Plotting for Exploratory Analysis |
||
336 | http://pythonplot.com/ |
||
337 | |||
338 | Python arsenal for RE |
||
339 | http://pythonarsenal.com/ |
||
340 | |||
341 | Python での統計処理メモ - hidekatsu-izuno 日々の記録 |
||
342 | http://hidekatsu-izuno.hatenablog.com/entry/2017/07/22/232223 |
||
343 | |||
344 | Python でやみつき reduce CUBE SUGAR STORAGE |
||
345 | http://momijiame.tumblr.com/post/62720384334/python-%E3%81%A7%E3%82%84%E3%81%BF%E3%81%A4%E3%81%8D-reduce |
||
346 | |||
347 | Python と Ruby と typing - methaneのブログ |
||
348 | http://methane.hatenablog.jp/entry/ruby-python-go-typing |
||
349 | |||
350 | Python の CUI デバッガ PudB が便利すぎた件 CUBE SUGAR STORAGE |
||
351 | http://momijiame.tumblr.com/post/79011616659/python-%E3%81%AE-cui-%E3%83%87%E3%83%90%E3%83%83%E3%82%AC-pudb-%E3%81%8C%E4%BE%BF%E5%88%A9%E3%81%99%E3%81%8E%E3%81%9F%E4%BB%B6 |
||
352 | |||
353 | Python- (今のところ) Flask で Request#get_data(as_text=True) は使わない方が良い - CUBE SUGAR CONTAINER |
||
354 | http://blog.amedama.jp/entry/2016/06/11/225137 |
||
355 | |||
356 | Python- doctest を書いてみよう - CUBE SUGAR CONTAINER |
||
357 | http://blog.amedama.jp/entry/2016/01/25/212244 |
||
358 | |||
359 | Python- pipdeptree でパッケージの依存関係を調べる - CUBE SUGAR CONTAINER |
||
360 | http://blog.amedama.jp/entry/2016/05/29/182402 |
||
361 | |||
362 | Python- pipe を使った Infix プログラミング - CUBE SUGAR CONTAINER |
||
363 | http://blog.amedama.jp/entry/2016/02/16/215744 |
||
364 | |||
365 | Python- profilecProfile モジュールでボトルネックを調べる - CUBE SUGAR CONTAINER |
||
366 | http://blog.amedama.jp/entry/2016/08/30/214718 |
||
367 | |||
368 | Python- python-fire の CLI 自動生成を試す - CUBE SUGAR CONTAINER |
||
369 | http://blog.amedama.jp/entry/2017/03/07/223319 |
||
370 | |||
371 | Python- ソケットプログラミングのアーキテクチャパターン - CUBE SUGAR CONTAINER |
||
372 | http://blog.amedama.jp/entry/2017/03/29/080000 |
||
373 | |||
374 | Python- 正規表現の基本 – 最長、最短マッチング |
||
375 | http://www.yukun.info/blog/2008/08/python-regexp-greedy-reluctant-match.html |
||
376 | |||
377 | Python- 環境ごとの依存ライブラリをセットアップスクリプトの extras_require で管理する - CUBE SUGAR CONTAINER |
||
378 | http://blog.amedama.jp/entry/2016/06/17/224532 |
||
379 | |||
380 | Python- 相関行列を計算してヒートマップを描いてみる - CUBE SUGAR CONTAINER |
||
381 | http://blog.amedama.jp/entry/2017/04/18/230431 |
||
382 | |||
383 | Python-Fire is very cool. - じゃあ、おうちで学べる |
||
384 | http://syu-m-5151.hatenablog.com/entry/2017/03/08/105320 |
||
385 | |||
386 | PythonからJavaを呼び出す簡単な方法 - Qiita |
||
387 | http://qiita.com/riverwell/items/e90cbbfdac439e6e9d30 |
||
388 | |||
389 | PythonでAmazonの本・Kindle本のカテゴリーを取得する #Python #WebScraping - oneshotlife-pythonのブログ |
||
390 | http://oneshotlife-python.hatenablog.com/entry/Python%E3%81%A7Amazon%E3%81%AE%E6%9C%AC%E3%83%BBKindle%E6%9C%AC%E3%81%AE%E3%82%AB%E3%83%86%E3%82%B4%E3%83%AA%E3%83%BC%E3%82%92%E5%8F%96%E5%BE%97%E3%81%99%E3%82%8B_%23Python_%23WebScraping |
||
391 | |||
392 | PythonでPandasのPlot機能を使えばデータ加工からグラフ作成までマジでシームレス - Qiita |
||
393 | http://qiita.com/hik0107/items/de5785f680096df93efa |
||
394 | |||
395 | Pythonでgrepやawkのような行の抽出を行う 俺的備忘録 〜なんかいろいろ〜 |
||
396 | https://orebibou.com/2016/12/python%e3%81%a7grep%e3%82%84awk%e3%81%ae%e3%82%88%e3%81%86%e3%81%aa%e8%a1%8c%e3%81%ae%e6%8a%bd%e5%87%ba%e3%82%92%e8%a1%8c%e3%81%86/ |
||
397 | |||
398 | Pythonでツイート収集 - Qiita |
||
399 | http://qiita.com/OvKNyRgir3BuEJj/items/31eba16bb84ed3669201 |
||
400 | |||
401 | Pythonでデザインパターンを勉強するならこのサイトを見るといいよ。 - oneshotlife-pythonのブログ |
||
402 | http://oneshotlife-python.hatenablog.com/entry/2016/03/21/225915 |
||
403 | |||
404 | Pythonでネイティブコードを実行する - ももいろテクノロジー |
||
405 | http://inaz2.hatenablog.com/entry/2016/05/17/182841 |
||
406 | |||
407 | Pythonで楽天ウェブサービスを使って書籍情報を取得する #Python - oneshotlife-pythonのブログ |
||
408 | http://oneshotlife-python.hatenablog.com/entry/2016/02/22/101642 |
||
409 | |||
410 | Pythonで食っている俺が語るPythonの魅力(1)生産性や速度 #Python - oneshotlife-pythonのブログ |
||
411 | http://oneshotlife-python.hatenablog.com/entry/Python%E3%81%A7%E9%A3%9F%E3%81%A3%E3%81%A6%E3%81%84%E3%82%8B%E4%BF%BA%E3%81%8C%E8%AA%9E%E3%82%8BPython%E3%81%AE%E9%AD%85%E5%8A%9B%281%29%E7%94%9F%E7%94%A3%E6%80%A7%E3%82%84%E9%80%9F%E5%BA%A6 |
||
412 | |||
413 | Pythonによるデータ可視化ライブラリ「folium」がとても使いやすい - Qiita |
||
414 | http://qiita.com/momotasasaki/items/3b878f01d489a32e40c3 |
||
415 | |||
416 | Pythonに咬まれるな - 注意すべきセキュリティリスクのリスト プログラミング POSTD |
||
417 | http://postd.cc/a-bite-of-python/ |
||
418 | |||
419 | PythonのPyQtによるクロスプラットフォームGUIアプリ作成入門 - MyEnigma |
||
420 | http://myenigma.hatenablog.com/entry/2016/01/24/113413 |
||
421 | |||
422 | PythonのSubprocessでコマンドの実行結果を出力させない 俺的備忘録 〜なんかいろいろ〜 |
||
423 | https://orebibou.com/2016/12/python%e3%81%aesubprocess%e3%81%a7%e3%82%b3%e3%83%9e%e3%83%b3%e3%83%89%e3%81%ae%e5%ae%9f%e8%a1%8c%e7%b5%90%e6%9e%9c%e3%82%92%e5%87%ba%e5%8a%9b%e3%81%95%e3%81%9b%e3%81%aa%e3%81%84/ |
||
424 | |||
425 | Pythonのpycurlで帰ってきた結果を変数・ファイルに出力する 俺的備忘録 〜なんかいろいろ〜 |
||
426 | http://orebibou.com/2016/02/python%e3%81%aepycurl%e3%81%a7%e5%b8%b0%e3%81%a3%e3%81%a6%e3%81%8d%e3%81%9f%e7%b5%90%e6%9e%9c%e3%82%92%e5%a4%89%e6%95%b0%e3%83%bb%e3%83%95%e3%82%a1%e3%82%a4%e3%83%ab%e3%81%ab%e5%87%ba%e5%8a%9b/ |
||
427 | |||
428 | Pythonのスタイルガイドとそれを守るための各種Lint・解析ツール5種まとめ! - SideCI Blog |
||
429 | http://blog-ja.sideci.com/entry/python-lint-pickup-5tools |
||
430 | |||
431 | Pythonのプログラムをワンライナー化するOnelinerizerがいろんな意味ですごい TRIVIAL TECHNOLOGIES 4 @ats のイクメン日記 |
||
432 | http://coreblog.org/ats/onelinerizer/ |
||
433 | |||
434 | Pythonのメモリ使用量を減らすポイント - Qiita |
||
435 | http://qiita.com/yukinoi/items/59d43a3ee207c8aad35b |
||
436 | |||
437 | Pythonの仮想環境構築 2017.01版 - YAMAGUCHI--weblog |
||
438 | http://ymotongpoo.hatenablog.com/entry/2017/01/29/002039 |
||
439 | |||
440 | Pythonの可視化ツールはHoloViewsが標準になるかもしれない - Qiita |
||
441 | http://qiita.com/driller/items/53be86cea3c3201e7e0f |
||
442 | |||
443 | Pythonをとりまく並行非同期の話 |
||
444 | https://tell-k.github.io/pyconjp2017/#1 |
||
445 | |||
446 | Pythonを使ったデータ分析に関する内容をJupyter Notebookにまとめ始めました - c-bata web |
||
447 | http://nwpct1.hatenablog.com/entry/2016/05/13/202316 |
||
448 | |||
449 | Pythonエンジニアが紹介する、Pythonの超便利なライブラリ・フレームワーク13個 - paiza開発日誌 |
||
450 | http://paiza.hatenablog.com/entry/2016/12/27/Python%E3%82%A8%E3%83%B3%E3%82%B8%E3%83%8B%E3%82%A2%E3%81%8C%E7%B4%B9%E4%BB%8B%E3%81%99%E3%82%8B%E3%80%81Python%E3%81%AE%E8%B6%85%E4%BE%BF%E5%88%A9%E3%81%AA%E3%83%A9%E3%82%A4%E3%83%96%E3%83%A9%E3%83%AA |
||
451 | |||
452 | Pythonコードのプロファイリング - shkh's blog |
||
453 | http://shkh.hatenablog.com/entry/2013/08/16/221205 |
||
454 | |||
455 | PythonデバッグTips - Qiita |
||
456 | http://qiita.com/TakesxiSximada/items/45b6d71a44f2706798ed#pycharm%E3%81%A7%E3%83%87%E3%83%90%E3%83%83%E3%82%B0 |
||
457 | |||
458 | Pythonメモ - better-exceptionsで例外情報を見やすくする - もた日記 |
||
459 | http://wonderwall.hatenablog.com/entry/2017/07/24/162040 |
||
460 | |||
461 | Pythonメモ - tqdmで処理の進捗(プログレスバー)を表示 - もた日記 |
||
462 | http://wonderwall.hatenablog.com/entry/2017/07/23/222856 |
||
463 | |||
464 | SECCON 2016大阪大会に参加してきた(完全版) - ymduu+2 |
||
465 | http://ymduu.hatenablog.com/entry/2016/10/02/212633 |
||
466 | |||
467 | SMTPの設定無しで、pythonで特定のメールアドレスにメールを送付する - Qiita |
||
468 | http://qiita.com/gano/items/4935eadce7219eb6227d |
||
469 | |||
470 | Unicornのソースコードを読む(Python編) 一生あとで読んでろ |
||
471 | http://ntddk.github.io/2016/07/09/unicorn-internals-python/ |
||
472 | |||
473 | Visual Studio CodeでPythonの開発環境構築を構築してみた。 | Developers.IO |
||
474 | http://dev.classmethod.jp/tool/python-pyenv-vscode/ |
||
475 | |||
476 | Windows10でPythonとIDLEを使って開発する #Python - oneshotlife-pythonのブログ |
||
477 | http://oneshotlife-python.hatenablog.com/entry/2016/11/05/184329 |
||
478 | |||
479 | WindowsでPythonを使ってWebScrapingやデータ解析をしたいならAnacondaMiniconda一択 - oneshotlife-pythonのブログ |
||
480 | http://oneshotlife-python.hatenablog.com/entry/Windows%E3%81%A7Python%E3%82%92%E4%BD%BF%E3%81%A3%E3%81%A6WebScraping%E3%82%84%E3%83%87%E3%83%BC%E3%82%BF%E8%A7%A3%E6%9E%90%E3%82%92%E3%81%97%E3%81%9F%E3%81%84%E3%81%AA%E3%82%89Anaconda/miniconda |
||
481 | |||
482 | [機械学習]各種Pythonライブラリ入りの実験用Dockerイメージを作った - ズッキーニのプログラミング実験場 ズッキーニのプログラミング実験場 |
||
483 | cat: can't open '[機械学習]各種Pythonライブラリ入りの実験用Dockerイメージを作った - ズッキーニのプログラミング実験場 ズッキーニのプログラミング実験場.url*': No such file or directory |
||
484 | |||
485 | nfqueue+scapyで偽の応答を返す - mrtc0.log |
||
486 | http://mrtc0.hateblo.jp/entry/2016/03/28/014232 |
||
487 | |||
488 | pip3 install scapy-python3 でパケットに恋したい。 arpテーブルを汚したい編 - じゃあ、おうちで学べる |
||
489 | http://syu-m-5151.hatenablog.com/entry/2016/06/21/232248 |
||
490 | |||
491 | pyenvが必要かどうかフローチャート - Qiita |
||
492 | http://qiita.com/shibukawa/items/0daab479a2fd2cb8a0e7 |
||
493 | |||
494 | pysh - Google 検索 |
||
495 | https://www.google.co.jp/search?hl=ja&as_qdr=y15&lr=lang_ja&num=100&q=pysh&gws_rd=ssl |
||
496 | |||
497 | pythonで競技プログラミングをする際に便利なほかの関数とか5選 - roiti46's blog |
||
498 | http://roiti46.hatenablog.com/entry/2015/12/23/213448 |
||
499 | |||
500 | pythonによる画像処理入門 - ブンバボーンな毎日 |
||
501 | http://www.uosansatox.biz/entry/2017/08/16/002041 |
||
502 | |||
503 | pytorch超入門 - Qiita |
||
504 | http://qiita.com/miyamotok0105/items/1fd1d5c3532b174720cd |
||
505 | |||
506 | rePy2exe - Reverse Engineering Tool For py2exe Applications - Latest Hacking News |
||
507 | https://latesthackingnews.com/2017/01/17/repy2exe-reverse-engineering-tool-py2exe-applications/ |
||
508 | |||
509 | 「スマートPythonプログラミング」という本を書きました - CUBE SUGAR CONTAINER |
||
510 | http://blog.amedama.jp/entry/2016/03/13/234450 |
||
511 | |||
512 | 「逆に凄いわ」って感心するPythonのlambda活用法 TRIVIAL TECHNOLOGIES 4 @ats のイクメン日記 |
||
513 | http://coreblog.org/ats/how-to-never-use-lambdas/ |
||
514 | |||
515 | 【Python】Rubyの配列やハッシュのメソッドをPythonで再現する - 歩いたら休め |
||
516 | http://kiito.hatenablog.com/entry/2016/10/30/103451 |
||
517 | |||
518 | 【Python】RプログラマーのためのPython入門 - 歩いたら休め |
||
519 | http://kiito.hatenablog.com/entry/2016/06/12/155134 |
||
520 | |||
521 | 【Python】Selenium + PhantomJSでPythonからブラウザ画面のスクリーンショットを撮る - 歩いたら休め |
||
522 | http://kiito.hatenablog.com/entry/2016/09/29/234723 |
||
523 | |||
524 | 【Python】いつまでprintデバッグで消耗してるの? - らっちゃいブログ |
||
525 | http://racchai.hatenablog.com/entry/2016/05/30/070000 |
||
526 | |||
527 | 【Python】はてなブログのOAuth認証でブログを自動投稿するスクリプトを書いた - 歩いたら休め |
||
528 | http://kiito.hatenablog.com/entry/2016/11/23/225729 |
||
529 | |||
530 | 【Python】不動産業界のニュースを知るために、 http-fdj2today.exblog.jp で紹介されているニュースを転載するbotを作った - 歩いたら休め |
||
531 | http://kiito.hatenablog.com/entry/2016/04/30/130605 |
||
532 | |||
533 | 【Python】日本の有名Pythonistaを特定するために、Twitterをネットワーク分析してオピニオンリーダーを見つけるライブラリを作った - 歩いたら休め |
||
534 | http://kiito.hatenablog.com/entry/2016/04/29/174253 |
||
535 | |||
536 | 【Python】最近Twitterを見る暇がないので、Twitterのリストから最新ニュースのurlを簡単に取ってくるライブラリ(らしきもの)を作った - 歩いたら休め |
||
537 | http://kiito.hatenablog.com/entry/2016/04/03/085354 |
||
538 | |||
539 | コマンドラインツールを自動生成できるPython Fireと他のライブラリ比べてみた - paiza開発日誌 |
||
540 | http://paiza.hatenablog.com/entry/2017/03/10/%E3%82%B3%E3%83%9E%E3%83%B3%E3%83%89%E3%83%A9%E3%82%A4%E3%83%B3%E3%83%84%E3%83%BC%E3%83%AB%E3%82%92%E8%87%AA%E5%8B%95%E7%94%9F%E6%88%90%E3%81%A7%E3%81%8D%E3%82%8BPython_Fire%E3%81%A8%E4%BB%96%E3%81%AE |
||
541 | |||
542 | シェルスクリプトからPython3に移行する人のために ~標準入出力・ファイル管理編~ - 余白の書きなぐり |
||
543 | http://auewe.hatenablog.com/entry/2013/10/16/095026 |
||
544 | |||
545 | ソフトウェアエンジニアは一般的な人々と比べてどのくらい稼ぐのか - Pythonでのデータ収集・処理・可視化 プログラミング POSTD |
||
546 | http://postd.cc/what-software-engineers-earn-compared-to-the-general-population/ |
||
547 | |||
548 | データサイエンティストを目指す人のpython環境構築 2016 - Qiita |
||
549 | http://qiita.com/y__sama/items/5b62d31cb7e6ed50f02c |
||
550 | |||
551 | バイナリ解析技法【Python3での利用】 - じゃあ、おうちで学べる |
||
552 | http://syu-m-5151.hatenablog.com/entry/2017/06/18/184828 |
||
553 | |||
554 | メタプログラミングPython |
||
555 | https://tell-k.github.io/pyconjp2016/#1 |
||
556 | |||
557 | ログ出力のための print と import logging はやめてほしい - Qiita |
||
558 | http://qiita.com/amedama/items/b856b2f30c2f38665701 |
||
559 | |||
560 | 他人の書いたコードに挑もう – Part 1 プログラミング POSTD |
||
561 | http://postd.cc/divingintootherpeoplescode-1/ |
||
562 | |||
563 | 就活生が東京で時間が空いたしWebスプレイピングのことがよく分かんないのでPythonでちょこちょこってやった話。 - エンジニア見習いの妄想日記 |
||
564 | http://syu-m-5151.hatenablog.com/entry/2016/04/20/112208 |
||
565 | |||
566 | 憂鬱なExcel作業をPythonで紛らわす - 千里霧中 |
||
567 | http://goyoki.hatenablog.com/entry/2016/04/13/010315 |
||
568 | |||
569 | 最強のPython開発環境 PyCharmのすゝめ - Qiita |
||
570 | http://qiita.com/pashango2/items/de342abc10722ed7a569 |
||
571 | |||
572 | 機械学習のためのPythonの基礎「NumPy」を学ぶ - learning.ikeay.net |
||
573 | http://learning.ikeay.net/entry/2016/06/01/210452 |
||
574 | |||
575 | 画像内の秘密情報をOCRでマスクするコマンドmasecretを作った - orangain flavor |
||
576 | http://orangain.hatenablog.com/entry/masecret |
||
577 | |||
578 | 画像処理入門講座 - OpenCVとPythonで始める画像処理 プログラミング POSTD |
||
579 | http://postd.cc/image-processing-101/ |
||
580 | |||
581 | 私が選ぶ2015年の”新しい”Pythonモジュール トップ5 プログラミング POSTD |
||
582 | http://postd.cc/my-top-5-new-python-modules-of-2015/ |
||
583 | |||
584 | 見よ!これが Python製の WordPress風フルスタックCMSフレームワーク「Mezzanine(メザニン)」だ! - akiyoko blog |
||
585 | http://akiyoko.hatenablog.jp/entry/2015/12/23/000100 |
||
586 | |||
587 | 覚えるだけでPythonのコードが少し綺麗になる頻出イディオム - タオルケット体操 |
||
588 | http://hachibeechan.hateblo.jp/entry/Python-idiom-101 |
||
589 | |||
590 | 金融データのPythonでの扱い方 - 今日も窓辺でプログラム |
||
591 | http://www.madopro.net/entry/MachineLearningForTrading |
||
592 | |||
593 | 高速化のためのPython Tips - のんびりしているエンジニアの日記 |
||
594 | http://nonbiri-tereka.hatenablog.com/entry/2016/09/01/072402 |