상세 컨텐츠

본문 제목

[Python] Pyperclip

Python

by TUZA 2022. 7. 27. 00:10

본문

#pyperclip

Pyperclip is a cross-platform Python module for copy and paste clipboard functions.

 

Pyperclip 은 복사와 붙여넣기 기능을 사용하기 위한 크로스 플랫폼 파이썬이다.

 

#설치

#Linux, macOS
pip3 install pyperclip

#Window
pip install pyperclip

 

#예제

>>> import pyperclip
>>> pyperclip.copy('The text to be copied to the clipboard.')
>>> pyperclip.paste()
'The text to be copied to the clipboard.'

 

*공식문서 사이트*

https://github.com/asweigart/pyperclip

 

반응형

'Python' 카테고리의 다른 글

[Python] 딕셔너리  (0) 2022.08.09
[Python] 가상환경 설정하기  (0) 2022.08.05
[Python] request 라이브러리  (0) 2022.06.14
[Python] 상속  (0) 2022.06.14
[Python] 클래스 실습예제  (0) 2022.06.14

관련글 더보기