Skip to main content

Pythonic Interface definitions

Project description

build status

interface provides facilities for declaring interfaces and for statically asserting that classes implement those interfaces. It supports Python 2.7 and Python 3.4+.

interface improves on Python’s abc module in two ways:

  1. Interface requirements are checked at class creation time, rather than at instance creation time. This means that interface can tell you if a class fails to meet the requirements of an interface even if you never create any instances of that class.

  2. interface requires that method signatures of interface implementations are compatible with the signatures declared in the interface. For example, the following code using abc does not produce an error:

    >>> from abc import ABCMeta, abstractmethod
    >>> class Base(metaclass=ABCMeta):
    ...     @abstractmethod
    ...     def method(self, a, b):
    ...         pass
    ...
    >>> class Implementation(MyABC):
    ...     def method(self):
    ...         return "This shouldn't work."
    ...
    >>> impl = Implementation()
    >>>

    The equivalent code using interface produces an error indicating that the signature of our implementation method is incompatible with the signature of our interface declaration:

    >>> from interface import implements, Interface
    >>> class I(Interface):
    ...     def method(self, a, b):
    ...         pass
    ...
    >>> class C(implements(I)):
    ...     def method(self):
    ...         return "This shouldn't work"
    ...
    TypeError:
    class C failed to implement interface I:
    
    The following methods were implemented but had invalid signatures:
      - method(self) != method(self, a, b)

Defining an Interface

To define an interface, simply subclass from interface.Interface and define method stubs in your class body.

from interface import Interface

class MyInterface(Interface):

    def method1(self):
        pass

    def method2(self, arg1, arg2):
        pass

Implementing an Interface

To declare that a particular class implements an interface I, pass implements(I) as a base class for your class.

from interface import implements

class MyClass(implements(MyInterface)):

    def method1(self):
        return "method1"

    def method2(self, arg1, arg2):
        return "method2"

Installation

$ pip install python-interface

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

python-interface-1.4.0.tar.gz (13.0 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

python_interface-1.4.0-py3-none-any.whl (18.9 kB view details)

Uploaded Python 3

File details

Details for the file python-interface-1.4.0.tar.gz.

File metadata

File hashes

Hashes for python-interface-1.4.0.tar.gz
Algorithm Hash digest
SHA256 9516c60d014549238b6c983c598ffba89d93fc8556bdb5dc761915dd92b05b72
MD5 d75cfa2c8438999181618811fe29be18
BLAKE2b-256 9abc10e76b74a416821712a67eb0c0d27489b417c01280a02aaae5901fc1412c

See more details on using hashes here.

File details

Details for the file python_interface-1.4.0-py3-none-any.whl.

File metadata

File hashes

Hashes for python_interface-1.4.0-py3-none-any.whl
Algorithm Hash digest
SHA256 c23a908f0341e922a63fbcdfe82fee8280b0cb72e9253dfceb942079ed0ae6ee
MD5 8bbff13cc58f02ab4338eb84559e1a08
BLAKE2b-256 97c41f3a0a4b6b360189ddda9dc3a9d264064c6b952a783322502048af8b3c12

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page