python
Export Slack Mentions to CSV with Python: A Workflow Game Changer
When using Slack daily, you often find yourself thinking, "Where was that request assigned to me?" o…
Slackの自分宛メンションをPythonで取得したらめっちゃ楽だった件
毎日の業務でSlackを使っていると、「あの時の自分への依頼、どこだっけ?」「先週のフィードバックを見返したい」という場面がよくあります。 Slackの検索機能は優秀ですが、「自分宛のメンションをリスト化してCSVで保存…
Fix “ModuleNotFoundError: No module named ‘plotly'” in Python – Even after pip install
When trying to use the plotly data visualization library in Python, you might encounter the following error th…
Pythonで「No module named ‘plotly’」が出る原因と対処法 ― pip install plotly 済みでも直らない理由
Pythonでデータ可視化ライブラリの plotly を使おうとしたとき、以下のエラーが出て処理が止まってしまうことがあります。 「えっ、さっき pip install plotly したのに!?」 「Requireme…
【コード無料】Cloud Vision OCRをCLIで安全に回す最小構成スクリプト
Cloud Vision API の OCR を実務で使う際、 「公式ドキュメントのサンプルだと断片的すぎて、結局どう繋げばいいか分からない」 ということがよくあります。 特に、 GCS へのアップロード 非同期 OCR…
【Free Code】Minimal Script to Safely Run Cloud Vision OCR via CLI
When using Cloud Vision API's OCR in a practical setting, you often run into the issue where "the off…
Cloud Vision OCRをCLIで回すために作った実務向けツール解説
Cloud Vision API の OCR は精度が高く、PDF 全体をまとめて処理できる点でも非常に優秀です。ただし、公式サンプルをそのまま使うだけでは、実務で継続的に使うには少し物足りません。 この記事では、自分用…
A Practical Guide to Building a CLI Tool for Cloud Vision OCR
The Cloud Vision API's OCR is highly accurate and excellent for processing entire PDFs at once. However, u…
Cloud Vision OCRをCLIで回すのが一番ラクだった理由
Google Cloud Vision API を使った OCR は、 一見すると「GUIで設定してポチっとやれば終わり」な作業に見えます。 実際にやってみる前は、私もそう思っていました。 ところが、いざ本気で OCR …
Why Running Cloud Vision OCR via CLI Was the Easiest Solution
OCR using Google Cloud Vision API might look like a task where you just "configure it in the GUI, click a…