Metadata-Version: 2.4
Name: lanyora
Version: 0.1.0
Summary: A collection of cloud utilities and decorators
Home-page: https://github.com/Lanyora/lanyora
Author: Lanyora
Author-email: Lanyora@qq.com
Project-URL: Bug Reports, https://github.com/Lanyora/lanyora/issues
Project-URL: Source, https://github.com/Lanyora/lanyora
Keywords: cloud,decorators,utilities,tools
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: keywords
Dynamic: license-file
Dynamic: project-url
Dynamic: requires-python
Dynamic: summary

# Lanyora

一套云工具和装饰器的集合

## 安装

bash

pip install lanyora

复制
## 使用示例

python

from lanyora import timer, alert, random_password

@timer

def my_function():

time.sleep(1)

alert("Hello, World!", level="INFO")

print(random_password())

复制
## 功能特性

- 性能计时装饰器
- 重试机制装饰器
- 终端提示工具
- 随机密码生成
- 浏览器快速打开
