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()
这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。
V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。
V2EX is a community of developers, designers and creative people.