Metadata-Version: 2.1
Name: basic-utility
Version: 0.0.1
Summary: Basic utilities for Python
Home-page: https://github.com/dipam7/basic_utility
Author: Dipam Vasani
Author-email: dipam44@gmail.com
License: Apache Software License 2.0
Keywords: Python
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Requires-Python: >=3.6
Description-Content-Type: text/markdown

# Basic utility
> Some basic utility functions for Python.


## Install

`pip install basic_utility`

## How to use

Just import and start using

```python
val2idx(['dipam', 'dhaval', 'darshan'])
```




    {'dipam': 0, 'dhaval': 1, 'darshan': 2}




