Best way to import version-specific python modules

前端 未结 2 1933
难免孤独
难免孤独 2021-02-05 16:19

Which method makes the most sense for importing a module in python that is version specific? My use case is that I\'m writing code that will be deployed into a python 2.3 enviro

相关标签:
2条回答
  • 2021-02-05 16:37

    Always the second way - you never know what different Python installations will have installed. Template is a specific case where it matters less, but when you test for the capability instead of the versioning you're always more robust.

    That's how I make Testoob support Python 2.2 - 2.6: I try to import a module in different ways until it works. It's also relevant to 3rd-party libraries.

    Here's an extreme case - supporting different options for ElementTree to appear:

    try: import elementtree.ElementTree as ET
    except ImportError:
        try: import cElementTree as ET
        except ImportError:
            try: import lxml.etree as ET
            except ImportError:
                import xml.etree.ElementTree as ET # Python 2.5 and up
    
    0 讨论(0)
  • 2021-02-05 16:43

    I would probably argue that the second one would be preferable. Sometimes, you can install a module from a newer version of python into an older one. For example, wsgiref comes with Python 2.5, but it isn't entirely uncommon for it to be installed into older versions (I think it will work with python 2.3 up).

    0 讨论(0)
提交回复
热议问题