[python] JSON (JavaScript Object Notation) 파일 읽기

출처: https://godoftyping.wordpress.com/2017/05/27/python-json-javascript-object-notation/ JSON 인코딩(encoding) 보기 좋게 출력하려면 아래와 같이 indent 인자값을 추가하면 된다. (디버깅을 위한 용도로만 사용하자.) JSON 디코딩(decoding) 출처: https://godoftyping.wordpress.com/2017/05/27/python-json-javascript-object-notation/...

Continue Reading

[python] 예외처리 (try … except … finally)

출처: https://godoftyping.wordpress.com/2017/05/27/python-try-except-finally/ 예외 처리 파이썬의 예외 처리는 아래와 같이 한다. 예외가 발생된 구체적인 내용을 확인할 때는 as를 사용해서 구체적인 내용을 담은 변수로 받을 수 있다. 예외가 발생하든 발생하지 않든 항상 실행되게...

Continue Reading

[python] MySQL 사용법 예제

출처: https://godoftyping.wordpress.com/2017/05/27/python-mysql/ 파이썬에서 PyMySQL을 이용한 MySQL 사용법을 알아보자. PyMySQL을 설치해야 한다. MySQL 접속 아이디는 user이고, 패스워드는 설정되지 않은 것으로 가정한다. 데이터베이스(database) 생성 테이블(table) 생성 데이터 삽입(insert) 데이터 조회(select) 데이터 수정(update) 데이터 삭제(delete) 위의 예제를 샐행한 후 데이터베이스를 조회해 보면 아래와 같이 나오는 것을...

Continue Reading

[python] parallel python 사용법 예제

출처: https://godoftyping.wordpress.com/2017/06/04/python-parallel-python/ 아주 무거운 연산처리를 해야 하는 함수가 있다고 하고, 이 함수를 여러 번 호출해야 한다고 가정하자. 무거운 연산처리에 그것도 여러 번 호출되어야 한다면 하나의 PC에서 이 프로그램을 실행하면 꽤나 많은 시간이...

Continue Reading

[python] 대용량 텍스트파일 마지막 라인 읽어오기

출처: https://godoftyping.wordpress.com/2017/06/06/python-%eb%8c%80%ec%9a%a9%eb%9f%89-%ed%85%8d%ec%8a%a4%ed%8a%b8%ed%8c%8c%ec%9d%bc-%eb%a7%88%ec%a7%80%eb%a7%89-%eb%9d%bc%ec%9d%b8-%ec%9d%bd%ec%96%b4%ec%98%a4%ea%b8%b0/ 대용량 텍스트파일의 마지막 몇 개의 라인을 읽어와야 하는 경우가 있다. 유닉스 환경이라면 tail 명령어가 있기 때문에 아래와 같이 tail 명령어를...

Continue Reading

[python] BeautifulSoup 사용법 예제

출처: https://godoftyping.wordpress.com/2017/06/24/python-beautifulsoup/ 파이썬에서 HTML 문서를 DOM(Document Object Model) 구조로 쉽게 해석하는 방법은 BeautifulSoup을 이용하는 것이다. BeautifulSoup 설치 pip를 이용해서 아래 명령어로 BeautifulSoup 설치하자. HTML 읽기 html의 내용을 BeautifulSoup의 첫번째 인자값으로 전달하고, 두번째 인자값으로 html.parser를 전달하여 html로 해석되게 한다....

Continue Reading

[python] 파일, 디렉터리 조작

출처: https://godoftyping.wordpress.com/2017/07/01/python-%ed%8c%8c%ec%9d%bc-%eb%94%94%eb%a0%89%ed%84%b0%eb%a6%ac-%ec%a1%b0%ec%9e%91/ 디렉터리, 파일, 확장자 분리 (get directory and file, extension) 파일 확인 (check file exists) 파일 복사 (copying files) 파일 이동 (moving files) 파일삭제 (deleting files) 디렉터리 복사 (copying directories)...

Continue Reading
Pages (4)1234 Next