티스토리 뷰
ssl Basic인증 통과하기
import http.client, json, ssl, base64
def convertByteToGiga(byte):
return byte / 1024 / 1024 / 1024
def getApiResponse(query):
auth = str.encode("%s:%s" % ('root', ''))
user_and_pass = base64.b64encode(auth).decode("ascii")
headers = {"Authorization":"Basic {}".format(user_and_pass),
"Accept":"application/json"}
conn = http.client.HTTPSConnection('0.0.0.0', 8080, context=ssl._create_unverified_context())
conn.request("GET", query, headers=headers)
res = conn.getresponse()
return res
#res = getApiResponse("/platform/1/statistics/current?key=node.sysfs.root.bytes.used")
#res = getApiResponse("/platform/1/statistics/current?key=node.sysfs.var.percent.free")
res = getApiResponse("/platform/5/statistics/current?key=cluster.alert.info")
data = res.read()
result = json.loads(data.decode('utf-8'))
authentication authorization
인증, 권한부여
end
728x90
'Language > Python' 카테고리의 다른 글
pandas 실전 데이터 분석 (0) | 2020.04.20 |
---|---|
pandas loc, apply적용 예제 (0) | 2020.03.25 |
파이썬 날짜 다루기 date, datetime, yyyymmdd (0) | 2019.10.06 |
제자반 자리배치 프로그램 (0) | 2019.09.23 |
setuptools.find_packages()이용해 패키지 찾기 (0) | 2019.09.10 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- vim
- 도커컨테이너
- 싱가폴
- docker container tissue box
- shellscript
- 2017 티스토리 결산
- 개발자
- 도커각티슈케이스
- docker container whale
- Sh
- 이직
- 도커티슈케이스
- 도커각티슈박스
- docker container
- Linux
- docker container tissue
- docker container case
- 도커티슈박스
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 | 31 |
글 보관함