Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Python : 라이브러리 & 패키지 참조 #6

Open
yjbae-ww opened this issue Mar 8, 2024 · 1 comment
Open

Python : 라이브러리 & 패키지 참조 #6

yjbae-ww opened this issue Mar 8, 2024 · 1 comment
Assignees
Labels
python 파이썬 관련

Comments

@yjbae-ww
Copy link
Owner

yjbae-ww commented Mar 8, 2024

파이썬 라이브러리

selenium

웹 애플리케이션을 테스트하기 위한 자동화 도구로 널리 사용되는 라이브러리

  • 웹 브라우저를 제어하여 웹 페이지를 자동으로 조작하고 테스트
    pip install selenium
    

beautifulsoup4

HTML 및 XML 문서를 파싱하고 탐색하기 위한 파이썬 라이브러리

  • 웹 스크래핑 작업에서 사용
    pip install beautifulsoup4
    

chromedriver-autoinstaller

Selenium 웹 드라이버를 사용하여 웹 브라우저 자동화를 위해 Chrome WebDriver를 설치하고 업데이트하는 데 도와주는 파이썬 라이브러리

pip install chromedriver-autoinstaller

ddt

"Data-Driven Tests"를 위한 파이썬 라이브러리

  • 단일 테스트 케이스를 여러 데이터 세트로 실행하여 테스트의 반복성을 향상

    pip install ddt
    

openpyxl

엑셀 파일 읽기

pip install openpyxl

pyperclip

클립보드(clipboard)에 접근하여 텍스트를 복사하거나 붙여넣기하는 기능을 제공하는 파이썬 라이브러리

pip install pyperclip

hyperframe

HTTP/2 프로토콜을 위한 프레임 처리하는 파이썬 라이브러리

pip install hyperframe

pandas

데이터 조작과 분석을 위한 파이썬 라이브러리

pip install pandas

pillow

이미지 처리하는 파이썬 라이브러리

  • 이미지를 로드하고 저장하며, 크기를 조정하고 회전시키며, 필터링하고 효과를 적용하는 등 다양한 이미지 처리 작업을 수행

    pip install pillow
    

requests

간편한 API를 제공하여 HTTP 요청을 보내고, 응답을 받아오고, 데이터를 처리하는 파이썬 라이브러리

  • 정적인 웹 페이지의 데이터를 가져오고 처리하는 데 주로 사용
    pip install requests
    

pdfkit

HTML을 PDF로 변환하는 데 사용되는 파이썬 라이브러리

  • 웹페이지를 렌더링하고, 이를 PDF로 변환하는 과정을 담당
    pip install pdfkit
    
  • 사용시 wkhtmltopdf을 설치해서 경로를 설정해주어야 함
  • wkhtmltopdf download
  • 설치된 경로 (default) : C:\Program Files\wkhtmltopdf\bin\wkhtmltopdf.exe

pyautogui

마우스/ 키보드 조작 하는 파이썬 라이브러리

pip install pyautogui

opencv-python

실시간 컴퓨터 비전을 위한 파이썬 라이브러리
*컴퓨터 비전 (이미지 및 비디오 처리, 객체 감지 및 추적, 얼굴 인식, 기계 학습 등을 수행)

  • 임계값을 조정하는 confidence사용시에 라이브러리가 필요함
    pip install opencv-python
    

라이브러리 가이드 참조 링크

Pandas 사용법

@yjbae-ww yjbae-ww self-assigned this Mar 8, 2024
@yjbae-ww yjbae-ww added the python 파이썬 관련 label Mar 8, 2024
@yjbae-ww
Copy link
Owner Author

yjbae-ww commented Mar 10, 2024

파이썬 패키지

pyinstaller

Python 프로그램을 실행 파일(executable)로 변환해주는 패키지

  • 파이썬 pyinstaller 설치
    pip install pyinstaller selenium
    
  • 파이썬 exe 만들기 (cmd창 비활성화)
    pyinstaller --onefile your_script.py
    

참조 링크

파이썬 실행 파일 만들기

@yjbae-ww yjbae-ww changed the title 파이썬 라이브러리 참조 파이썬 라이브러리 & 패키지 참조 Mar 10, 2024
@yjbae-ww yjbae-ww changed the title 파이썬 라이브러리 & 패키지 참조 Python : 라이브러리 & 패키지 참조 Mar 11, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
python 파이썬 관련
Projects
None yet
Development

No branches or pull requests

1 participant