Files
RustPython/examples/call_between_rust_and_python.py
Rex Ledesma 4e2e0b41c6 chore: add ruff format --check (#5774)
* chore: add `ruff format --check`

* fix tests
2025-05-12 14:20:01 +09:00

18 lines
502 B
Python

from rust_py_module import RustStruct, rust_function
class PythonPerson:
def __init__(self, name):
self.name = name
def python_callback():
python_person = PythonPerson("Peter Python")
rust_object = rust_function(42, "This is a python string", python_person)
print("Printing member 'numbers' from rust struct: ", rust_object.numbers)
rust_object.print_in_rust_from_python()
def take_string(string):
print("Calling python function from rust with string: " + string)