한국어 문서는 여기 있습니다.
'nevada' is the Python library for improving the productivity of those who use the Naver Search Ad API.
pip3 install nevadagit clone https://github.com/taegyumin/python_nevada.git
- Sign up for NAVER SEARCH ADVERTISER's Center (http://searchad.naver.com)
- Go to (http://manage.searchad.naver.com)
- Go to Tools > API Manager
- Create API license
Create a Python file, run the code below.
If the current time is output, the code ran successfully.
In your code, change the values of api_key, secret_key, and customer_id to those issued by the NAVER Search Ads system.
from nevada.Common.Connector import *
base_url = 'https://api.naver.com'
api_key = "Naver-search-AD_ACCESS_LICCENSE"
secret_key = "Naver-search-AD_SECRET_KEY"
customer_id = "Naver-search-AD_CUSTOMER_ID"
conn = Connector(base_url, api_key, secret_key, customer_id)
print(conn.get_datetime())