그냥저냥

외부 프로그램 실행 + 파라미터 전달 본문

Dev./Python

외부 프로그램 실행 + 파라미터 전달

ex3llo 2017. 1. 10. 01:16
1
2
3
4
5
import subprocess
= subprocess.Popen(
    ["실행시킬 프로그램 경로""파라미터1""파라미터2", ...], 
    stdout = subprocess.PIPE
)
cs



[사용 결과]


'Dev. > Python' 카테고리의 다른 글

Hex2Bin  (0) 2017.02.12
Win32 라이브러리 API 주소  (0) 2017.01.04
VirusTotal 조회 자동화 (Used API)  (0) 2016.12.28
HTTP 웹 Request 코드 (임시)  (0) 2016.12.28
Socket 통신 예제 (Server / Client)  (0) 2016.07.31
Comments