python 에서 dict date type을 추가하는 방법에 대한 간략한 가이드입니다.
jsonDictionay ={}
jsonDictionay['notification'] = {
'title' : title,
'body' : body,
'icon' : icon
}
jsonDictionay['notification'].update({'update':'updated','update2':'updated2'})
json format으로 결과를 보면 다음과 같습니다.
[INFO][11:52:02.023] notification:
[INFO][11:52:02.023] {
[INFO][11:52:02.023] body : body
[INFO][11:52:02.039] icon : icon
[INFO][11:52:02.039] update2 : updated2
[INFO][11:52:02.039] update : updated
[INFO][11:52:02.055] title : title
[INFO][11:52:02.055] }
어렵지 않은 것들이지만, 막상 찾으려면 쉽게 안오죠~ ^ ^
'Tools > Python' 카테고리의 다른 글
[Python] Error Message : not enough arguments for format string (0) | 2016.09.06 |
---|---|
[GAE in Python] TypeError: Error when calling the metaclass bases (0) | 2016.09.05 |
[Python] class def function call method (0) | 2016.05.31 |
[python] python installer 설치 - easy_install (0) | 2015.08.20 |