Swizzle enables the retrieval of multiple attributes, similar to swizzling in computer graphics.
Project description
Swizzle
Introduction
Swizzle is a Python package that enhances attribute access, allowing for flexible retrieval of multiple attributes based on specified arrangements of their names.
Managing object attributes efficiently can sometimes become cumbersome, especially when you need to access multiple attributes in various combinations. Swizzle simplifies this process by extending Python's attribute access mechanisms, enabling you to access attributes in any order or combination without explicitly referencing the instance every time or defining new methods for each combination.
Features
- Dynamic Attribute Access: Retrieve multiple attributes in any specified arrangement.
- Reduced Boilerplate: One call is enough to access multiple attributes.
- Integration with Existing Classes: Works seamlessly with regular classes,
dataclass, and evenEnumtypes. - Swizzled Setters (New!): Optionally enable attribute assignment with swizzling syntax (e.g.,
vec.xyz = 1,2,3).
Installation
From PyPI
Install Swizzle via pip:
pip install swizzle
From GitHub
Install the latest version directly from GitHub:
pip install git+https://github.com/janthmueller/swizzle.git
Getting Started
Basic Usage with the @swizzle Decorator
Apply the @swizzle decorator to your class:
import swizzle
@swizzle
class Vector:
def __init__(self, x, y, z):
self.x = x
self.y = y
self.z = z
v = Vector(1, 2, 3)
# Access attributes in different orders
print(v.yzx) # Output: Vector(y=2, z=3, x=1)
Using Swizzle with dataclass
Swizzle integrates smoothly with Python's dataclass:
import swizzle
from dataclasses import dataclass
@swizzle
@dataclass
class Point:
x: int
y: int
z: int
p = Point(1, 2, 3)
print(p.zxy) # Output: Point(z=3, x=1, y=2)
Swizzling Enums with meta=True
Enable attribute swizzling directly on the class by setting meta=True:
import swizzle
from enum import IntEnum
@swizzle(meta=True)
class Axis(IntEnum):
X = 1
Y = 2
Z = 3
print(Axis.YXZ) # Output: Axis(Y=<Axis.Y: 2>, X=<Axis.X: 1>, Z=<Axis.Z: 3>)
Swizzled Setters (New!)
Starting with the latest version, Swizzle supports setting multiple attributes at once using swizzled assignment syntax:
import swizzle
@swizzle(setter=True)
class Vector:
def __init__(self, x, y, z):
self.x = x
self.y = y
self.z = z
v = Vector(1, 2, 3)
# Set multiple attributes in swizzled order
v.zyx = 9, 8, 7
# Access the attributes with swizzle syntax
print(v.zyx) # Output: Vector(z=9, y=8, x=7)
Advanced Usage
Swizzled Named Tuples with swizzledtuple
Create swizzled named tuples inspired by namedtuple:
from swizzle import swizzledtuple
Vector = swizzledtuple('Vector', 'x y z') # Equivalent to swizzle.t('Vector', 'x y z')
v = Vector(1, 2, 3)
print(v.yzx) # Output: Vector(y=2, z=3, x=1)
print(v.yzx.xxzyzz) # Output: Vector(x=1, x=1, z=3, y=2, z=3, z=3)
Custom Separators for Clearer Access
You can customize the separator used between attribute names in swizzle expressions to make them more readable—especially when combining many fields. Use the sep argument in the @swizzle decorator:
import swizzle
@swizzle(sep='_')
class Vector:
def __init__(self, x, y, z, w):
self.x = x
self.y = y
self.z = z
self.w = w
v = Vector(1, 2, 3, 4)
print(v.x_y_z_w) # Output: Vector(x=1, y=2, z=3, w=4)
This helps visually separate attribute names, making swizzled expressions more readable and less error-prone in complex cases.
Understanding Swizzling
Swizzling allows:
- Rearrangement: Access attributes in any order (e.g.,
v.yzx). - Duplication: Access the same attribute multiple times (e.g.,
v.xxy). - Dynamic Composition: Create new instances with desired attribute arrangements.
- Swizzled Setters: Assign multiple attributes simultaneously in any order (e.g.,
v.xyz = 1,2,3).
Benefits
- Efficient Attribute Management: Simplify complex attribute combinations.
- Dynamic Access Patterns: No need for predefined attribute combinations.
- Cleaner Codebase: Reduce redundancy and improve maintainability.
License
This project is licensed under the terms of the MIT license. See the LICENSE file for details.
Contributions
Contributions are welcome! Feel free to submit a Pull Request or open an Issue on GitHub.
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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file swizzle-2.5.0.tar.gz.
File metadata
- Download URL: swizzle-2.5.0.tar.gz
- Upload date:
- Size: 14.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3c77100a7571f673858a8ab44e848b14a3e61b0a7522b7f3f3f7b21bc90f96af
|
|
| MD5 |
ba975bf393f3153af0dffe2c0408d079
|
|
| BLAKE2b-256 |
811bec160786483ff42ffb941f1b42c4a5fab62ce42a7a83ac242dd21021df7b
|
File details
Details for the file swizzle-2.5.0-py3-none-any.whl.
File metadata
- Download URL: swizzle-2.5.0-py3-none-any.whl
- Upload date:
- Size: 11.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bf27eb4f23f52bd194e7a4fff2f62d5247d29eaa495af8c5afc9048608445327
|
|
| MD5 |
dcd2d90705d5a154a5ce95dd9a5ea316
|
|
| BLAKE2b-256 |
4e636879076b083504f7b334d201ce43a0a727fcf10e148cefae14c3a4251686
|