파이썬에서:
1. 연결:
파이썬 코드
import mysql.connector cnx = mysql.connector.connect(user='scott', password='tiger', host='127.0.0.1', database='employees') cnx.close()
2. 쿼리:
파이썬 코드
import datetime import mysql.connector cnx = mysql.connector.connect(user='scott', database='employees') cursor = cnx.cursor() query = ("SELECT first_name, last_name, hire_date FROM employees " "WHERE hire_date BETWEEN %s AND %s") hire_start = datetime.date(1999, 1, 1) hire_end = datetime.date(1999, 12, 31) cursor.execute(query, (hire_start, hire_end)) for (first_name, last_name, hire_date) in cursor: print("{}, {} was hired on {:%d %b %Y}".format( last_name, first_name, hire_date)) cursor.close() cnx.close()
3. 파일로 출력 (현재 날짜를 파일 이름으로 사용)
Python 코드
import time filename = 'page_list_'+str(time.strftime("%Y%m%d"))+'.txt' output = open(filename,'w') output.write(str(page_title).lstrip('(b\'').rstrip('\',)')+"\n") output.close()
여기서 page_title은 위 데이터베이스에서 가져온 필드 이름입니다. 출력이 모두 (b'pagename') 형식이므로 중복되는 문자를 삭제하는 일부 처리가 이루어졌습니다.
이런 방식으로 검색된 콘텐츠를 날짜라는 이름의 파일에 직접 저장할 수 있습니다.