3
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

QR コードをコマンドライン上にサクッと表示する

Last updated at Posted at 2020-07-17

最終イメージ

qr コマンドで任意の文字列を QR コードに変換して表示できるようになります。

Screen Shot 2020-07-17 at 9.51.46.png

準備

前提条件

pip コマンドが利用できる事を前提とします。
https://pypi.org/project/pip/

qrcode インストール

利用するパッケージはこちら
qrcode
https://pypi.org/project/qrcode/

pip でインストールします。
画像ファイル書き出しのために、 pil (Pillow) も同時にインストールします。

pip install qrcode[pil]

実行

ターミナルで下記のようなコマンドを実行すると、すぐに QR コードが表示されます。

qr 'Hello, World!'

> の後にファイル名を指定すると、画像データとして書き出すことができます。

qr 'Hello, World!' > qr.png

おわりに

便利な Web サービスなども多くありますが、利用を少しためらうシーンはありませんか?
そんなときに手元でサクッと生成できる手段を持っておくと開発時や動作確認時にとても便利です。

3
4
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?