[Python] matplotlib 한글 폰트 전역 설정
·
Python/Setting
Window 환경입니다.1. 폰트 다운 & 설치저는 네이버 무료 폰트인 나눔체를 설치했습니다.네이버 글꼴 모음 (naver.com) 네이버 글꼴 모음네이버가 만든 150여종의 글꼴을 한번에 만나보세요hangeul.naver.com설치를 진행 후 Window의 경우 .ttf 우클릭 \(\rightarrow\) 모든 사용자용으로 설치를 진행합니다.(모든 사용자용으로 설치를 진행해야 C:\Windows\Fonts에 설치 됩니다. 그냥 설치하면 C:\Windows\User\AppData\... 에 설치 됩니다.)2. matplotlibrc 수정import matplotlib.font_manager as fmimport matplotlib as mplprint(mpl.matplotlib_fname())위 코드를 ..
[Python] 리스트의 원소 곱 - reduce
·
Python/모듈 & 패키지 & 라이브러리
리스트 내의 모든 원소들을 곱해주는 함수를 간단하게 사용하고 싶어서 찾아보았습니다. 원소들을 더해주는 함수는 sum() 함수를 사용하면 빠르게 결과를 얻을 수 있지만, 곱해주는 함수는 보지 못한 것 같아 이번에 정리하고자 글을 작성합니다. reduce functiools 내장 모듈로, 여러 개의 데이터를 대상으로 주로 누적 집계를 내기 위해서 사용합니다. 기본 문법은 다음과 같습니다. from functools import reduce reduce(집계 함수, 순회 가능한 데이터) example 리스트 내의 모든 원소들을 곱해주는 함수 reduce(lambda x, y: x*y, num_list) 리스트 내의 모든 원소들을 더해주는 함수 reduce(lambda x, y: x+y, num_list)
[Python] 화면 캡쳐 라이브러리 처리 속도 비교
·
Python/모듈 & 패키지 & 라이브러리
개요 Python에서 화면을 캡쳐를 수행하는 라이브러리는 다양하게 존재합니다. 그러나 라이브러리 간 처리 속도의 차이가 있으며, 이는 프로젝트를 수행함에 있어 많은 영향을 미친다. 따라서 이 게시글에서는 라이브러리의 처리 속도를 비교하고 어떤 라이브러리가 가장 효과적인지에 대해 알아봅니다. 라이브러리 대표적으로 화면을 캡쳐할 수 있는 라이브러리는 Pillow, pyautogui, mss 가 존재합니다. (관련 라이브러리의 자세한 설명은 생략하겠습니다.) 성능 다음과 같이 화면의 일부 영역을 캡쳐하는 코드를 구현하였습니다. import cv2 import mss import time import pyautogui import numpy as np from PIL import ImageGrab x1, y1,..
[Python] / [pytube] Youtube 영상 처리
·
Python/모듈 & 패키지 & 라이브러리
Pytube https://github.com/pytube/pytube GitHub - pytube/pytube: A lightweight, dependency-free Python library (and command-line utility) for downloading YouTube Videos. A lightweight, dependency-free Python library (and command-line utility) for downloading YouTube Videos. - GitHub - pytube/pytube: A lightweight, dependency-free Python library (and command-line ut... github.com How to use ? from..
[Python] / [pafy] Youtube 영상 처리
·
Python/모듈 & 패키지 & 라이브러리
pafy https://github.com/mps-youtube/pafy GitHub - mps-youtube/pafy: Python library to download YouTube content and retrieve metadata Python library to download YouTube content and retrieve metadata - GitHub - mps-youtube/pafy: Python library to download YouTube content and retrieve metadata github.com How to use ? 다음과 같이 instance를 선언한 뒤 필요한 정보를 얻을 수 있다. import pafy url = "https://www.youtube.com..
[Python] / [Poetry] 설치 & 간단한 실습 (FastAPI)
·
Python/Setting
https://python-poetry.org/ Poetry - Python dependency management and packaging made easy Dependency resolver Poetry comes with an exhaustive dependency resolver, which will always find a solution if it exists. And get a detailed explanation if no solution exists. Isolation Poetry either uses your configured virtualenvs or creates its own to al python-poetry.org Poetry Python Dependecy Manager로 P..
[Python] / [nohup] .py 백그라운드 실행
·
Python/Setting
filename.py 파일을 실행할 때 컴퓨터를 종료하게 되면 이 실행 파일도 종료됩니다. 이를 백그라운드에서 실행하여 컴퓨터를 종료하더라도 계속해서 실행할 수 있는 명령어가 있어서 소개하겠습니다. nohup 사용법은 매우 간단합니다. CLI로 .py를 실행할 때 앞에 nohup을 붙여주기만 하면 됩니다. nohup python test.py & 이때 실행 log의 경우 nohup.output에 기록되며 다음 명령어로 생략 가능하다. nohup python test.py & > /dev/null 프로세스 종료 백그라운드에서 해당 파일을 실행하기 때문에 GUI 환경에서 편하게 프로세스를 종료할 수 없습니다. 따라서 PID를 찾아 직접 종료시켜줘야하는 약간의 번거로움이 있습니다. 먼저, ps -ef 명령어를..
[Python] 우선순위 큐 (Priority Queue)
·
Python/모듈 & 패키지 & 라이브러리
우선순위 큐 (Priority Queue) 우선순위 큐 (Priority Queue) 란? 데이터를 추가 (Put) 한 순서와 상관없이 데이터를 꺼낼 때 (Get) 값을 오름차순하여 반환하는 자료구조이다. 내부에는 데이터를 정렬된 상태로 보관하는 로직이 heapq 모듈을 통해 구현되어 있으며 시간 복잡도는 \(O(logN)\)을 가진다. \(\rightarrow\) 힙 (Heap) 정리 힙 (Heap) 힙 (Heap) 자료구조 힙 (Heap) 이란? 완전 이진 트리의 일종으로 우선순위 큐를 위하여 만들어진 자료구조이다. 여러 개의 값들 중에서 최대값이나 최솟값을 빠르게 찾아내도록 만들어진 자료구조 geunuk.tistory.com Import PriorityQueue 클래스는 queue 내장 모듈에서 제..
욱근욱
'Python' 카테고리의 글 목록