0
0

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 1 year has passed since last update.

Python Anacondaを使ってみた ① QRコード生成システム作成編

Last updated at Posted at 2023-04-12

挨拶

こんにちは。Python歴3ヶ月!最近Pythonデビューをした、KameHonuです。
今日は、Anacondaを使ったQRコード生成システムを作成していきます。

目次

・Python Anacondaとは?
・QR生成システムの実装方法

Python Anacodaとは

Python Anacondaとは、Pythonのディストリビューション(pythonのモジュールが既にダウンロードされているやつ)です。
https://www.anaconda.com/
↑Anacondaのリンク↑
Anacondaをダウンロードしたら、VScodeのインタープリターにanacondaが追加されているのでanacondaを選択します。
すると、モジュールインストールなしでpythonが使用できます!

QRコード生成システムの実装

import qrcode

qr = qrcode.QRCode(version=1)
qr.add_data('出力したい文字やリンク')
qr.make()
img = qr.make_image()
img.save('保存ファイル名.png')

これをpythonに入力して実行させるだけです。
以上です。お疲れ様でした。

0
0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?