[파이썬]워드프레스 자동포스팅# Script/Python2022. 10. 13. 19:06
Table of Contents
728x90
반응형
from wordpress_xmlrpc import Client
from wordpress_xmlrpc import WordPressPost
from wordpress_xmlrpc.methods import posts
wp = Client('http://워드프레스 주소/xmlrpc.php', '아이디', '비밀번호')
post = WordPressPost()
post.title = 'My new title'
post.content = 'This is the body of my new post.'
post.terms_names = {
'post_tag': ['test', 'firstpost'],
'category': ['Introductions', 'Tests']
}
post.post_status = "publish"
wp.call(posts.NewPost(post))
728x90
반응형
'# Script > Python' 카테고리의 다른 글
[파이썬]셀레니움 프록시 설정 (0) | 2022.10.19 |
---|---|
[파이썬]티스토리 오픈API이용 (0) | 2022.10.14 |
[파이썬]페이지 로딩될 때 까지 기다리게 하는 방법 (0) | 2022.10.12 |
[파이썬]네이버 데이터랩 추출 및 엑셀 파일 저장(xlsx) (0) | 2022.10.11 |
[파이썬]셀레니움 크롬 드라이버 자동 설치 for windows (0) | 2022.10.10 |
@다크쉐라빔 :: 다크쉐라빔의 주절주절
안녕하세요. 이곳은 IT위주의 잡다한 정보를 올려두는 개인 블로그입니다.
포스팅이 좋았다면 "좋아요❤️" 또는 "구독👍🏻" 해주세요!