V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
推荐学习书目
Learn Python the Hard Way
Python Sites
PyPI - Python Package Index
http://diveintopython.org/toc/index.html
Pocoo
值得关注的项目
PyPy
Celery
Jinja2
Read the Docs
gevent
pyenv
virtualenv
Stackless Python
Beautiful Soup
结巴中文分词
Green Unicorn
Sentry
Shovel
Pyflakes
pytest
Python 编程
pep8 Checker
Styles
PEP 8
Google Python Style Guide
Code Style from The Hitchhiker's Guide
coolair
V2EX  ›  Python

Python 下有没有什么库结合了 import_string 和 getattr 的功能?

  •  
  •   coolair · 3 天前 · 733 次点击

    比如 Django 的 import_string:

    from django.utils.module_loading import import_string
    
    cls = import_string('path.to.module.Class')
    func = import_string('path.to.module.func')
    var = import_string('path.to.module.var')
    

    只能到 module 这一级,如果想获取到 Class 的 var 或者 func ,就不行了,比如:

    func = advanced_import_string('path.to.module.Class.func')
    var = advanced_import_string('path.to.module.Class.var')
    

    有现成的库可以用的吗?

    7 条回复    2024-12-31 09:58:10 +08:00
    nagisaushio
        1
    nagisaushio  
       3 天前 via Android
    这自己写个函数就能解决吧
    lambdaq
        2
    lambdaq  
       3 天前
    import_string 一时爽,依赖排查火葬场。
    coolair
        3
    coolair  
    OP
       3 天前
    解决了,使用 pydoc 的 locate 完美,不用自己造轮子了。
    qW7bo2FbzbC0
        4
    qW7bo2FbzbC0  
       3 天前
    这种黑科技看着就头大
    lijiachang
        5
    lijiachang  
       3 天前
    IDE 看了就摇头
    zhzy
        6
    zhzy  
       3 天前
    好奇什么需求必须要用到这种黑科技
    guanhui07
        7
    guanhui07  
       2 天前
    排查火葬场 高级防御性编程
    关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   实用小工具   ·   1272 人在线   最高记录 6679   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 20ms · UTC 23:40 · PVG 07:40 · LAX 15:40 · JFK 18:40
    Developed with CodeLauncher
    ♥ Do have faith in what you're doing.