본문 바로가기
반응형

Ai5

Bolt.diy를 통한 AI 챗봇 풀스택 무료 웹개발 Bolt.DIY란?로컬에서 챗봇과 대화하듯이 웹 애플리케이션을 만들 수 있습니다. 개발에 대한 기본 지식이 없어도 누구든지 대화로 웹 사이트를 구축할 수 있습니다. 그것도 다양한 언어로 말이죠 오늘 진행할 AI 모델은 Gemini 2.0 Flash Thinking Experimental 01-21 현재 테스트 기간으로 free로 사용할 수 있습니다.  필수 설치 및 API 키 발급등 해야 할 일들이 조금 있는대 천천히 따라오다 보시면 쉽게 구축 할 수 있으실 겁니다. [1. 설치]1. Node JS https://nodejs.org/en Node.js — Run JavaScript EverywhereNode.js® is a JavaScript runtime built on Chrome's V8 JavaS.. 2025. 2. 25.
ChatGPT - 파이썬 flask연동 리스트 출력 [질문] 파이썬으로 웹사이트 만들어줘 내용은 hello world 찍어줘 Make a website with Python. The content is, "Hello world". Please film it. [답변] As an AI language model, I do not have the ability to film videos. However, I can provide you with the code to create a basic "Hello World" website using Python and Flask: First, make sure you have Flask installed. You can do this by running the command: pip install flask Crea.. 2023. 2. 14.
ChatGPT - 파이썬 Postgresql 연결 및 리스트 [질문] 파이썬으로 postgresql 연결해서 테이블에 있는 데이터를 뿌려줘 Connect postgresql with Python and spray the data on the table. # PostgreSQL 서버에 연결합니다. conn = psycopg2.connect( host="호스트 주소", database="데이터베이스 이름", user="사용자 이름", password="비밀번호" ) # 커서를 생성합니다. cur = conn.cursor() # 쿼리를 실행합니다. cur.execute("SELECT * FROM 테이블 이름") # 결과를 가져옵니다. rows = cur.fetchall() # 결과를 출력합니다. for row in rows: print(row) # 연결을 닫습니다. c.. 2023. 2. 14.
ChatGPT - 파이썬 이메일발송 파이썬 이메일전송 ChatGPT를 활용하여 파이썬으로 이메일전송 프로그램을 만들려고 한다. [질문] 파이썬으로 이메일 보내기 위한 샘플 코드를 만들어주세요. [답변] Sure, here's a sample code for sending an email using Python. You will need to have a valid email account and SMTP server details to use this code. import smtplib from email.mime.text import MIMEText from email.mime.multipart import MIMEMultipart sender_email = "sender_email@example.com" receiver_email =.. 2023. 2. 14.
반응형