투케이2K

30. (python/파이썬) import base64 사용해 base64 encode (인코딩) , decode (디코딩) 수행 실시 본문

Python

30. (python/파이썬) import base64 사용해 base64 encode (인코딩) , decode (디코딩) 수행 실시

투케이2K 2022. 7. 19. 08:15

[개발 환경 설정]

개발 툴 : SublimeText (PyScript)

개발 언어 : python

 

[소스 코드]

<!DOCTYPE HTML>
<html lang="ko">
<head>
    <title>WebTest</title>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">



    <!-- [pyScript 사용 관련 CDN 설정 실시] -->
    <link rel="stylesheet" href="https://pyscript.net/alpha/pyscript.css" />
    <script defer src="https://pyscript.net/alpha/pyscript.js"></script>




    <!-- 
    // -----------------------------------------
    [요약 설명]
    // -----------------------------------------
    base64 을 사용해서 base64 인코딩 및 디코딩을 수행할 수 있습니다
    // -----------------------------------------
     -->




    <!-- [pyScript 구문 정의 실시] -->
    <py-script>
        # [import 수행 실시]
        import base64

        print("=====================================")
        print("[main start]")
        print("=====================================")


        # [초기 변수 선언 실시]
        str_Data = "안녕2K=!@"


        # [base64 인코딩 수행 실시]
        encode_bytes = str_Data.encode('utf-8')
        encode_Data = base64.b64encode(encode_bytes)
        base64_String = encode_Data.decode('utf-8')


        # [base64 디코딩 수행 실시]
        decode_bytes = base64.b64decode(base64_String)
        origin_String = decode_bytes.decode('utf-8')


        # [결과 출력 실시]
        print("str_Data : {}".format(str_Data))
        print("base64_String : {}".format(base64_String))
        print("origin_String : {}".format(origin_String))

    </py-script>
    
</head>





<!-- [body 콘텐츠 작성] -->
<body>
</body>


</html>
 

[결과 출력]

 

 

반응형
Comments