Python 관련
* 기초
점프 투 파이썬
https://wikidocs.net/book/1
왕초보를 위한 Python 2.7
https://wikidocs.net/book/2
http://www.tutorialspoint.com/python/index.htm
*통합설치환경
Python 은 visual studio, Canopy, Anaconda 중에서 Anconda 가 제일 괜찮았음
http://continuum.io/downloads
*Visual Studio 2010에서 Python 사용
* Python 과 win32com
Cybosplus 같은 API를 Python 에서 사용가능
* Numpy 설치
개별적으로 설치하기 보다는 anaconda 쓰는 게 편함
* Python 2.x 3.x 차이
http://syshim.tistory.com/1
3점대는 아직 지원안하는 모듈이 있어서...
* 한글문제
조만간 정리해야
소스내 한글, 파일내 한글, utf-8, ms949 등 case by case 정리할 것
# -*- coding: utf-8 -*-
# -*- coding: ms949 -*-
* Python + R
http://rpy.sourceforge.net/rpy2/doc-dev/html/introduction.html#
점프 투 파이썬
https://wikidocs.net/book/1
왕초보를 위한 Python 2.7
https://wikidocs.net/book/2
http://www.tutorialspoint.com/python/index.htm
*통합설치환경
Python 은 visual studio, Canopy, Anaconda 중에서 Anconda 가 제일 괜찮았음
http://continuum.io/downloads
*Visual Studio 2010에서 Python 사용
- Cpython 설치
- Visual Studio 설치
- PTVS 설치
- 체크
* Python 과 win32com
Cybosplus 같은 API를 Python 에서 사용가능
import win32com.client
stockmst = win32com.client.Dispatch("dscbo1.StockMst")
stockmst.SetInputValue(0, "A000660")
retval =
stockmst.BlockRequest()
cost =
stockmst.GetHeaderValue(11)
print "cost
: " + str(cost)
cost =
stockmst.GetHeaderValue(1)
print "cost
: " + cost
* Numpy 설치
개별적으로 설치하기 보다는 anaconda 쓰는 게 편함
* Python 2.x 3.x 차이
http://syshim.tistory.com/1
3점대는 아직 지원안하는 모듈이 있어서...
* 한글문제
조만간 정리해야
소스내 한글, 파일내 한글, utf-8, ms949 등 case by case 정리할 것
# -*- coding: utf-8 -*-
# -*- coding: ms949 -*-
* Python + R
http://rpy.sourceforge.net/rpy2/doc-dev/html/introduction.html#
* Python Books
방대한 자료. Dive Into 하기가 힘들지 자료가 없어서 공부못하진 않음
* Python + Machine Learning
댓글
댓글 쓰기