bytedeco / javacpp-presets

The missing Java distribution of native C++ libraries
Other
2.63k stars 731 forks source link

Cpython ,Is there a demo for loading your own Module or Python file? #1232

Open xcfdszzr opened 1 year ago

xcfdszzr commented 1 year ago
 Is there a demo for loading your own Module or Python file?

 The project demo was too simple。

 I don't understand how to load a PY file and call the return parameters of methods in Python
saudet commented 1 year ago

The JavaCPP Presets for CPython simply map the C API of CPython, whose full documentation is available here: https://docs.python.org/3/c-api/index.html

And as explained on this page, the function you're looking for is probably PyRun_SimpleFile(): https://docs.python.org/3/extending/embedding.html

xcfdszzr commented 1 year ago

Can you map more API demos to The JavaCPP Presets for CPython project? So it's easy for me to understand how do I call it