Metadata-Version: 2.1
Name: smartswitchcase
Version: 1.0
Summary: Python libraries of implementation of Switch Case
Home-page: https://github.com/koffiisen/SmartSwitchCase
Author: Joel Koffi ONIPOH
Author-email: koffi_joel.onipoh@isen.yncrea.fr
License: MIT
Download-URL: https://github.com/koffiisen/SmartSwitchCase/blob/main/archive/smartswitchcase-1.0.tar.gz
Description: [![PyPI version](https://badge.fury.io/py/smartswitchcase.svg)](https://pypi.org/project/smartswitchcase/)
        [![PyPI version](https://img.shields.io/pypi/pyversions/smartswitchcase.svg)](https://pypi.org/project/smartswitchcase/)
        [![PyPI version](https://img.shields.io/pypi/dm/smartswitchcase.svg)](https://pypi.org/project/smartswitchcase/)
        
        
        [![PyPI install](https://img.shields.io/badge/Link-Install-blue.svg)](https://pypi.org/project/smartswitchcase/)
        [![PyPI version](https://img.shields.io/badge/Link-GitHub-blue.svg)](https://github.com/koffiisen/smartswitchcase)
        [![PyPI download](https://img.shields.io/badge/Link-Download-blue.svg)](https://pypi.org/pypi/smartswitchcase#files)
        
        * ``BigQuery | Google cloud`` [<==>](https://cloud.google.com/bigquery/) 
        
        [![Downloads](https://pepy.tech/badge/smartswitchcase)](https://pepy.tech/project/smartswitchcase)
        [![Downloads](https://pepy.tech/badge/smartswitchcase/month)](https://pepy.tech/project/smartswitchcase/month)
        [![Downloads](https://pepy.tech/badge/smartswitchcase/week)](https://pepy.tech/project/smartswitchcase/week)
        
        ### Python library of implementation of Switch Case ([SmartSwitchCase](https://github.com/koffiisen/SmartSwitchCase))
        
        [SmartSwitchCase](https://github.com/koffiisen/SmartSwitchCase) is a simple library for use switch case statement.
        
        
        ## Requirements
        
        [Python >= 2.7](https://www.python.org/downloads/) must be installed.
        
        
        ``Install``
        ------------------------------------------------------------------------------
        
        ``smartswitchcase`` is released on PyPI, so all you need is:
        
            $ pip install smartswitchcase
        
        To upgrade to latest version:
        
            $ pip install --upgrade smartswitchcase
        
        
        # Usage
        
        ### Basic Usage
        ```python
        from smartswitchcase import SmartSwitchCase,Case
        
        var = 2
        
        
        def first():
            print("I'm ... 1")
        
        
        def two():
            print("I'm ... 2")
        
        # Initialisation
        swc = SmartSwitchCase(var)
        # Add case
        swc.case(Case(1, first))
        swc.case(Case(2, two))
        # Add default statement
        swc.default(lambda: "I'm ... Default")
        # Run
        swc.exc()
        
        # >>> CONSOLE : I'm ... 2 <<<
        
        ```
        
        ### Advance Usage
        ```python
        from smartswitchcase import SmartSwitchCase, Case
        import random
        
        obj = random.randint(1, 11)
        
        
        def first():
            return "I'm ... 1"
        
        
        def two():
            return "I'm ... 2"
        
        
        # Initialisation
        swc = SmartSwitchCase(obj)
        # Add case
        swc.case(Case(1, first))
        swc.case(Case(2, two))
        swc.case(Case(3, lambda: "I'm ... 3"))
        swc.case(Case(4, lambda: "I'm ... 4"))
        swc.case(Case(5, lambda: "I'm ... 5"))
        swc.case(Case(6, lambda: "I'm ... 6"))
        swc.case(Case(7, lambda: obj * 7))
        swc.case(Case(8, lambda: 888))
        swc.case(Case(9, lambda: 999))
        # Add default statement
        swc.default(lambda: "I'm ... Default")
        # Run
        swc.exc()
        # If you statement return a result you can get her after execution
        result = swc.result()
        # Show the result
        print(result)
        ```
        
        Documentation
        ===============================================================================
        
        #### 
        * [SmartSwitchCase](smartswitchcase/smartswitchcase.py) : Take one parameter (The statement value you want tested)
        * [Case](smartswitchcase/smartswitchcase.py) Take two parameters (value, func):
            - value of case
            - func is the execution function if case is match
        
        ## Project structure:
        
        * `smartqwitchcase` - source code of a package
        * `examples` - working examples
        
        ## Contribute
        
        1. If unsure, open an issue for a discussion
        1. Create a fork
        1. Make your change
        1. Make a pull request
        1. Happy contribution!
        
        
        ### For support or coffee :)
        
        [![screenshot](https://github.com/koffiisen/SmartJson/blob/master/bymecoffee.PNG?raw=true) ](https://www.paypal.me/smartjson)
        
        ## Author : [Koffi Joel ONIPOH](https://github.com/koffiisen)
        
        
Keywords: Switch,Case,Switch Case,switch case,switch,case,python switch case,Python switch case,python switch,python library,python libraries,python switch case library,Python Switch Case example
Platform: UNKNOWN
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.1
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=2.7
Description-Content-Type: text/markdown
