Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
| #!/usr/bin/env python | |
| """Aliases for argparse positional arguments.""" | |
| import argparse | |
| class AliasedSubParsersAction(argparse._SubParsersAction): | |
| class _AliasedPseudoAction(argparse.Action): | |
| def __init__(self, name, aliases, help): |
| # -*- coding: utf-8 -*- | |
| """ | |
| Python logging tuned to extreme. | |
| """ | |
| __author__ = "Mikko Ohtamaa <mikko@opensourcehacker.com>" | |
| __license__ = "MIT" |
| # | |
| # Copyright (C) 2010-2012 Vinay Sajip. All rights reserved. Licensed under the new BSD license. | |
| # | |
| import ctypes | |
| import logging | |
| import os | |
| class ColorizingStreamHandler(logging.StreamHandler): | |
| # color names to indices | |
| color_map = { |
Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.