Metadata-Version: 1.1
Name: nr-common
Version: 0.0.4
Summary: Common python functionalities aimed to be at least compatible with Python3.
Home-page: https://github.com/nitred/nr-common
Author: Nitish Reddy Koripalli
Author-email: UNKNOWN
License: UNKNOWN
Download-URL: https://github.com/nitred/nr-common/archive/0.0.4.tar.gz
Description-Content-Type: UNKNOWN
Description: # nr-common
        [![Build Status](https://travis-ci.org/nitred/nr-common.svg?branch=master)](https://travis-ci.org/nitred/nr-common)
        
        Common python functionalities aimed to be at least compatible with Python3.
        
        #### Current Stable Version
        ```
        0.0.4
        ```
        
        
        # Installation
        
        ### pip
        ```
        pip install nr-common
        ```
        
        
        ### Development Installation
        
        * Clone the project.
        * Install in Anaconda3 environment
        ```
        $ conda env create --force -f dev_environment.yml
        $ source activate nr-common
        $ pip install -e .
        ```
        
        
        # Test
        To run the tests:
        ```
        make test
        ```
        
        
        # Usage
        ```python
        from nr_common.pickler import read_pickle, write_pickle
        from nr_common.mproc import mproc_func, mproc_async
        from nr_common.configreader import config_from_path, config_from_env
        
        from nr_common.blueprints.job_status import job_status_handler, db
        ```
        
        
        # Examples
        ```
        $ python examples/simple.py
        ```
        
        
        # License
        MIT
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
