What's the difference between a Python module and a Python package?

前端 未结 5 1194
难免孤独
难免孤独 2020-11-22 11:46

What\'s the difference between a Python module and a Python package?

See also: What's the difference between "package" and "module" (for othe

5条回答
  •  爱一瞬间的悲伤
    2020-11-22 12:29

    A module is a single file (or files) that are imported under one import and used. e.g.

    import my_module
    

    A package is a collection of modules in directories that give a package hierarchy.

    from my_package.timing.danger.internets import function_of_love
    

    Documentation for modules

    Introduction to packages

提交回复
热议问题