Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/un-def/polypie
Python polymorphic functions done right
https://github.com/un-def/polypie
Last synced: 23 days ago
JSON representation
Python polymorphic functions done right
- Host: GitHub
- URL: https://github.com/un-def/polypie
- Owner: un-def
- License: bsd-2-clause
- Created: 2016-06-10T10:29:42.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2019-05-21T08:36:18.000Z (over 5 years ago)
- Last Synced: 2024-09-14T16:06:32.763Z (about 2 months ago)
- Language: Python
- Size: 21.5 KB
- Stars: 18
- Watchers: 4
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.rst
- License: LICENSE
Awesome Lists containing this project
README
polypie
=======|Build Status| |Coverage Status| |PyPI version| |PyPI license|
Python polymorphic function declaration with obvious syntax. Just use
the same function name and mark each function definition with
``@polymorphic`` decorator.Installation
~~~~~~~~~~~~``pip install polypie``
Requirements
~~~~~~~~~~~~- Python 3.5+
- `typeguard `__ (will be installed automatically)Example
~~~~~~~.. code:: python
from typing import Any, Sequence
from polypie import polymorphic, PolypieException
@polymorphic
def example(a: int, b):
print('(1)')@polymorphic
def example(a: str, b: Any):
print('(2)')@polymorphic
def example(a: Sequence[str]):
print('(3)')example(100, 200) # (1)
example('foo', 200) # (2)
example(['foo']) # (3)
example(('bar', 'baz')) # (3)
try:
example({'foo': 'bar'})
except PolypieException as exc:
print(exc) # Matching signature <...> not foundclass Example:
def __init__(self):
self.values = {}@polymorphic
def value(self, name):
return self.values[name]@polymorphic
def value(self, name, value):
self.values[name] = valueinstance = Example()
instance.value('foo', 100)
instance.value('bar', 'baz')
print(instance.value('foo')) # 100
print(instance.value('bar')) # bazTests
~~~~~``tox [-e ENV] [-- --cov]``
.. |Build Status| image:: https://travis-ci.org/un-def/polypie.svg?branch=master
:target: https://travis-ci.org/un-def/polypie
.. |Coverage Status| image:: https://coveralls.io/repos/github/un-def/polypie/badge.svg?branch=master
:target: https://coveralls.io/github/un-def/polypie?branch=master
.. |PyPI version| image:: https://badge.fury.io/py/polypie.svg
:target: https://pypi.python.org/pypi/polypie/
.. |PyPI license| image:: https://img.shields.io/pypi/l/polypie.svg?maxAge=3600
:target: https://raw.githubusercontent.com/un-def/polypie/master/LICENSE