[파이썬]쿠팡파트너스 워드프레스 자동 포스팅 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..

image