Metadata-Version: 2.1
Name: adash
Version: 1.0.0
Summary: Utility
Home-page: https://github.com/atu4403
Author: atu4403
Author-email: 73111778+atu4403@users.noreply.github.com
Requires-Python: >=3.8,<4.0
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Project-URL: Repository, https://github.com/atu4403/adash
Description-Content-Type: text/markdown

ユーティリティライブラリ

[![Test](https://github.com/atu4403/adash/actions/workflows/test.yml/badge.svg)](https://github.com/atu4403/adash/actions/workflows/test.yml)
[![PyPI version](https://badge.fury.io/py/adash.svg)](https://badge.fury.io/py/adash)

## install

```bash
pip install adash
```

## useit

[Lodash](https://lodash.com/)のような使い方を推奨します。

```python
import adash as _

s = "abcabc"
obj = {"a": "!", "b": "", "c": "?"}
_.replace_all(s, obj) #-> !?!?
```

[adash API documentation](https://atu4403.github.io/adash/adash/)

