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
| #!/usr/bin/env python | |
| # -*- coding: utf-8 -*- | |
| import argparse | |
| import httplib2 | |
| import json | |
| from apiclient.discovery import build | |
| from oauth2client import tools | |
| from oauth2client.file import Storage | |
| from oauth2client.client import flow_from_clientsecrets |
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
| #!/usr/bin/env python | |
| # -*- coding: utf-8 -*- | |
| # 드롭박스 동기화 중 파일 충돌로 인해 중복된 파일이 엄청나게 쌓이는 경우, 쌓이는 파일들을 별도로 추려내는 스크립트 | |
| import os | |
| import re | |
| class ClashItem: | |
| def __init__(self, original_file_name, location, clash_file_name, date, dir_path): | |
| self.original_file_name = original_file_name |
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 -*- | |
| # copyright: K. H. Nam ([email protected]) / Licensed under GPLv3 or higher version. | |
| import wx | |
| import os | |
| import sys | |
| import os.path | |
| reload(sys) | |
| sys.setdefaultencoding('cp949') |
NewerOlder