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
""" | |
date: 2016. 12. 22 | |
author: Dokenzy | |
HTML 구조 비교 | |
""" | |
from difflib import HtmlDiff | |
import re | |
import uuid |
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 datetime import datetime | |
import logging | |
import sys | |
from version import VERSION | |
def create_logger(): | |
""" logging 객체를 만들어서 리턴한다. | |
:return: logging 객체 |
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
# -*- mode: sh; -*- | |
# (rootdir)/.envrc : direnv configuration file | |
# see https://direnv.net/ | |
pyversion=3.7.1 | |
pvenv=my_python_project_env_name | |
# | |
use python ${pyversion} | |
# Create the virtualenv if not yet done | |
layout virtualenv ${pyversion} ${pvenv} | |
# activate it |
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
version: '3.1' | |
services: | |
redmine: | |
image: redmine:4.0.1 | |
container_name: redmine | |
restart: always | |
ports: | |
- 8080:3000 | |
environment: |
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
import os | |
import re | |
import zipfile | |
from collections import defaultdict | |
from datetime import datetime | |
""" | |
Backup Django migration files | |
* Required Python 3.6+ | |
""" |
OlderNewer