[파이썬]파파고 API 연동
# Script/Python2023. 2. 8. 13:07[파이썬]파파고 API 연동

신청 URL https://developers.naver.com/apps/#/register 애플리케이션 - NAVER Developers developers.naver.com 예제 import json import os import sys import urllib.request client_id = "ZOB" # 개발자센터에서 발급받은 Client ID 값 client_secret = "zs" # 개발자센터에서 발급받은 Client Secret 값 #encText = urllib.parse.quote("I'm going to write a blog about Korea, so please let me know in 2000 characters.") encText = urllib.parse.quote("..

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

curl command
# Operation System/Linux2022. 9. 21. 08:09curl command

cURL은 FTP, 고퍼(Gopher), HTTP, HTTPS, SCP, LDAP등 다양한 통신규악을 지원하는 명령줄 방식의 데이터 전송도구이다. download/upload 모두 가능하며 HTTP, HTTPS, FTP, LDAP, SCP, TELNET, SMTP, POP3 등 중요 프로토콜을 지원하며 Linux/Unix 계열 및 Windows 등 중요 OS에서 구동된다. curl command line tool and library for transferring data with URLs (since 1998) Time to donate to the curl project? Everything curl is a detailed and totally free book that explains basica..

image