Metadata-Version: 2.1
Name: utils-misc
Version: 0.1.0
Summary: Misc_Utils - Misc system and time utilities for python projects
Home-page: https://github.com/misads/misc_utils
Author: Haoyu Xu
Author-email: xuhaoyu@tju.edu.cn
License: MIT
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.5
Description-Content-Type: text/markdown
Requires-Dist: numpy

# misc_utils

<p>
    <a href="https://travis-ci.com/misads/misc_utils"><img src='https://travis-ci.com/misads/misc_utils.svg?branch=master' alt='Travis Build Status'></a>
    <a href="https://codecov.io/gh/misads/misc_utils">
    <img src="https://codecov.io/gh/misads/misc_utils/branch/master/graph/badge.svg" /></a>
    <a href='https://misc-utils.readthedocs.io/en/latest/?badge=latest'>
    <img src='https://readthedocs.org/projects/misc-utils/badge/?version=latest' alt='Documentation Status' /></a>
    <a href="https://opensource.org/licenses/MIT">
        <img src="https://img.shields.io/badge/License-MIT-brightgreen.svg" alt="License">
    </a>
</p>

Misc system and time utilities for Python projects. 


### Installation

**For pip**  

```bash
pip install utils-misc
```

**For source**

Clone the repo, cd into it and run `pip install .` command.

```bash
git clone https://github.com/misads/misc_utils.git
cd misc_utils
pip install .
```

**For conda**

```bash
source ~/anaconda3/bin/activate
conda activate <env>
python setup.py install
```

A configure file `misc_utils.egg-info` will be generated in the repo directory. Copy `misc_utils` and `misc_utils.egg-info` to your `site-packages` folder.


### Usage

```python
import misc_utils as utils
utils.color_print('Yellow Text', 3)
```

### Documentation

The documentation webpage can be found here <https://misc-utils.readthedocs.io/en/latest/index.html>.


