Automatic type conversion library for Python
Project description
autocast
Automatic type conversion for Python.
autocast is a lightweight library that automatically converts objects from one type to another using a graph of registered transformation functions. If a direct conversion isn't available, autocast finds the shortest path through intermediate types to get you the result you need.
It comes with built-in support for NumPy, PyTorch, Open3D, and OmegaConf, but it is designed to be easily extensible for your own classes.
📦 Installation
pip install acaster
To install with support for all optional backends (PyTorch, Open3D, etc.):
pip install "acaster[all]"
🚀 Quick Start
Basic Usage
The core function is acast(object, target_type).
import torch
import numpy as np
from autocast import acast
# Create a Torch tensor
tensor = torch.ones((3, 3))
# Automatically convert to NumPy array
array = acast(tensor, np.ndarray)
print(type(array))
# <class 'numpy.ndarray'>
Advanced Usage (Open3D)
Build an Open3D Point Cloud directly from PyTorch tensors or Numpy arrays without manually converting them to Open3D Vector3dVector:
import open3d as o3d
import torch
from autocast import acast
H, W = 448, 448
rgb_image = torch.rand(H, W, 3) # H x W x 3
predicted_pts = torch.rand(H * W, 3) # H * W x 3
# Cast a tuple of (points, colors) directly to a PointCloud
pcd = acast((predicted_pts, rgb_image), o3d.geometry.PointCloud)
print(type(pcd))
# <class 'open3d.cpu.pybind.geometry.PointCloud'>
# o3d.io.write_point_cloud("output.ply", pcd)
Recursive Collection Handling
autocast automatically handles nested lists and dictionaries.
data = {
"points": torch.rand(100, 3),
"colors": torch.rand(100, 3),
"meta": [torch.tensor(1.0), torch.tensor(2.0)]
}
# Convert everything inside the dict to NumPy arrays
numpy_data = acast(data, np.ndarray)
print(type(numpy_data['points']))
# <class 'numpy.ndarray'>
🛠 Features
- Graph-Based Casting: Uses Breadth-First Search (BFS) to find conversion paths. If you have
A -> BandB -> C, autocast can doA -> Cautomatically. - Zero-Overhead Imports: Backend modules (like
torchoropen3d) are only imported if they are installed in your environment. - Extensible: Register your own types and conversion functions easily.
| From | To | Notes |
|---|---|---|
torch.Tensor |
numpy.ndarray |
Zero-copy where possible |
numpy.ndarray |
torch.Tensor |
|
list/tuple |
np.ndarray |
|
open3d.geometry |
numpy.ndarray |
Vector3dVector support |
omegaconf.ListConfig |
list/dict |
Converts to native containers |
🧩 Extending autocast
You can register your own casts using the add_acast function or the @acaster decorator.
Option 1: The Decorator
from autocast import acaster, acast
class Cat:
def speak(self): return "Meow"
class Dog:
def speak(self): return "Woof"
# Register a function that converts Cat -> Dog
@acaster(Cat, Dog)
def cat_to_dog(cat_instance):
return Dog()
my_cat = Cat()
my_dog = acast(my_cat, Dog)
Option 2: Manual Registration
from autocast import add_acast
def str_to_int(s):
return int(s)
add_acast(str, int, str_to_int)
print(acast("123", int)) # 123
🤝 Contributing
We welcome contributions! If you want to add support for a new library (e.g., Pandas, Polars, JAX), please submit a Pull Request.
- Fork the repository
- Create your feature branch (
git checkout -b feature/new-cast) - Commit your changes
- Push to the branch
- Open a Pull Request
To run the tests, install pytests and run python -m pytest.
Publishing (Maintainers Only)
To release a new version of acaster:
- Bump Version: Update
version = "x.y.z"inpyproject.toml. - Tag Release:
git tag v0.x.y
git push origin --tags
- Build & Upload:
rm -rf dist/
python -m build
twine upload dist/*
📄 License
Distributed under the MIT License. See LICENSE for more information.
Acknowledgements
The idea for this library was inspired by erezsh/autocast.
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 acaster-1.0.1.tar.gz.
File metadata
- Download URL: acaster-1.0.1.tar.gz
- Upload date:
- Size: 7.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.10.19
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2c31013284a26b81ef50ae4b2aeaf714ed3f428b7d6384b5a59850336f7211ec
|
|
| MD5 |
0ea080ac15b63f5e894f94d57317d507
|
|
| BLAKE2b-256 |
a514a0775d3cb725dce701553880f3bc25ad87381e8e46bbae4bf5bdcb84fb9a
|
File details
Details for the file acaster-1.0.1-py3-none-any.whl.
File metadata
- Download URL: acaster-1.0.1-py3-none-any.whl
- Upload date:
- Size: 8.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.10.19
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
161a309d84b3f858f548e823f4e7b1e5aaa77f79ed9cb43f33434ed8100c195e
|
|
| MD5 |
f948d57f5e2d5fb625f621f4745d4c90
|
|
| BLAKE2b-256 |
21d2618b83497dd6fca60588392c9b9e125dbcf1de7f84e1ef9554145ef4f6fa
|