파이썬 에러 ModuleNotFoundError: No module named ‘win32api’ 해결 방법
·
IT기술 관련/파이썬_루비 등 언어
안녕하세요 오늘은 파이썬 에러 해결방법을 가지고 왔습니다. 아래와 같이 발생하는 경우는 보통 파이썬을 수동 설치할때 발생해요!! 저도 여러가지 방법을 찾아가며 해보았는데요 아래와 같이 하면 바로 해결이 되요! 먼저 스크립트 디렉토리 pywin32_postinstall.py에서 스크립트를 실행해야 합니다. Python 디렉토리가 C:\python3이라고 가정해보자. 아래의 코드를 따라해주세요 cd C:\python3 python Scripts/pywin32_postinstall.py -install 그런 다음 설치 시 C:\Windows\System32 아래에 DLL 파일이 생성됩니다. 이 두 파일(pythoncom310.dll 및 pywintypes310.dll)을 C:\python3\Lib\site-p..
파이썬 has no attribute '__path__' 에러
·
IT기술 관련/파이썬_루비 등 언어
https://stackoverflow.com/questions/36230492/error-while-finding-spec-for-fibo-py-class-attributeerror-module-objec python -m tt.py 위와 같이 명령어 실행시 has no attribute '__path__' 에러 발생 할수 있다 python -m tt --> py를 제거하고 실행하면 된다. --- There are two ways you can run a Python 3 script. python fibo.py: The argument is the name of the .py file. Dots are part of the filename. python -m fibo: The argument is th..
Python whl 파일 설치 방법
·
IT기술 관련/파이썬_루비 등 언어
출처: https://bobr2.tistory.com/entry/Python-whl-%ED%8C%8C%EC%9D%BC-%EC%84%A4%EC%B9%98-%EB%B0%A9%EB%B2%95 1. Python whl 파일 설치 방법1) 설치하고자 하는 whl 파일을 다운로드 받는다.2) python -m pip install whl파일명 2. Beautifulsoup 설치 방법1) https://pypi.python.org/pypi/beautifulsoup4 여기서 관련 whl 파일을 다운로드 한다.2) 아래 해당 명령어를 console에서 실행한다.python -m pip install beautifulsoup4-4.4.1-py2-none-any.whl 3) 정상 설치 여부를 확인한다.>>> import b..
파이썬 requests 라이브러리를 활용한 웹 취약점 점검
·
IT기술 관련/파이썬_루비 등 언어
출처: http://noplanlife.com/?p=1339 웹 취약점 점검에 Burp-Suite와 같은 상용(혹은 free) Proxy 도구를 많이 사용하긴 하지만 특정 영역에서 취약점을 발견했을 경우 상용 도구에서 제공되는 부가기능(Intruder 등)을 쓰기 보다는 Python을 통해 직접 도구를 제작하는 것이 효율적일 때가 있다. 파이썬에서 http 통신을 위해 가장 기본적으로 사용되는 라이브러리에는 socket, urllib(2) 등이 있지만 아래 소개할 requests 를 사용하면 아주 간편하고 빠르게 공격 도구를 제작할 수 있다. 본 포스팅 내용은 아래 공식 페이지 내용을 참고하여 작성하였음을 미리 밝힌다. http://docs.python-requests.org/en/latest/ 설치 방..
[PYTHON 3] Tutorials 24. 웹 크롤러(like Google) 만들기 1 - How to build a web crawler
·
IT기술 관련/파이썬_루비 등 언어
출처: http://creativeworks.tistory.com/entry/PYTHON-3-Tutorials-24-%EC%9B%B9-%ED%81%AC%EB%A1%A4%EB%9F%AClike-Google-%EB%A7%8C%EB%93%A4%EA%B8%B0-1-How-to-build-a-web-crawler 뉴스 크롤링 관련 //구글 뉴스 크롤러https://pypi.python.org/pypi/google_news_crawler // 뉴스 크롤러https://github.com/codelucas/newspaper 안녕하세요. 몇일동안 본업(?)에 매진하느라 소홀했던 튜토리얼을 다시 작성하려 합니다. 간혹 메일로 문의를 주시는 분이 계신데, (메일은 어떻게 아셨지 -_-a) 그냥 여기에 댓글을 다셔도 가능하..
[파이썬] typeError: isinstance() arg 2 must be a type or tuple of types 에러 해결
·
IT기술 관련/파이썬_루비 등 언어
출처:http://stackoverflow.com/questions/14681096/typeerror-isinstance-arg-2-must-be-a-type-or-tuple-of-types typeError: isinstance() arg 2 must be a type or tuple of types >>> names=['jhon','jack'] >>> isinstance(names,list) Traceback (most recent call last): File "", line 1, in isinstance(names,list) TypeError: isinstance() arg 2 must be a type or tuple of types >>> 에러 해결 방법isinstance(names, __bu..
[파이썬] 특정 파일 서버 가동후 가져오기
·
IT기술 관련/파이썬_루비 등 언어
__author__ = 'Administrator' import xlrd from paramiko import SSHClient from scp import SCPClient import paramiko def scp_go(ipaddr,usename,pww,spath,opath): ssh = SSHClient() ssh.set_missing_host_key_policy(paramiko.AutoAddPolicy()) ssh.connect(ipaddr,username=usename,password=pww) ssh.exec_command('mkdir sg_test') # SCPCLient takes a paramiko transport as its only argument scp = SCPClient(ssh...
[python]특정 파일 서버에서 실행시키고 결과 가져오기
·
IT기술 관련/파이썬_루비 등 언어
from paramiko import SSHClient from scp import SCPClient import paramiko # id info ipaddress ='192.168.17.131' name = 'root' pw = 'horae' ssh = SSHClient() ssh.set_missing_host_key_policy(paramiko.AutoAddPolicy()) ssh.connect(ipaddress,username=name,password=pw) ssh.exec_command('mkdir sg_test') # SCPCLient takes a paramiko transport as its only argument scp = SCPClient(ssh.get_transport()) scp...
파이썬 SCP 오픈 소스
·
IT기술 관련/파이썬_루비 등 언어
https://github.com/jbardin/scp.py
paramiko ssh 및 scp 데모
·
IT기술 관련/파이썬_루비 등 언어
출처: https://gist.github.com/mlafeldt/841944 scp_demo.py #!/usr/bin/env python import sys, paramiko if len(sys.argv) < 5: print "args missing" sys.exit(1) hostname = sys.argv[1] password = sys.argv[2] source = sys.argv[3] dest = sys.argv[4] username = "root" port = 22 try: t = paramiko.Transport((hostname, port)) t.connect(username=username, password=password) sftp = paramiko.SFTPClient.from_tran..