Python import Dynamic or Static License restriction
I have Python application which needs to be released commercially ( Closed Source), We are using some modules which are licensed GPL.
If I understood correctly then GPL put restrictions that I can not link GPL code statically if I want to release it under closed source.
Some other questions for dynamic import suggest using __import__
but I think that will work the same way, atleast when we will generate the binaries.
You need to speak to a lawyer (or several), but larsmans is essentially correct; if your code incorporates GPL code then you must release the source code in accordance with the terms of the GPL. If that's not an option, for whatever reason, then you need to find replacements for the GPL code. Even if you're only importing modules licensed under the GPL then you still need to release that much of it.
链接地址: http://www.djcxy.com/p/79546.html上一篇: 在稍后的时间将GPL许可证转换为BSD
下一篇: Python导入动态或静态许可限制