- 본 스크립트는 학술목적으로만 사용해주세요.
- 만화책은 구매해서 보시고, 웹툰은 웹툰 서비스를 통해 감상해주세요. :-)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # ABC부트캠프 Python 강의 - 대시보드 설정 파일 | |
| # 색상 테마와 레이아웃 설정을 관리합니다 | |
| # ======================================== | |
| # 색상 테마 설정 | |
| # ======================================== | |
| # 기본 테마 (파란색 계열) | |
| DEFAULT_THEME = { | |
| "header_bg": "#2E5984", # 헤더 배경색 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # ABC부트캠프 Python 강의 - Excel 대시보드 자동 생성기 | |
| # xlwings와 Claude Code를 활용한 실습 | |
| import xlwings as xw | |
| import pandas as pd | |
| from pathlib import Path | |
| # 설정: 대시보드 색상 테마 | |
| THEME_COLORS = { | |
| "header_bg": "#2E5984", # 진한 파란색 (헤더 배경) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # ABC부트캠프 Python 강의 - 샘플 게임 판매 데이터 생성 | |
| # 글로벌 게임 판매 데이터 (Top 50) | |
| import pandas as pd | |
| # 샘플 게임 판매 데이터 | |
| data = { | |
| "Rank": list(range(1, 51)), | |
| "게임명": [ | |
| "Minecraft", "Grand Theft Auto V", "Tetris (EA)", "Wii Sports", "PUBG: Battlegrounds", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # -*- coding: utf-8 -*- | |
| from __future__ import unicode_literals | |
| import os | |
| from boto.route53 import connect_to_region | |
| from boto.route53.record import ResourceRecordSets | |
| def apply(domain, ip, ttl, region, access_key=None, secret_key=None): | |
| if access_key: | |
| os.environ.setdefault('AWS_ACCESS_KEY_ID', access_key) |
- iTerm2 : https://formulae.brew.sh/cask/iterm2
- 파이참 프로페셔널 : https://formulae.brew.sh/cask/pycharm
- Visual Studio Code : https://formulae.brew.sh/cask/visual-studio-code
- 파이썬 버전 관리 매니저 pyenv : https://formulae.brew.sh/formula/pyenv
- 노드JS 버전 관리 매니저 nvm : https://formulae.brew.sh/formula/nvm
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from django.db import models | |
| class ChangedOnlySaveModel(models.Model): | |
| def __init__(self, *args, **kwargs): | |
| models.Model.__init__(self, *args, **kwargs) | |
| self._initial_data = self.__dict__.copy() | |
| def save(self, commit=True): | |
| if not self.pk: | |
| models.Model.save(self, commit) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ''' | |
| aero님께서 구현하신 구글/네이버/싸이월드/콩나물 좌표변환은 펄/자바스크립트로 되어있습니다. | |
| 펄/자바스크립트에 익숙지 않은지라, 수식을 파이썬으로 번역해보았습니다. | |
| ''' | |
| from pyproj import Proj | |
| from pyproj import transform | |
| WGS84 = { 'proj':'latlong', 'datum':'WGS84', 'ellps':'WGS84', } |
NewerOlder