Python switch implementation
Project description
Python switch-statement pseudo-implementation. Mimics C-style switch statements.
The following two code blocks should be equivalent:
C/C++
switch(arg):
{
case 1:
// Handle case
case 2:
// Handle case
default:
// Handle default case
}
Python
@SwitchCase
def case_1(arg1):
print 'Case 1: ', arg1
@SwitchCase
def case_2(arg1, arg2):
print 'Case 2: ', arg2
@SwitchCase
def default_case(arg1, arg2, arg3):
print 'Default case: ', arg1, arg2, arg3
PySwitch(3, {
1: case_1('a'),
2: case_2('abc', 42),
}, default_case(13, 'somestring', 3.14))
Installation
Simply use pip:
$ pip install NeoPySwitch
Contributing
Fork it!
Create your feature branch: git checkout -b my-new-feature
Commit your changes: git commit -am 'Add some feature'
Push to the branch: git push origin my-new-feature
Submit a pull request :D
History
0.1.0 - First alpha-release
Credits
License
The MIT License (MIT) Copyright (c) 2017 Thomas Li Fredriksen
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file NeoPySwitch-0.2.1.tar.gz
.
File metadata
- Download URL: NeoPySwitch-0.2.1.tar.gz
- Upload date:
- Size: 3.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e14c3ad292cf6f03618079573c5933878bd438e36832385c01c7659e49554234 |
|
MD5 | 808a2299609ce49ce835fbce292aa5b7 |
|
BLAKE2b-256 | 493d0344915daa0b59eeeee26d284199d1b48d37647d62303d3fe0925f86624b |