<?xml version="1.0"?>
<rss version="2.0">
   <channel>
      <title>김명주강사 by 김명주</title>
      <link>https://padlet.com/myungju86/mjy6nes2htw60xh9</link>
      <description></description>
      <language>en-us</language>
      <pubDate>2025-05-28 11:20:27 UTC</pubDate>
      <lastBuildDate>2025-11-26 13:00:21 UTC</lastBuildDate>
      <webMaster>hello@padlet.com</webMaster>
      <image>
         <url></url>
      </image>
      <item>
         <title>파이썬 QR코드 명함 만들기</title>
         <author>myungju86</author>
         <link>https://padlet.com/myungju86/mjy6nes2htw60xh9/wish/3474990029</link>
         <description><![CDATA[<p>with open("friends.vcf", "w") as file:</p><p>    file.write(</p><p>"""</p><p>BEGIN:VCARD</p><p>VERSION:3.0</p><p>N:Lee;Younghee;;;</p><p>FN:Younghee Lee</p><p>TEL;TYPE=CELL:+82-10-7286-1559</p><p>EMAIL:<a rel="noopener noreferrer nofollow" href="mailto:younghee.lee@email.com">younghee.lee@email.com</a></p><p>END:VCARD"""</p><p>    )</p><p>print("vCard 파일이 생성되었습니다!")</p><p><br></p><p><br></p>]]></description>
         <enclosure url="" />
         <pubDate>2025-06-01 13:44:48 UTC</pubDate>
         <guid>https://padlet.com/myungju86/mjy6nes2htw60xh9/wish/3474990029</guid>
      </item>
      <item>
         <title>파이썬 홈페이지 QR코드</title>
         <author>myungju86</author>
         <link>https://padlet.com/myungju86/mjy6nes2htw60xh9/wish/3511169351</link>
         <description><![CDATA[<p>import qrcode</p><p><br></p><p>url = "<a rel="noopener noreferrer nofollow" href="https://home.pen.go.kr/swai/main.do">https://home.pen.go.kr/swai/main.do</a>"</p><p>qrcode_img = qrcode.make(url)</p><p>qrcode_<a rel="noopener noreferrer nofollow" href="http://img.save">img.save</a>("./my_qrcode.png")</p>]]></description>
         <enclosure url="" />
         <pubDate>2025-07-05 14:31:29 UTC</pubDate>
         <guid>https://padlet.com/myungju86/mjy6nes2htw60xh9/wish/3511169351</guid>
      </item>
      <item>
         <title>파이썬 예제</title>
         <author>myungju86</author>
         <link>https://padlet.com/myungju86/mjy6nes2htw60xh9/wish/3511170075</link>
         <description><![CDATA[<p>import qrcode</p><p><br></p><p># 이벤트 정보</p><p>event_info = """</p><p>★ [초대합니다!] ★</p><p>행사명: 코딩 데이</p><p>일시: 2025년 5월 10일 오후 2시</p><p>장소: 서울 코딩센터 3층</p><p>문의: 010-1234-5678</p><p>"""</p><p># QR 코드 생성</p><p>qr = qrcode.make(event_info)</p><p><br></p><p># 저장</p><p><a rel="noopener noreferrer nofollow" href="http://qr.save">qr.save</a>("event_invitation.png")</p>]]></description>
         <enclosure url="" />
         <pubDate>2025-07-05 14:33:46 UTC</pubDate>
         <guid>https://padlet.com/myungju86/mjy6nes2htw60xh9/wish/3511170075</guid>
      </item>
      <item>
         <title>최종 이미지QR</title>
         <author>myungju86</author>
         <link>https://padlet.com/myungju86/mjy6nes2htw60xh9/wish/3511178407</link>
         <description><![CDATA[<p><br></p><p>import qrcode</p><p>from PIL import Image</p><p>vcard_data = """BEGIN:VCARD</p><p>VERSION:3.0</p><p>N:Lee;Younghee;;;</p><p>FN:Younghee Lee</p><p>TEL;TYPE=CELL:010-2034-6179</p><p>EMAIL:<a rel="noopener noreferrer nofollow" href="mailto:yhlee6179@gmail.com">yhlee6179@gmail.com</a></p><p>URL:<a rel="noopener noreferrer nofollow" href="https://www.instagram.com/your_username">https://www.instagram.com/your_username</a></p><p>END:VCARD"""</p><p>qr = qrcode.QRCode(</p><p>    version=4,</p><p>    error_correction=qrcode.constants.ERROR_CORRECT_H,  )</p><p>box_size=10,</p><p>border=4,</p><p>qr.add_data(vcard_data)</p><p>qr.make(fit=True)</p><p>qr_img = qr.make_image(fill_color="black", back_color="white").convert('RGB')</p><p># 삽입할 로고 열기</p><p>logo = <a rel="noopener noreferrer nofollow" href="http://Image.open">Image.open</a>("다운로드.png")</p><p># 로고 크기 조정</p><p>qr_width, qr_height = qr_img.size</p><p>logo_size = qr_width // 4</p><p>logo = logo.resize((logo_size, logo_size))</p><p># 로고를 중앙에 배치되도록　위치　계산</p><p>pos = ((qr_width - logo_size) // 2, (qr_height - logo_size) // 2)</p><p>qr_img.paste(logo, pos)</p><p># 최종 QR 이미지 저장</p><p>qr_<a rel="noopener noreferrer nofollow" href="http://img.save">img.save</a>("yhlee_qr.png")</p><p>print("yhlee_qr.png 파일이 성공적으로 생성되었습니다!")</p><p><br></p>]]></description>
         <enclosure url="" />
         <pubDate>2025-07-05 14:57:34 UTC</pubDate>
         <guid>https://padlet.com/myungju86/mjy6nes2htw60xh9/wish/3511178407</guid>
      </item>
      <item>
         <title>쓰기파일</title>
         <author></author>
         <link>https://padlet.com/myungju86/mjy6nes2htw60xh9/wish/3515611274</link>
         <description><![CDATA[<p># 파일에 텍스트 저장</p><p>with open("sample.txt", "w") as file:</p><p>&nbsp;&nbsp;&nbsp; file.write("이것은 예제 파일입니다.")</p><p><br></p><p># 파일에서 데이터 읽기</p><p>with open("sample.txt", "r") as file:</p><p>&nbsp;&nbsp;&nbsp; content = <a rel="noopener noreferrer nofollow" href="http://file.read">file.read</a>()</p><p>&nbsp;&nbsp;&nbsp; print(content)</p>]]></description>
         <enclosure url="" />
         <pubDate>2025-07-10 04:25:56 UTC</pubDate>
         <guid>https://padlet.com/myungju86/mjy6nes2htw60xh9/wish/3515611274</guid>
      </item>
   </channel>
</rss>
