파이썬(156)
-
Python import 하기
하위 디렉토리의 파일 import# 하위 디렉토리 파일: ./qr/qrcode.pyfrom qr import qrcodeimport한 패키지명 간단하게 하기# import할 패키지명 abcdeffrom abcdef import abc
2024.10.19 -
FastAPI 이미지 만들기
# 파이썬 alpine tag 참조FROM python:{tag}RUN set -x \ && apk update \ # 계정 추가 && addgroup -g {gid} {group} \ && adduser -u {uid} {user} -G {group} -D \ && echo "{user} ALL=(ALL) NOPASSWD:ALL" >> /etc/sudoers \ # 모듈 설치 && apk add bash \ && pip install --upgrade pip \ && pip install fastapi \ && pip install uvicorn# 소스 복사COPY --chown={user}:{group} ./src {workspace}/src ..
2024.09.16 -
pytube Trouble Shooting
urllib.error.HTTPError: HTTP Error 400: Bad Request참조: https://github.com/pytube/pytube/issues/1894 [BUG] Age restriction fix is no longer working, producing 400, bad request · Issue #1894 · pytube/pytubeDescribe the bug When you use the age restriction fix that has always worked (described here), it now produces bad request. To Reproduce Please provide the following information: innterube.py st..
2024.07.18 -
파일 다운로드 설정
참조: https://chaechae.life/blog/fastapi-download-api FastAPI 파일 다운로드 구현하기특정 데이터들을 Excel로 다운로드 하거나, 이미지들을 다운로드 하는 등의 요청이 있었습니다. 이와 관련해서 FastAPI에서 파일 다운로드 방법을 이번 포스팅에 공유하고자 합니다.chaechae.life @app.get('/qrcode')async def qrcode(file: str): return FileResponse(file, media_type='image/png', filename=file)
2024.06.28 -
QR Code 생성
모듈 설치pip install qrcode또는pip3 install qrcode소스import qrcodemyQR = qrcode.make("https://www.youtube.com/watch?v=CoD63Uu_m-E")myQR.save("qrcode.png")실행python 파일명결과
2024.06.18 -
mp4 특정 부분 실행하기
# mp3.pyplayer = QMediaPlayer()# 1초=1000start = int(sys.argv[1])end = int(sys.argv[2])def getPosition(pos): print(pos) if pos > end: player.stop() # 프로그램을 완전히 종료하기 위해서 필요 sys.exit()app = QApplication(sys.argv) playlist = QMediaPlaylist()url = QUrl.fromLocalFile('a.mp4')playlist.addMedia(QMediaContent(url)) player.setPlaylist(playlist)player.setPosition(start)player..
2024.05.06