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?

QR Generate API

Posted at

QRコードを生成するAPIの紹介を書いてみる

今回は、自分で作ったQRコードを生成するAPIを紹介します。
初めて、記事を書くので温かい目で見てください:pray:

APIはこちら ->> API

  • Pythonを使ってAPIを叩いてみる
main.py

import requests

def generate_qr(url):
    # URLをエンコード
    api_url = f"https://qr-make-api.onrender.com/qr/{requests.utils.quote(url)}"
    response = requests.get(api_url)

    if response.status_code == 200:
        print("QRコードが正常に生成されました。")
        # レスポンスの内容をファイルとして保存
        with open("qr.png", "wb") as f:
            f.write(response.content)
        print("QRコード画像が 'qr.png' として保存されました。")
    else:
        print("QRコードの生成に失敗しました。")
        print("ステータスコード:", response.status_code)
        print("レスポンス:", response.text)

# 使用例
generate_qr("https://qr-make-api.onrender.com")
  • 生成されたQRコードがこちら
    qr.png

更なる詳細はこちらまで:point_down_tone1:

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?