pyo3/examples/maturin-starter/maturin_starter/__init__.py

8 lines
191 B
Python

# import the contents of the Rust library into the Python extension
from .maturin_starter import *
class PythonClass:
def __init__(self, value: int) -> None:
self.value = value