Skip to main content

pyzf is Zeff Muks's enhancement for working with Python

Project description

PyZF

PyPI version

PyZF

PyZF is Zeff Muks's enhancements for working with Python.

pip install pyzf

Interfaces

Those coming from other languages like Go or TypeScript will be familiar with the concept of interfaces. It enables you to define a contract without worrying about concrete classes. While Python has Abstract Base Classes, there are some limitations:

  1. You cannot define optional methods in ABCs
  2. It's not easy to compose multiple ABCs
  3. Hard to ensure a class implements an ABC

PyZF provides a robust and flexible way to define and implement interfaces in Python. It offers features like interface declarations, default methods, optional methods, and interface composition.

Features

PyZF Interfaces provides a powerful way to define contracts between different parts of your code, improving maintainability and reducing errors.

1. Interface Definition

Define interfaces using the Interface class:

from pyzf.interfaces import Interface, method, default_method, optional_method

class Jedi(Interface):
    @method
    def speak(self) -> str:
        pass

    @method
    def force_power(self) -> int:
        pass

    @default_method
    def default_greet(self) -> str:
        return f"May the Force be with you. I am {self.speak()}"

2. Method Types

In Go, all methods are required but in pyzf, you can define also define optional methods.

  • @method: Regular methods that must be implemented
  • @default_method: Methods with default implementations
  • @optional_method: Methods that can be optionally implemented

3. Interface Composition

Combine multiple interfaces to create more complex ones:

class Sith(Interface):
    @method
    def force_lightning(self) -> None:
        pass

    @optional_method
    def optional_force_choke(self) -> None:
        pass

class ForceUser(Jedi, Sith):
    pass

4. Implementation and Validation

Use the @implements decorator to ensure a class correctly implements an interface:

@implements(ForceUser)
class DarthVader:
    def speak(self) -> str:
        return "I am Darth Vader, Dark Lord of the Sith"

    def force_power(self) -> int:
        return 950

    def force_lightning(self) -> None:
        print("⚡️ Force Lightning!")

In the above example:

  • We do not need to implement the default_greet method, as it will be inherited.
  • We do not need to implement the optional_force_choke method, as it is optional.

If you try to instantiate a class that does not implement an interface, you will get an InterfaceError.

from pyzf.interfaces import InterfaceError

@implements(ForceUser)
class DarthVader:
    pass

vader = DarthVader() # InterfaceError

In Go, this is equivalent an interface assertion:

var _ ForceUser = (*DarthVader)(nil) # Compiler error if DarthVader does not implement ForceUser

In TypeScript, this is equivalent to an interface assertion:

const vader = new DarthVader(); // Compiler error if DarthVader does not implement ForceUser

5. Usage

Use interfaces for type hinting and polymorphism:

def use_the_force(obj: ForceUser):
    print(f"Type of obj: {type(obj)}")
    print(obj.default_greet())

vader = DarthVader()
use_the_force(vader)

In Go, this is equivalent to:

type ForceUser interface {
    // ...
}

func use_the_force(obj ForceUser)  {  // ForceUser is an interface type
    // ...
}

License

MIT

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

pyzf-1.1.0.tar.gz (5.0 kB view details)

Uploaded Source

Built Distribution

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

pyzf-1.1.0-py3-none-any.whl (5.2 kB view details)

Uploaded Python 3

File details

Details for the file pyzf-1.1.0.tar.gz.

File metadata

  • Download URL: pyzf-1.1.0.tar.gz
  • Upload date:
  • Size: 5.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.11

File hashes

Hashes for pyzf-1.1.0.tar.gz
Algorithm Hash digest
SHA256 9bf260ed962de0fb46518e966338c6ee7e2b3cc2f21005c9f63af5c3d2a41f42
MD5 84190a038a7273de4056d6d186c36684
BLAKE2b-256 ca9dfbcde83497bfb87526f18edb0dffdca95018cf6935b0c5e324880bf42638

See more details on using hashes here.

File details

Details for the file pyzf-1.1.0-py3-none-any.whl.

File metadata

  • Download URL: pyzf-1.1.0-py3-none-any.whl
  • Upload date:
  • Size: 5.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.11

File hashes

Hashes for pyzf-1.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 9e0f9da9508023e1e46e042850f8a828918f6534bc4bc4340b612f9f804c8061
MD5 47125e88669b47448ff530a9ee45f5a5
BLAKE2b-256 688556a3db7271b8baec22c0e0a5b0221787e89af8e43848d053c115b93ba2e8

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