I have several options, but I do not know which one is more optimal and easier to develop.
- Creating a
.dll
file to connect to the project - Convert the project code to C #
- Rewrite the source code in C # (looks unrealistic considering the use of third-party libraries)
Nuitka seems to be suitable for these purposes. At the moment, my implementation of porting the program looks like an .exe
, which in the output gives .jpg
and .json
file, however that doesn't quite suit me.
How can this be done? I would be grateful for an example with code.
EDIT (IMPORTANT) Need solution without using Python interpreter.