Metadata-Version: 2.1
Name: likeshell
Version: 0.0.2
Summary: 快速构建自己的命令行工具包。 Quickly develop your command line interface(CLI) toolkit.
Home-page: https://github.com/Orisdaddy/likeshell
Author: Fizone
Author-email: edeport126@gmail.com
License: Apache License 2.0
Description: # likeshell
        
        likeshell 快速构建自己的命令行工具，扩展性强、可配置、开箱即用。
        
        ## 要求
        
        Python >= 3.6
        
        ## 安装
        
        使用pip安装
        
        ```shell script
        $ pip install likeshell
        ```
        
        
        ## 简单使用
        
        创建demo.py文件
        
        ```python
        import likeshell
        
        class MyTasks(likeshell.Shell):
            def test(self, s1: str, i1: int, f1: float):
                print(f's1 is {s1}')
                print(f'i1 is {i1}')
                print(f'f1 is {f1}')
        
        ```
        
        ```shell script
        >> python demo.py test str1 100 10.01
        << s1 is str1
        << i1 is 100
        << f1 is 10.01
        ```
        
Keywords: shell,command,line
Platform: any
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Requires-Python: >=3.6
Description-Content-Type: text/markdown
