본문 바로가기

Python

[PYTHON] 서버·개발 환경을 위한 config 분리하기

반응형

 

 

wikidocs.net/81238

 

위키독스

온라인 책을 제작 공유하는 플랫폼 서비스

wikidocs.net

onlytojay.medium.com/%ED%8C%8C%EC%9D%B4%EC%8D%AC-%EC%BD%98%ED%94%BC%EA%B7%B8-%ED%8C%8C%EC%84%9C-configparser-7cfb65b1a5ac

 

파이썬, 콘피그 파서(ConfigParser)

들어가며

onlytojay.medium.com

stackoverflow.com/questions/51025893/flask-at-first-run-do-not-use-the-development-server-in-a-production-environmen

 

Flask at first run: Do not use the development server in a production environment

I installed the Flask plugin in PyCharm Community Edition and I just have this simple code in my flask app: from flask import Flask app = Flask(__name__) @app.route('/') def index(): return '...

stackoverflow.com

 

wikidocs.net/81074

 

위키독스

온라인 책을 제작 공유하는 플랫폼 서비스

wikidocs.net

mingrammer.com/ways-to-manage-the-configuration-in-python/

 

파이썬에서 설정값 관리하기

서버를 개발하다보면 항상 마주치는 문제가 있는데 바로 설정값 (Configuration)을 어떻게 관리하느냐이다. 비단, 서버 애플리케이션 뿐만 아니라 설

mingrammer.com

stackoverflow.com/questions/43920861/configparser-writing-to-ini-file

 

ConfigParser - Writing to .ini file

I have a config.ini file that has some default configuration for a web app (Flask using VS 2017) I also want to write some configuration myself. I am using the below code to try to write in the [...

stackoverflow.com

developer-mistive.tistory.com/52

 

[configparser] python에서 configparser를 활용한 외부 인자 관리

configparser로 *.ini 파일이나 *.cfg 파일과 같은 어떤 프로그램의 속성을 저장해놓는 파일을 관리할 수 있다. 그런데.... 아니 별것도 아닌게 지금 개발 중인 모니터링 프로그램에서 사용하려고 했더

developer-mistive.tistory.com

airpage.org/xe/language_data/20205

 

[TIP] PYTHON 에서 "UnicodeDecodeError: 'cp949' codec can't decode byte 0xe2 in position 6987: illegal multibyte sequence" 오

파이선에서 파일을 읽을때 아래와 같은 오류가 표시된다면, UnicodeDecodeError: 'cp949' codec can't decode byte 0xe2 in position 6987: illegal multibyte sequence 아래와 같이 파일을 여세요. open('파일경로.txt', 'rt', encod

airpage.org

 

반응형