워드프레스 중복글 bypass
# Web&WAS2022. 10. 27. 07:30워드프레스 중복글 bypass

중복글 플러그인이 존재하지만 오토는 유료라서 수동으로 지워야하는 번거러움.. 귀찮다.. 등록할때 체크해서 중복글 bypass # 모듈선언 from wordpress_xmlrpc import Client from wordpress_xmlrpc import WordPressPost from wordpress_xmlrpc.methods import posts import pymysql wp = Client("https://[워드프레스주소]/xmlrpc.php", "[아이디]", "[비밀번호]") post = WordPressPost() post.title = 'My new title' post.content = 'This is the body of my new post.' post.terms_names = {..

[파이썬]쿠팡파트너스 워드프레스 자동 포스팅 with linux
# Script/Python2022. 10. 21. 13:54[파이썬]쿠팡파트너스 워드프레스 자동 포스팅 with linux

모듈선언 #!/usr/bin/env python3 import datetime import hmac import hashlib import os import time from time import gmtime, strftime import requests import json import urllib.request import secrets from urllib.parse import urlencode from wordpress_xmlrpc import Client from wordpress_xmlrpc import WordPressPost from wordpress_xmlrpc.methods import posts api인증 class cupangMgr: DOMAIN = "https://api-gate..

워드프레스 설치
# Web&WAS2022. 10. 10. 10:45워드프레스 설치

다운로드 https://ko.wordpress.org/download/#download-install Download Download WordPress today, and get started on creating your website with one of the most powerful, popular, and customizable platforms in the world. ko.wordpress.org [daraksharavim.tistory.com]$ wget https://ko.wordpress.org/latest-ko_KR.tar.gz Requirements We recommend servers running version 7.4 or greater of PHP and MySQL versio..

image