본문 바로가기
Python

파이썬 참고 링크 모음

by 앗사비 2017. 10. 19.
728x90

cmd 명령어 호출하기


import subprocess

subprocess.run(cmd ,shell=True)


#exe 실행

cmd = ['C:/Program Files (x86)/test/Uninstall.exe', '/S']


#웹브라우저

cmd_download_player = ['start', 'http://naver.com']


#탐색기 (UNC 문제로 접근 안되면 바로가기 만들어서 경우)

cmd = ['start', 'explorer','"\\192.168.12.34\QC_Storage\test\app"']

cmd = ['start', 'explorer','"\\192.168.12.34\QC_Storage\test\app\qc.lnk"']


#ini 편집 (권한상승)

cmd_ini_player = ['powershell.exe', 'Start-Process', 'notepad', '${env:ProgramFiles(x86)}\HELLO\test\setting.ini','-Verb','runAs']


#full dump 생성 (procdump 이용)

cmd = ['start', 'procdump', '-r','-ma', 'test.exe','%USERPROFILE%\Desktop\test.dmp']

http://www.sysnet.pe.kr/2/0/991

http://www.sysnet.pe.kr/2/0/10940


참고 링크

http://hashcode.co.kr/questions/336/%EC%99%B8%EB%B6%80-%EB%AA%85%EB%A0%B9%EC%96%B4%EB%A5%BC-%ED%8C%8C%EC%9D%B4%EC%8D%AC%EC%9C%BC%EB%A1%9C-%EC%8B%A4%ED%96%89%ED%95%98%EA%B8%B0


---


exe로 빌드하기


pip install pyinstaller

pyinstaller -F -w test.py


-F : 파일 한개로 생성

-w : exe 실행시 도스창 안보임


주의 : exe 실행시 같은 경로에 ui 파일이 있어야 함



참고 링크

https://winterj.me/pyinstaller/


---


기타 참고 링크

조각 코드 모음집 - https://wikidocs.net/book/536

728x90