- twitter2blog source code(http://code.google.com/p/twitter2blog/downloads/list)를 다운 받는다.
- 다운받은 파일 안의 info.py.sample을 info.py로 copy한 후 info.py에 twitter 계정 및 blog 계정 정보를 채워 넣는다.
- PC에 Python 2.6.1(http://www.python.org/download/releases/2.6.1/) 설치
- t2b.py를 탐색기에서 더블클릭해서 실행한다.
- 블로그에 하루치 트위터 글이 저장된 것을 확인했다면, 다시 info.py 파일을 열어 publish = 0을 1로 수정해 놓는다.
- 수동으로 t2b.py를 실행하거나, 제어판의 예약된 작업 기능을 이용해서 특정 시간에 Twitter2blog가 작동하도록 한다.
{{| # 1. cp info.py.sample info.py
# 2. write down your info
#twitter
tw_user="트위터 아이디"
tw_passwd="트위터 비밀번호"
#blog
blog_user = "블로그 아이디"
blog_passwd = "블로그 패스워드"
blog_id = BlogAPI ID
blog_api_url = "BlogAPI 주소"
#blog post title (using time.strftime)
title_type = "Twitter Digest %Y-%m-%d"
#blog post publish ?
publish = 0
# 1: publish, 0: don't publish|}}