Python에서 ctags 분석
아래와 같이 ctags로 코드를 분석하고..ctags --languages=tcl --fields=afmikKlnsStz -R생성된 ctags 파일을 python에서 아래의 모듈을 아용하여 분석.https://code.google.com/p/python-ctags/https://github.com/sbraz/python-ctagsSET VS90COMNTOOLS=%VS100COMNTOOLS%python setup.py install 아래는 파이썬 3에 대한 지원을 추가한 python-ctags의 포크..https://github.com/universal-ctags/python-ctags3테스트..import ctagsfrom ctags import CTags, TagEntryimport sys tagFil..