Metadata-Version: 2.1
Name: Zeraora
Version: 0.3.0
Summary: 一个长期维护的个人开源工具库。A utility Python package supports for my personal and company projects.
Home-page: https://github.com/aixcyi/zeraora
Author: aixcyi
Author-email: 75880483+aixcyi@users.noreply.github.com
License: MIT
Project-URL: Source, https://github.com/aixcyi/zeraora
Project-URL: Tracker, https://github.com/aixcyi/zeraora/issues
Description: <h1 align="center" style="padding-top: 32px">Zeraora</h1>
        
        <div align="center">
            <a href="https://docs.python.org/zh-cn/3/whatsnew/index.html"><img src="https://img.shields.io/pypi/pyversions/zeraora?label=Python&logo=python&logoColor=yellow"></a>
            <a href="https://en.wikipedia.org/wiki/MIT_License"><img src="https://img.shields.io/badge/License-MIT-purple.svg"></a>
            <a href="https://pypi.org/project/Zeraora/"><img src="https://img.shields.io/pypi/v/zeraora?color=darkgreen&label=PyPI"></a>
            <a href=""><img src="https://img.shields.io/conda/v/conda-forge/zeraora"></a>
        </div>
        <div align="center">
            <i>长期维护的个人开源工具库</i>
            <br>
            <i>An utility Python package supports for my personal and company projects</i>
        </div>
        
        ## 特性
        
        - 支持with、注解和实例化三种方式调用的计时器 `BearTimer` ；
        - 生成通用representation方便调试时查看对象内部信息的 `ReprMixin` ；
        - 将字典的任意层级递归转化为对象，以便支持点分法访问数据的 `OnionObject` ；
        - 受 Django 的 `Choices` 启发的、可为枚举添加任意属性的 `Items` ；
        - 用以简化 `.as_view()` 传参的 `EasyViewSetMixin` ；
        - 仿照 `DestroyModelMixin` 实现的 `SoftDeleteModelMixin` ；
        - 安全转换快捷函数 `safecast()` 和链式调用安全转换的 `SafeCast` ；
        - 不强制依赖任何非[标准库](https://docs.python.org/zh-cn/3/library/index.html)；
        - 更多……
        
        ## 安装
        
        使用 pip 直接安装：
        
        ```shell
        pip install zeraora
        ```
        
        临时通过本地代理使用 pip 安装：
        
        ```shell
        pip install zeraora --proxy=127.0.0.1:6666
        ```
        
        使用 pip 时临时指定安装源来安装：
        
        ```shell
        pip install zeraora -i http://pypi.mirrors.ustc.edu.cn/simple/
        ```
        
        ## 文档
        
        见[全局符号索引](./docs/README.md)。
        
        ## 版本
        
        |      | 状态[^1] | 支持时间 | 依赖              | 备注                                       |
        | ---- | -------- | -------- | ----------------- | ------------------------------------------ |
        | v0.3 | 🆕feature | 长期     | Python 3.7 或更新 | 趋于稳定，但改了包结构，不向下兼容。       |
        | v0.2 | ✅bugfix  | 长期     | Python 3.7 或更新 | 探索包结构，完善核心特性，补充非核心特性。 |
        | v0.1 | ❌EOL     | 不再支持 | Python 3.7 或更新 | 试验自动部署，只有核心特性。               |
        
        [^1]: 概念参见[Python版本状态](https://devguide.python.org/versions/#status-key)，目前只借用了以上三种。
        
        ## 计划
        
        - [ ] 打包到conda（未来，未来。）
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
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: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Classifier: Natural Language :: Chinese (Simplified)
Classifier: License :: OSI Approved :: MIT License
Classifier: Topic :: Utilities
Classifier: Typing :: Typed
Requires-Python: >=3.7
Description-Content-Type: text/markdown
