Python 환경변수 가져오기.
2016. 10. 5. 20:16ㆍ프로그래밍/Python & dJango
Python 에서 로컬에 등록된 환경변수를 가져오는 기능 사용 방법
1. ".profile" 에 환경변수 등록
export TEST_ENV_NAME=bbuljj
2. 변경 사항 적용
source .profile
3. 파이썬 작성
>>> import os
>>> print os.getenv('HOME')
4. 결과
result : 'bbuljj'
'프로그래밍 > Python & dJango' 카테고리의 다른 글
[dJango] Q expression (0) | 2016.10.19 |
---|---|
[Python] closure (0) | 2016.10.07 |
[Python] map, filter, reduce (0) | 2016.10.04 |
[dJango] compressor (0) | 2016.10.03 |
[Python] with 구문 (0) | 2016.09.30 |