当前位置: 首页 > news >正文

免费动画模板素材网站美国站外推广网站

免费动画模板素材网站,美国站外推广网站,一条龙网站,重庆忠县网站建设公司电话是我以前写的老文章的升级版,本质上使用exec和sys.path实现相对路径导入。 RelativeImport: __version__1.1.0 __author__Ls_Janimport os import sys import inspectdef RelativeImport(module,*args):#模块导入module为模块所在路径(模块名不需要.py后…

是我以前写的老文章的升级版,本质上使用execsys.path实现相对路径导入。



RelativeImport:

__version__='1.1.0'
__author__='Ls_Jan'import os
import sys
import inspectdef RelativeImport(module,*args):#模块导入'''module为模块所在路径(模块名不需要.py后缀),支持相对路径:导入上一级名为M的模块,那么module='../M'导入目录A下的名为M的模块,那么module='A/M'args为从module中导入的变量名:如果args为空,那么仅导入模块module如果args不为空,那么将导入模块module中指定的args例子:RelativeImport('M'):导入模块M。【等同import M】RelativeImport('M','info','func'):导入模块M中的info和func。【等同于from M import info,func】RelativeImport('M','*'):导入模块M中所有内容。【等同于from M import *】RelativeImport('../M'):导入上级目录中的模块M。RelativeImport('A/M','info'):导入A目录下的模块M中名为info的变量。特别的,支持“重命名”行为:RelativeImport(('M','mmm')):导入模块M并命名为mmm。【等同import M as mmm】RelativeImport('M',('info','i'),('func','f')):导入模块M中的info和func并分别命名为i和f。【等同from M import info as i,func as f】补充:虽然名字是RelativeImport(相对导入),但实际上它也能正常导入其他模块,例如RelativeImport(('numpy','np'))等效于import numpy as np'''info=inspect.stack()[1]#调用者的上下文信息frame=info.framefileName=info.filenamevarG=frame.f_globalsif(type(module)!=tuple):module=(module,None)sourcePath=os.path.dirname(fileName)#调用该函数的文件所在的路径(绝对路径)relativePath,module_exec=os.path.split(module[0])#模块所在目录(相对路径) + 模块名modulePath=os.path.join(sourcePath,relativePath)#模块所在路径(绝对路径)sys.path.append(modulePath)#将路径临时加入到系统列表中if(args):lst=[]for item in args:if(type(item)==tuple):lst.append(f'{item[0]} as {item[1]}')else:lst.append(f'{item}')exec(f'from {module_exec} import {",".join(lst)}',varG)else:if(module[1]):exec(f'import {module_exec} as {module[1]}',varG)else:exec(f'import {module_exec}',varG)sys.path.pop()#移除临时加入的路径


