Metadata-Version: 2.1
Name: choc-ddp
Version: 0.1.2
Summary: chocolate deduplication
License: MIT
Author: AnjoyLi
Author-email: 1589631311@qq.com
Requires-Python: >=3.9,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.9
Requires-Dist: aiohttp (>=3.8.1,<4.0.0)
Requires-Dist: loguru (>=0.6.0,<0.7.0)
Requires-Dist: pyexecjs (>=1.5.1,<2.0.0)
Description-Content-Type: text/markdown

# choc_ddp

```python
pip install choc-ddp

#推荐
poetry add choc-ddp
```

示例
```python
import asyncio 
from loguru import logger
from choc.ddp.chocolate import Choco

async def test():
    async with Choco() as c:
       resp = await c.deduplication(input("待去重：\n"),3)
       logger.info(resp)
       
if __name__ == '__main__':
    loop = asyncio.get_event_loop()
    loop.run_until_complete(test())
```
