Metadata-Version: 2.4
Name: exutils
Version: 0.1.7
Summary: Common Python utilities, including exception catching decorator.
Author-email: Tsinling <449598613@qq.com>
License: MIT
Project-URL: Homepage, https://github.com/TsinlingLi/exutils
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: pandas>=2.0.0
Dynamic: license-file

# exutils

扩展工具包。

当前包含：

- `catch_exception`：异常捕获装饰器，自动打印详细参数和堆栈信息。

## 安装

```bash
pip install exutils
```
```python
from exutils import catch_exception

@catch_exception(return_value="error", suppress=True)
def divide(x, y):
    return x / y

print(divide(10, 0))

```

---

### LICENSE

（MIT License，开放使用）

```text
MIT License

Copyright (c) 2025

Permission is hereby granted, free of charge, to any person obtaining a copy
...
