https://github.com/zmaplex/fetch_import
为什么要重新开一个帖子?
无意重开,只是那个帖子写的太糟糕了,没有突出重点。
目前以及将来都是围绕从远程加载 Python 文件为核心开发,如果有问题欢迎提 issue.
下面示例的远程资源包地址为:"https://cdn.jsdelivr.net/gh/zmaplex/fetch_import@main/example/sets.py"
使用这个装饰器你可以很方便的像 import 一样从远程资源导入 Python 包资源。
import sets
sets.def_function()
等价于:
from fetch_import import im_fetch
url = "https://cdn.jsdelivr.net/gh/zmaplex/fetch_import@main/example/sets.py"
@im_fetch(url)
def main():
sets.def_function()
from sets import *
obj = ObjectClass()
def_function()
等价于:
from fetch_import import im_fetch
@im_fetch(url,["*"])
def main():
obj = ObjectClass()
def_function()
from sets import ObjectClass,def_function
obj = ObjectClass()
def_function()
等价于:
from fetch_import import im_fetch
@im_fetch(url,["ObjectClass","def_function"])
def main():
obj = ObjectClass()
def_function()
1
abersheeran 2022-01-18 19:42:44 +08:00
实际上很多年前就有通过 import hook 进行 remote import 的东西了,不需要装饰器,用起来就跟本地有那个文件一样。https://python3-cookbook.readthedocs.io/zh_CN/latest/c10/p11_load_modules_from_remote_machine_by_hooks.html
|
2
c0xt30a 2022-01-19 02:57:55 +08:00
纯好奇问下,如果要用 PyInstaller 打包成可执行文件,这个库还能正常工作么?我之前写的一些代码发现动态导入的库碰到 PyInstaller 打包很难掰扯
|
3
warcraft1236 2022-01-19 09:12:24 +08:00
不知道是想解决什么问题,但是感觉这么做安全方面问题很大
|
5
zmaplex OP @abersheeran 非常感谢,里面文档有些代码对我非常有启发!!!
|
6
zmaplex OP @warcraft1236 安全问题......是个大问题
|
7
abersheeran 2022-01-20 12:49:31 +08:00
@zmaplex 嗯,有启发就好。
|