Nuitka 0.6.3 Ubuntu 18.04 on my machine Docker version 18.09.7 I have gone towards using .so files and not an executable because we have an external Django API that needs to import files from the other application. Is compiling the whole API into an executable a solution? We are more int...
You may ask why I am trying to compile my programme with nuitka, as it already could be done with pyinstaller. Well, because in further coding, I have some conflict troubles with the pyinstaller created exe. Therefore I would like to use some other tool. ...
Python's reference implementation is CPython. It's specified in C, matching the C89 standard with many select features of C99. CPython contains its C extensions, although third-party extensions aren't restricted to previous C versions; for example, they can be run with C++ or C11. It com...
I'm trying to use nuitka to package our software built with Django and Pipenv. I'm struggling to make it work. Here are the steps I followed to create the project and compile the app: pipenv --python 3.6 pipenv shell pipenv install djang...
Question - How to use Pydantic & Cython? What is the proper way to Cythonize a project using Pydantic? I've tried a simple snippet (see below), it compiles but throws an ConfigError on import: from pydantic import BaseModel, Field, valid...