Post using python script
$ vi blog_post.py # Import needed libraries: import xmlrpclib; from pprint import pprint; # Define the blog publishing function def blogPost( server, username, password, categories, tags, title, content ): datastruct = {'description':content, 'title':title, 'categories':categories, 'mt_keywords':tags} returncode = server.metaWeblog.newPost('1',username,password,datastruct,1) print returncode ser..
2009. 6. 4.