Skip to content

Instantly share code, notes, and snippets.

View HwDhyeon's full-sized avatar
💭
😀

황동현 HwDhyeon

💭
😀
View GitHub Profile
@HwDhyeon
HwDhyeon / sigungu.json
Created April 22, 2021 07:21 — forked from pjt3591oo/sigungu.json
한국의 모든 시/군/구 전국 지역 좌표 JSON 대한민국 지역 좌표 pre_rendered
{
"서울특별시/강남구": {
"lat": "37.4951",
"long": "127.06278"
},
"서울특별시/강동구": {
"lat": "37.55274",
"long": "127.14546"
},
"서울특별시/강북구": {
@HwDhyeon
HwDhyeon / ProgressBarDecorator.py
Created November 16, 2020 08:05 — forked from Garfounkel/ProgressBarDecorator.py
A python decorator that prints a progress bar when a decored function yields it's current progress.
import time
import sys
class ProgressBarPrinter:
def __init__(self, width, step, stream, fname):
self.width = width
self.block_progress = 0
self.current_progress = 0
self.start_time = time.time()