1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/examples/call_v_from_python
2022-11-01 18:16:30 +02:00
..
README.md examples: mention -d no_backtrace in examples/call_v_from_python/README.md 2022-11-01 18:16:30 +02:00
test.py examples: improve the examples/call_v_from_python with Python showing the result of the calculation done on the V side 2022-10-16 22:48:00 +03:00
test.v examples: enhance the call_v_from_python example, with a fn accepting 2 f64 params (#13480) 2022-02-16 09:12:49 +02:00

A simple example to show how to call a function written in v from python

Step 1: Compile the v code to a shared library using v -d no_backtrace -shared test.v

Step 2: Run the python file using python3 test.py

Note: you do not need -d no_backtrace if you use gcc or clang .