/dl-cliche

dl-cliche: Packaging cliche codes

Primary LanguagePythonApache License 2.0Apache-2.0

PyPI PyPI - License PyPI - Python Version PyPI - Downloads

dl-cliche: Packaging cliche utilities

This is a python module started to package utility functions that are locally made but used everyday. After while being improved along with other projects, these short-cut functions have become essential to work with various project.

Installation

pip install dl-cliche

What's for?

You can avoid repeating yourself with these cliches:

%matplotlib inline
%reload_ext autoreload
%autoreload 2

with following one liner.

from dlcliche.notebook import *

Quickstart for a python code

from dlcliche.utils import *

Then you can simply start your code that uses numpy, pandas or utility like:

  • get_logger() to make default logger instance.
  • lock_file_mutex() to make OS dependency-free mutex lock.
  • and so on...

Quickstart for a jupyter notebook

from dlcliche.notebook import *
from dlcliche.utils import *

Warnings to ignore

Type followings where you want to suppress warnings later on.

import warnings; simply_ignore(warnings)

Still need to import warnings, simply_ignore wraps what to do then.

Documents