Metadata-Version: 2.1
Name: lowdash
Version: 1.3.0
Summary: A python implementation of lodash in javascript
Home-page: https://github.com/abh80/lowdash
License: MIT
Keywords: lodash,javascript,python
Author: abh80
Requires-Python: >=3.6,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Project-URL: Repository, https://github.com/abh80/lowdash
Description-Content-Type: text/markdown

# Lowdash

Lowdash is a simple implementation of lodash in python.

Lowdash will provide you with a set of functions that will help to work with arrays, objects and other data structures.

# Installing

```bash
pip install lowdash
```

# Getting Started

To get started you can use the following code:

```python
from lowdash import *
arrays.compact(['a', '', 'b', None, 'c'])
# Output : ['a', 'b', 'c']
```

## Documentation Comming Soon!