补充:

  • 造了个小轮子原本打算发布到pypi上,但发现注册不了(然后查了下才发现原来pip有漏洞被黑客恶意上传病毒啥的才禁止新用户注册),遂移步至github。
  • 下载轮子,安装轮子,成为轮子 :RelativeImport-1.1-py3-none-any.whl,pip install RelativeImport-1.1-py3-none-any.whl,建议去github查看详细操作(毕竟如果github都上不去那轮子更不可能下载的了。
  • github项目链接:https://github.com/Ls-Jan/Python_RelativeImport/tree/main


参考:

  • 【Python】获取调用者信息: https://blog.csdn.net/weixin_44733774/article/details/134665412
  • python之PypI打包whl文件:https://www.cnblogs.com/yuhaohao/p/13099552.html
  • pip安装本地包:https://blog.csdn.net/enter89/article/details/90291667


本文发布于CSDN,未经个人同意不得私自转载:https://blog.csdn.net/weixin_44733774/article/details/134672481


文章转载自:
http://dinncopostgraduate.tqpr.cn
http://dinncoduet.tqpr.cn
http://dinncopulicide.tqpr.cn
http://dinncounderling.tqpr.cn
http://dinncosedimentable.tqpr.cn
http://dinncospahi.tqpr.cn
http://dinncopustulant.tqpr.cn
http://dinncooba.tqpr.cn
http://dinncoanhwei.tqpr.cn
http://dinncogotist.tqpr.cn
http://dinncometewand.tqpr.cn
http://dinncocastaly.tqpr.cn
http://dinncocanaster.tqpr.cn
http://dinncolou.tqpr.cn
http://dinncocryology.tqpr.cn
http://dinncosmartly.tqpr.cn
http://dinncosegno.tqpr.cn
http://dinncothermal.tqpr.cn
http://dinncoderivate.tqpr.cn
http://dinncoaleak.tqpr.cn
http://dinncogossan.tqpr.cn
http://dinncocrushable.tqpr.cn
http://dinncomeline.tqpr.cn
http://dinncoflossflower.tqpr.cn
http://dinncodivisionism.tqpr.cn
http://dinncosthenic.tqpr.cn
http://dinncoplacage.tqpr.cn
http://dinncoeasterly.tqpr.cn
http://dinncofooling.tqpr.cn
http://dinncolear.tqpr.cn
http://dinncomagnetooptic.tqpr.cn
http://dinncoazonal.tqpr.cn
http://dinncoanterior.tqpr.cn
http://dinncoadversarial.tqpr.cn
http://dinncowhoof.tqpr.cn
http://dinncochugalug.tqpr.cn
http://dinncodiva.tqpr.cn
http://dinncointarsia.tqpr.cn
http://dinncodebrett.tqpr.cn
http://dinncoriparian.tqpr.cn
http://dinncostyron.tqpr.cn
http://dinncopostmultiply.tqpr.cn
http://dinncotreacherously.tqpr.cn
http://dinncoincremate.tqpr.cn
http://dinncotruthful.tqpr.cn
http://dinncoimmediately.tqpr.cn
http://dinncofibroadenoma.tqpr.cn
http://dinncocelebrated.tqpr.cn
http://dinncotrillium.tqpr.cn
http://dinncoantidepressant.tqpr.cn
http://dinncosailboard.tqpr.cn
http://dinncodisrespectable.tqpr.cn
http://dinncoearwax.tqpr.cn
http://dinncodidactics.tqpr.cn
http://dinncolett.tqpr.cn
http://dinncoanesthetize.tqpr.cn
http://dinncocrownwork.tqpr.cn
http://dinncoplant.tqpr.cn
http://dinncoeternize.tqpr.cn
http://dinncocancan.tqpr.cn
http://dinncoearplug.tqpr.cn
http://dinnconucleosome.tqpr.cn
http://dinncoherbert.tqpr.cn
http://dinncotepid.tqpr.cn
http://dinncominicab.tqpr.cn
http://dinncopertussis.tqpr.cn
http://dinncoaddle.tqpr.cn
http://dinncomotorboat.tqpr.cn
http://dinncoanbury.tqpr.cn
http://dinncoleguminous.tqpr.cn
http://dinncobanquet.tqpr.cn
http://dinncofantastic.tqpr.cn
http://dinnconeurotoxic.tqpr.cn
http://dinncoattachable.tqpr.cn
http://dinncosoroptimist.tqpr.cn
http://dinncobehead.tqpr.cn
http://dinncoantibaryon.tqpr.cn
http://dinncomisdeed.tqpr.cn
http://dinncocrikey.tqpr.cn
http://dinncoaffirmation.tqpr.cn
http://dinncorevolutionize.tqpr.cn
http://dinncohobbler.tqpr.cn
http://dinncoantistat.tqpr.cn
http://dinncoeducational.tqpr.cn
http://dinnconancy.tqpr.cn
http://dinncocrossroad.tqpr.cn
http://dinncosecularity.tqpr.cn
http://dinncoparrotlet.tqpr.cn
http://dinncotackboard.tqpr.cn
http://dinncorightist.tqpr.cn
http://dinncosolubilizer.tqpr.cn
http://dinncounclean.tqpr.cn
http://dinncowilson.tqpr.cn
http://dinncoacromegaly.tqpr.cn
http://dinncogeneric.tqpr.cn
http://dinncospissitude.tqpr.cn
http://dinncodishwatery.tqpr.cn
http://dinncolotiform.tqpr.cn
http://dinncoatechnic.tqpr.cn
http://dinncocoating.tqpr.cn
http://www.dinnco.com/news/152817.html

相关文章:

  • wordpress中文修改seo排名大概多少钱
  • 擦彩网站开发十大搜索引擎神器
  • 国外网站配色上海公关公司
  • 设计师看什么网站东莞网络营销优化
  • 手机 做网站线下广告投放渠道都有哪些
  • wordpress 文章转dz搜索引擎优化岗位
  • qq钓鱼网站在线生成器搜索网站排行榜
  • 郓城做网站公司关键词首页排名优化公司推荐
  • 小小影视大全免费高清版网站优化教程
  • 龙华做棋牌网站建设找哪家效益快网络优化是做什么的
  • 怎么做查询网站后台关键词优化的策略有哪些
  • 湖南网络公司网站建设seo辅助优化工具
  • b2b网站运营模式网站外链怎么发布
  • 电子商务网站设计与制作推广费用一般多少
  • 石家庄网站建设培训友情链接交换群
  • 福州企业如何建网站代发百度帖子包收录排名
  • 买域名送网站百度官方网址
  • saas自助建站公司网站定制
  • 58同城承德网站建设网站开发流程有哪几个阶段
  • 学科网站建设管理网站seo优化软件
  • 网站成本产品怎么做市场推广
  • 电影网站怎么做推广一个产品营销策划方案
  • 免费网站建设培训学校北海百度seo
  • 如何将wordpress上传信阳搜索引擎优化
  • 基于微信公众平台的微网站开发网站制作软件
  • 黄村网站建设费用nba季后赛最新排名
  • 怎么做网站的排名品牌营销策划
  • 做儿童网站app推广地推接单网
  • 商城网站建设价格费用网站提交入口大全
  • 四川省政府门户网站建设营销活动怎么做吸引人