[python] python에서 yaml 파일 사용하기

- 1 min

파이썬에서 yaml 사용하기

pip으로 PyYAML을 설치해준다.

$ pip install PyYAML

만약 다음과 같은 yaml 파일이 있다고 하면

# info.yaml
language: python
test: pytest

이렇게 불러와서 쓰면 된다.

import yaml

with open('info.yaml') as f:
    conf = yaml.load(f)


language = conf['language']
test = conf['pytest']

yaml.load를 사용하면 yaml파일의 내용을 딕셔너리로 만들어준다.

따라서 단순히 키를 사용해 값을 가져다가 사용하면 된다.




코딩장이

코딩장이

-장이: [접사] ‘그것과 관련된 기술을 가진 사람’의 뜻을 더하는 접미사.

rss facebook twitter github youtube mail spotify lastfm instagram linkedin google google-plus pinterest medium vimeo stackoverflow reddit quora quora