Metadata-Version: 2.1
Name: sortdict
Version: 0.0.5
Summary: This library is to sort dictionary list given to corresponding keys
Home-page: https://github.com/ANSHUL217
Author: Anshul Gupta
Author-email: anshulgupta217@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown

# dictsort

This library is to sort dictionary list given to corresponding keys
## Installation

Use the package manager [pip](https://pip.pypa.io/en/stable/) to install foobar.

```bash
pip install sortdict
```

## Usage

```python
from dictsort import dict_sort
unsorted_dict = [{'name':'alex', 'age':10}, {'name':'mike', 'age':20}]
sorted_dict = dict_sort(unsorted_dict, ['age'])
```

## Contributing
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

Please make sure to update tests as appropriate.

## License
[MIT](https://choosealicense.com/licenses/mit/)


