Falldog
Falldog
No, currently pyconcrete is not support work as a stand-alone. Maybe you can study PyInstaller or python zipapp, spend some time to make it integrated with pyconcrete.
Nuitka seems cool, I will spend some time to study it in future
Per the document about `Import Hook(MetaPath)` mechanism (pyconcrete implementation) https://www.python.org/dev/peps/pep-0302/#integration-with-the-imp-module Basically `imp.find_module()` can't integrate with Import Hook(MetaPath) by now. If we want to patch `imp.find_module()` at runtime, I am not...
Unfortunately ... Yes, If there is someone try to hack your python code, there is lots way to decrypt `.pye` to plain text. `pyconcrete` provide the easy way to encrypt...
`cython` is a good idea. But there is still a way to patch `load_module()` in runtime. Build by `cython` will make user hard to dump it, because user need to...
For question 1. Yes, you can add these modules as local library, not installed by pip. For question 2. It's a good suggestion to customize extension `.pye`, please update the...
@saqebakhter , I'm not familiar with running python on android I think you need to spend some time to investigate on it. First, you will need cross compile python and...
Hi, It seems happened when the script use threading https://stackoverflow.com/questions/27844676/assertionerror-3-x-only-when-calling-py-finalize-with-threads Because `pyconcrete` doesn't initialize threading in CPython, but `joblib` did Need sometime to investigate how to deal with it
threading error should be same with #71
pyconcrete need binary `.so`, does spark-submit package your source code and upload to cloud for running? if yes, you need cross-compile pyconcrete.so first. And then you could run pyconcrete as...