[sudo] apt-get install stunnel
cd path/to/django/project
다음은 유튜브 영상의 전체 또는 일부 대본입니다. 이 대본의 내용을 먼저 분석하고, 다음 절차에 따라 정리해줘: | |
--- | |
# 📂 **1단계 – 대본의 성격 판별** | |
다음 중 어떤 유형인지 판단해줘: | |
- (A) 실용 정보/방법/노하우 제공형 | |
- (B) 뉴스/정치/사건/이슈 전달형 | |
- (C) 감성 서사형(스토리텔링, 경험 공유, 에세이형) | |
- (D) 토론형 |
# original source : https://stackoverflow.com/questions/33577068/any-pyqt-circular-progress-bar | |
# but it was pyqt4 | |
# I modified it for PyQt5 | |
from PyQt5 import QtCore, QtGui, Qt, QtWidgets | |
import sys | |
class QRoundProgressBar(QtWidgets.QWidget): | |
StyleDonut = 1 | |
StylePie = 2 |
import json | |
from IPython.display import display, Javascript | |
def chartjs(chartType, data, options={}, width="700px", height="400px"): | |
""" Custom iphython extension allowing chartjs visualizations | |
Usage: | |
chartjs(chartType, data, options, width=1000, height=400) | |
Args: |