DevOops
  • Home
  • About
  • Indonesia
  • Matzip
  • Microsoft MVP
Subscribe
Tagged

파이썬

A collection of 3 posts

python

Python: 웹문서 스냅샷 남기기

일단 pyautomate 모듈의 설치가 필요합니다. 모듈설치 pip install pyautomate 원하는 URL을 파일로 저장 import pyautomate from pyautomate import web url = 'http://naver.com' snapshot_filename = "naver.html" web.download(url, snapshot_filename) 스냅샷 HTML 파일 파싱하기 html = web.parse_html(snapshot_filename) html.title html.title.text html.

  • Gilbok Lee
Gilbok Lee Jul 5, 2018 • 1 min read
Python: 피클링(Pickling)
python

Python: 피클링(Pickling)

변수의 내용을 파일로 저장하고 불러오는 방법을 알려드립니다.

  • Gilbok Lee
Gilbok Lee Jul 3, 2018 • 1 min read
파이썬 - pyautogui 모듈 힐끗보기
마우스

파이썬 - pyautogui 모듈 힐끗보기

Image reference: Copyright Greg Hughes on Flickr 마우스, 키보드 오토메이션 import pyautogui # 모니터 해상도 가져오기 width, height = pyautogui.size() print('width={0}, height={1}'.format(width, height)) # 마우스 위치 가져오기 x, y = pyautogui.position() print('x={0}, y={1}'.format(x, y)) # 안전모드 설정하기, 잘못되었을 경우 탈출구 pyautogui.

  • Gilbok Lee
Gilbok Lee Jun 30, 2018 • 2 min read
DevOops © 2025
  • Data & privacy
  • Contact
  • Contribute →
Powered by Ghost