Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- Shell
- 디렉토리
- centos 7.5
- JSON
- zabbix
- Elk
- Python
- Audit Log
- audit
- 크롬
- 서울시민카드
- Kubernetes
- GNOME
- 빅데이터
- Chrome
- yum
- log
- Elasticsearch
- C
- 파이썬
- GPU
- K8S
- rsyslog
- docker
- syslog
- RHEL
- bash
- Linux
- CentOS
- PostgreSQL
Archives
- Today
- Total
Sysops Notepad
[Python] base64 인코딩/디코팅 하는법 본문
728x90
import base64
def stringToBase64(a):
return base64.b64encode(a.encode('utf-8'))
def base64ToString(b):
return base64.b64decode(b).decode('utf-8')
def fileToBase64(filepath):
fp = open(filepath, "rb")
data = fp.read()
fp.close()
return base64.b64encode(data).decode('utf-8')
728x90
'업무 > dev' 카테고리의 다른 글
[Python] 파이썬 *args,**kwargs 의미 (Asterisk(*)) (0) | 2019.02.20 |
---|---|
[Python] Jupyter 메모리 사용률 확인 (0) | 2019.02.20 |
[bash] for문 사용법 (0) | 2019.02.11 |
[Python] fluent-logger-python (0) | 2019.01.25 |
[bash] echo cmd option (0) | 2018.11.27 |
Comments