ABOUT ME

-

Today
-
Yesterday
-
Total
-
  • [Python] WIFI QRcode 만들기
    Python/이것저것 파이썬 2023. 2. 4. 18:33
    반응형

    qrcode 라이브러리를 설치한다.

    pillow에 의존하기 때문에 같이 설치할 때는 다음과 같이... 

    pip install "qrcode[pil]"

    코드는 다음과 같다. 

    import qrcode
    
    ssid = 'abcde'
    security = 'WPA'  # WPA or WEP
    password = 'abcde'
    
    img = qrcode.make(f'WIFI:S:{ssid};T:{security};P:{password};;')
    img.save("wifi_qrcode.png")

    svg 파일로도 출력할 수 있다.

    import qrcode
    import qrcode.image.svg
    
    ssid = 'abcde'
    security = 'WPA'  # WPA or WEP
    password = 'abcde'
    
    factory = qrcode.image.svg.SvgImage
    
    img = qrcode.make(f'WIFI:S:{ssid};T:{security};P:{password};;', image_factory=factory)
    img.save("wifi_qrcode.svg")

     

    반응형
Designed by Tistory.