python으로 egloo API 해보신분 계신가요?
글쓴이: ismyid / 작성시간: 금, 2006/03/17 - 5:17오후
한번 해보고 싶은데..
도통 어떻게 사용하는지 모르겠네요...
>>> egloo=xmlrpclib.Server("http://rpc.egloos.com/rpc1")
요거 한번해보고 진도가 안나가네요...
http://www.blogger.com/developers/api/1_docs/ 도 가보고
http://www.xmlrpc.com/metaWeblogApi 도 가봤는데 잘 모르겠더군요..
사용해보신 분들 간단하게라도 좀 가르쳐주세요...
Forums:
찾다보니 daum API는
찾다보니 daum API는 대충 사용하는 방법이 나와있군요..
이런 식이네요...
metaWeblog api 사용하는 법
import xmlrpclib
s=xmlrpclib.Server("https://rpc.egloos.com/rpc1")
# 한글 사용시 unicode 로 변환 하여야 함
category=unicode('한마디', 'euc-kr')
content=unicode('테스트중입니다.', 'euc-kr')
datastruct={'category': category, 'description': content, 'title':'test'}
rc=s.metaWeblog.newPost('', 'user-id', 'egloos-api-key', datastruct, True)
좀 더 자세한 내용은 아래 페이지들을 참조하세요.
이글루스 API 사용해 프로그래밍 하기..
http://madchick.egloos.com/1534203
XML-RPC in Python
http://www.onlamp.com/pub/a/python/2000/11/22/xmlrpcclient.html
Python, XML and XML-RPC : A perfect combination
http://www.farhanahmed.com/articles/xmlrpc.html
댓글 달기