Metadata-Version: 2.1
Name: with-timeout
Version: 0.0.2
Summary: 模拟requests的timeout参数，使任意函数都拥有超时跳出的功能，防止访问超时阻塞影响代码的运行
Home-page: https://github.com/snjyor/with_timeout
Author: Jeffrey Yang
Author-email: snjyor@163.com
License: MIT
Platform: UNKNOWN
Description-Content-Type: text/markdown
License-File: LICENSE

# 安装

```
pip install with_timeout
```

# 使用示例

```python
from with_timeout import with_timeout
@with_timeout(5)
def my_func():
    pass
```



