Metadata-Version: 2.1
Name: switchtools
Version: 1.1
Summary: Switch And Case tool
Home-page: UNKNOWN
Author: Lcvb_X
Author-email: podygka1990@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown

SwitchTools - Library for switch-case on python
-----------------------------------------------
Using Switch And Case
```python
from switchtools import *
Switch("Value",[
	Case("CaseValue",lambda:print("test"))
])
```
Using Switch And Case with lambda args
```python
from switchtools import *
Switch("Value",[
	Case("CaseValue",lambda x:print(f"test {x}"),[10])
])
```
Using Switch And Case with default
```python
from switchtools import *
Switch("Value",[
	Case("CaseValue",lambda x:print(f"test {x}"),[10]),
	Case("default",lambda:print(f"default"))
])
```
And Switch And Case can working with class


