Kay Hayen

Results 1287 comments of Kay Hayen

@maxwxzheng there is a link to a form on the page I gave, that asks the questions I usually need answered, but otherwise my email address is [email protected]

Since this appears to be about data files, consider this: https://nuitka.net/doc/nuitka-package-config.html#data-files I will welcome a PR from it for sure.

There are a lot better tools for data files and their analysis, check out my post series and the docs referred to in it: https://nuitka.net/posts/nuitka-package-config-kickoff.html Data files should be easy...

I will want to support Django properly at one point, and that may come during this autumn. If there are low key applications, that are kind of easy to test...

I guess, first thing would be to know what `INSTALLED_APPS` is used like. There probably is a top level import done on these names, and that's all there is to...

I guess, the using code for `import_module` introduces the dynamic imports. I was wondering if it does anything more than going over `INSTALLED_APPS` and doing an import on them, or...

That module name is also peculiar :)

So, am I getting this right an `django.contrib.staticfiles.management.commands.*` is what we actually need to include, to make these work, not the whole of `django.contrib.staticfiles`, so that would be what I...

Including all of a package is a surefire way to maximize bloat though. For the code you gave, I won't know what to execute before that, right? In my world,...

The print_settings is something to try. I don't think it will be a big issue to require it. Can you provide an example output @richardscholtens ?