We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
No description provided.
The text was updated successfully, but these errors were encountered:
import os import sys import urllib.request client_id = "GzZwiQU0fQoicsI2PaL9" client_secret = "***" encText = urllib.parse.quote("Guider") url = "https://openapi.naver.com/v1/search/blog?query=" + encText # json 결과
request = urllib.request.Request(url) request.add_header("X-Naver-Client-Id",client_id) request.add_header("X-Naver-Client-Secret",client_secret) response = urllib.request.urlopen(request) rescode = response.getcode() if(rescode==200): response_body = response.read() print(response_body.decode('utf-8')) else: print("Error Code:" + rescode)
Sorry, something went wrong.
함수 단위의 실시간 리소스 사용량 출력은 조금 어려울 것 같습니다. kernel 함수만 출력하는건 샘플링으로 가능하긴 한데, 어떻게 생각하세요?
@iipeace 네 좋습니다 이걸 굳이 하려고 하는 이유는 기존 자빅스라는 비슷한 기능의 오픈소스와 차별을 주고 싶어서 이니까요
No branches or pull requests
No description provided.
The text was updated successfully, but these errors were encountered: