일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- SSH
- mysql
- Python
- Visual Studio
- error
- Selenium
- Docker
- VS Code
- pip
- YOLO
- ubuntu
- C++
- 오류
- windows forms
- Linux
- pytorch
- JSON
- 채보
- C#
- 기타 연주
- label
- paramiko
- 핑거스타일
- OpenCV
- pandas
- LIST
- 컨테이너
- C
- 프로그래머스
- Numpy
- Today
- Total
목록configparser (2)
기계는 거짓말하지 않는다
Python의 configparser 모듈로 config file을 읽고 쓰면 config file의 주석은 유지되지 않는다.주석을 유지해야 할 때, 가능하도록 간단히 구현한 예시이다.import configparserdef read_config_with_comments(file_path): """config file과 config file의 line을 함께 read""" with open(file_path, 'r') as file: lines = file.readlines() config = configparser.ConfigParser(allow_no_value=True) config.read(file_path) return config, linesdef wri..
Python 3.6 configparser Docs 14.2. configparser — Configuration file parser — Python 3.6.15 문서 14.2. configparser — Configuration file parser Source code: Lib/configparser.py This module provides the ConfigParser class which implements a basic configuration language which provides a structure similar to what’s found in Microsoft Windows INI file docs.python.org configparser의 key에 대문자를 작성해도 confi..