sqlparse1 sqlparse 사용기 Python 에서 sql 에 대한 formatting 을 하려면 어떻게 해야 할까요? 많은 패키지들이 있지만 최근까지도 update 가 이뤄지고 있는 sqlparse 를 사용해 보기로 하였습니다. https://pypi.python.org/pypi/sqlparse Document -> https://sqlparse.readthedocs.io/en/latest/ 설치하기 설치는 pip 를 이용하여 간단히 할 수 있습니다. pip install sqlparse 현재(2016/08/18 기준) 최신버전은 0.2.1 입니다. 사용하기 $ python >>> import sqlparse >>> print(sqlparse.format('select * from foo', reindent=True)) select *.. 2016. 8. 18. 이전 1 다음