# #파일쓰기
# #파일쓰기
def init_Bld_id(path, name, msg, idx):
today = datetime.datetime.now().strftime('%Y-%m-%d %H:%M:%S')
result = { "chat_detail" : [] }
r = json.dumps(result)
config_path = os.path.join(application_path, path)
f = open(config_path + name , 'w')
f.write(r)
f.close()
# config_path + file_name경로의 파일 있는지 확인해서 오픈하고 읽기
if ( os.path.isfile(config_path+file_name) ) :
with open(config_path+file_name) as json_data:
d = json.load(json_data)
for item in d['chat_detail']:
print(item)
result_arr.append(item)
'개발일기 > 파이썬' 카테고리의 다른 글
셀레늄 네이버 로그인 (0) | 2019.04.23 |
---|---|
django 크로스 도메인 설정 (0) | 2019.03.31 |
[python/django] 장고 stop!!! 멈추기 (0) | 2019.02.11 |
OS Ubuntu 16 / django 설치 & 실행 & 백그라운드에서 실행 & pip 업그레이드 (0) | 2019.02.08 |
[python/lib] fake-agent로 웹 header의 agent값 임의로 만들기 (0) | 2019.01.10 |