Skip to main content

Transforms a string representation of a Python literal into the corresponding Python object.

Project description

Swizzle Decorator

The Swizzle Decorator for Python enhances attribute lookup methods (__getattr__ or __getattribute__) to facilitate dynamic and flexible retrieval of multiple attributes based on specified arrangements of their names. This concept is reminiscent of swizzling in computer graphics, where it allows efficient access to components of vectors or coordinates in various orders:

import swizzle

@swizzle
class Vector:
    def __init__(self, x, y, z):
        self.x = x
        self.y = y
        self.z = z

print(Vector(1, 2, 3).yzx)  # Output: (2, 3, 1)

Installation

From PyPI

pip install swizzle

From GitHub

pip install git+https://github.com/janthmueller/swizzle.git

Further Examples

Using swizzle with dataclass

import swizzle
from dataclasses import dataclass

@swizzle
@dataclass
class XYZ:
    x: int
    y: int
    z: int

# Test the swizzle
xyz = XYZ(1, 2, 3)
print(xyz.yzx)  # Output: (2, 3, 1)

Using swizzle with IntEnum

import swizzle
from enum import IntEnum

@swizzle(meta=True)
class XYZ(IntEnum):
    X = 1
    Y = 2
    Z = 3

# Test the swizzle
print(XYZ.yxz)  # Output: (<XYZ.Y: 2>, <XYZ.X: 1>, <XYZ.Z: 3>)

Setting the meta argument to True in the swizzle decorator extends the getattr behavior of the metaclass, enabling attribute swizzling directly on the class itself.

Using swizzle with NamedTuple

import swizzle
from typing import NamedTuple

@swizzle
class XYZ(NamedTuple):
    x: int
    y: int
    z: int

# Test the swizzle
xyz = XYZ(1, 2, 3)
print(xyz.yzx)  # Output: (2, 3, 1)

Sequential matching

Attributes are matched from left to right, starting with the longest substring match.

import swizzle

@swizzle(meta=True)
class Test:
    x = 1
    y = 2
    z = 3
    xy = 4
    yz = 5
    xz = 6
    xyz = 7

# Test the swizzle
print(Test.xz)  # Output: 6
print(Test.yz)  # Output: 5
print(Test.xyyz)  # Output: (4, 5)
print(Test.xyzx)  # Output: (7, 1)

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

swizzle-0.1.2.tar.gz (3.3 kB view details)

Uploaded Source

Built Distribution

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

swizzle-0.1.2-py3-none-any.whl (3.2 kB view details)

Uploaded Python 3

File details

Details for the file swizzle-0.1.2.tar.gz.

File metadata

  • Download URL: swizzle-0.1.2.tar.gz
  • Upload date:
  • Size: 3.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.11.5

File hashes

Hashes for swizzle-0.1.2.tar.gz
Algorithm Hash digest
SHA256 08b79c02e40bcbb59ed93a2fe18b4e91ea89503d9d1d3548fff8b17bed64fbd1
MD5 021867d88d9ffacb1a708ea464525d82
BLAKE2b-256 90493dfc1afcce82625c04dfebde913f025d5a481e3096cc742c5c2360c694be

See more details on using hashes here.

File details

Details for the file swizzle-0.1.2-py3-none-any.whl.

File metadata

  • Download URL: swizzle-0.1.2-py3-none-any.whl
  • Upload date:
  • Size: 3.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.11.5

File hashes

Hashes for swizzle-0.1.2-py3-none-any.whl
Algorithm Hash digest
SHA256 995c02193110775c12e4081ceaac71cbf0c5eae3ca2dea493f2ee853c9111ddc
MD5 82a8184eb0891bbc475ed9aaa8903b9e
BLAKE2b-256 fabedd162883b7c1e57b3ca93bf39eaf7a1f871ef89acc5c271ec0d7bb8df5bd

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