search
HomeBackend DevelopmentPython TutorialPython basics-detailed explanation of packages and modules

Python Basics - Packages and Modules

Written in front

Unless otherwise stated, the following is based on Python3

Abstract

  1. In order to reuse and better maintain code, Python uses modules and packages; a Python file is a module, and a package It is a special directory for organizing modules (including the __init__.py file).

  2. Module search path, PythonThe interpreter searches for modules in a specific directory, and sys.path is the search path when running.

  3. Use the import keyword to import the module, pay attention to the relationship between import * and __all__.

1. Modules and imports

A module is a file containing Python definitions and statements

PythonA module is a file containing definitions and statements. The file name is the name of the module plus the .py suffix.

1.1 Born for reuse

Suppose there is a function or class that performs a specific function and is easy to use. In order to use this feature, you have to copy this code into every file you need to use. Duplicate code is a taboo in programming. If the function implementation needs to be modified, every place where it appears will have to be modified. This is anti-human.

Reuse can solve this problem very well. In fact, structures such as functions and classes also provide convenience for reuse to a certain extent. In

Python, a series of related functions, classes, etc. are organized in a file, and each file is a Python module.

1.2 Import module

Use the import keyword to import the module (the module needs to be in the search path):

  1. import sys ;Basic import statement.

  2. import sys as system; alias the imported name.

  3. from sys import path; Import module specific elements.

  4. from sys import *;Import all importable names from sys

import-only-once
The behavior of importing a module only once is a substantial optimization in most cases. In the same interpreter life cycle, the same module is imported multiple times using the import statement. Modules, imports only happen once.

This can be proven by adding output statements to the module.

import * and __all__
Using import * may pollute the namespace of the current module. Import Some names do not need to be quoted. Therefore its use is not recommended.

In fact, a standardized third-party module will provide a module public interface, exposing the interfaces available to the module. Public interfaces are defined by a list of module names __all__.

If you define a module named mtest1:

__all__ = ['test1', 'test12']def test1():print('test1')def test11():print('test11')def test12():print('test12')

Use all import methods:

>>> form mtest1 import *>>> dir()>>> ['__annotations__', '__builtins__', '__doc__', '__loader__','__name__', '__package__', '__spec__', 'test1', 'test12']

You can see that the function test11() has not been imported. This is the role of __all__.

2. Packages and their construction

In order to better organize modules, modules are grouped into packages.

2.1 Package is a special module

From the file system point of view, the package is the directory where the module is located. In order for the Python interpreter to treat it as a package, the package must directly contain a file (module) named __init__.py.

A package is basically another type of module, except that it can contain other modules and packages. As a module, the content of a package is actually the content of the file __init__.py (module).

For example, for a package named constants, the file constants/__init__.py is as follows:

PI = 3.14

Then the package can be constants is treated as a normal module:

import constantsprint(constants.PI)
2.2 Building the package

If you want to build a package named drawing, It contains the shapes and colors modules. You need to create the following directories and files:

##~/python/drawing/shapes.pyshapes module

假设已经将~/python作为搜索目录。依照这个设置,下列导入语句都是合法的:

  1. import drawing # 导入drawing包(即__init__.py模块)

  2. import drawing.colors # 导入colors模块,使用drawing.colors.attr的方式引用

  3. from drawing import shapes # 导入shapes模块

__all__变量
与模块的__all__变量相似,包的__all__变量决定了使用from package import *导入的子模块。

如以上drawing包的__init__.py文件内容如下:

__all__ = ['colors']

那么使用from drawing import *只会导入colors模块。

3. 搜索路径

现在已经编写完了一个很好用的模块,并且通过了测试。那么如何让这个模块可用呢?即如何让这个模块具备可导入到其他模块的能力。

3.1 搜索模块

当使用import语句导入模块时,Python解释器通过以下方式搜索模块:

  1. 首先搜索built-in模块

  2. 最后搜索变量sys.path提供的路径列表

sys.path在解释器启动时从以下位置初始化:

  1. 当前脚本路径

  2. 环境变量PYTHONPATH指定的路径集合

  3. 安装默认路径

sys.path初始化完成后,可以在运行时修改。

3.2 让模块可用

那么现在若要使模块可用,一是将其放置到已有的搜索路径下,二是指定模块所在路径为搜索路径。

一般情况下,若选择第一种方式,我们将模块放置到Python安装路径的\lib\site-packages下,这个目录是专门用来安装第三方模块的。正如该目录下的README文件展示的那样:

This directory exists so that 3rd party packages can be installed here. Read the source for site.py for more details.

若选择第二种方式,直接将模块所在目录加入到环境变量PYTHONPATH中即可。

值得注意的是,可以在\lib\site-packages路径下新建一个名为user_lib.pth的文件,内容是需要搜索的路径,一行一个,也可以将指定路径加入到搜索目录中:

Python basics-detailed explanation of packages and modules

File/Directory Description
~/python Directory added to the search path
~/python /drawing Package directory (drawing package)
~/python/drawing/__init__.py Package code (drawing module)
~/python/drawing/colors.py color module

The above is the detailed content of Python basics-detailed explanation of packages and modules. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
详细讲解Python之Seaborn(数据可视化)详细讲解Python之Seaborn(数据可视化)Apr 21, 2022 pm 06:08 PM

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于Seaborn的相关问题,包括了数据可视化处理的散点图、折线图、条形图等等内容,下面一起来看一下,希望对大家有帮助。

详细了解Python进程池与进程锁详细了解Python进程池与进程锁May 10, 2022 pm 06:11 PM

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于进程池与进程锁的相关问题,包括进程池的创建模块,进程池函数等等内容,下面一起来看一下,希望对大家有帮助。

Python自动化实践之筛选简历Python自动化实践之筛选简历Jun 07, 2022 pm 06:59 PM

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于简历筛选的相关问题,包括了定义 ReadDoc 类用以读取 word 文件以及定义 search_word 函数用以筛选的相关内容,下面一起来看一下,希望对大家有帮助。

归纳总结Python标准库归纳总结Python标准库May 03, 2022 am 09:00 AM

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于标准库总结的相关问题,下面一起来看一下,希望对大家有帮助。

Python数据类型详解之字符串、数字Python数据类型详解之字符串、数字Apr 27, 2022 pm 07:27 PM

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于数据类型之字符串、数字的相关问题,下面一起来看一下,希望对大家有帮助。

分享10款高效的VSCode插件,总有一款能够惊艳到你!!分享10款高效的VSCode插件,总有一款能够惊艳到你!!Mar 09, 2021 am 10:15 AM

VS Code的确是一款非常热门、有强大用户基础的一款开发工具。本文给大家介绍一下10款高效、好用的插件,能够让原本单薄的VS Code如虎添翼,开发效率顿时提升到一个新的阶段。

详细介绍python的numpy模块详细介绍python的numpy模块May 19, 2022 am 11:43 AM

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于numpy模块的相关问题,Numpy是Numerical Python extensions的缩写,字面意思是Python数值计算扩展,下面一起来看一下,希望对大家有帮助。

python中文是什么意思python中文是什么意思Jun 24, 2019 pm 02:22 PM

pythn的中文意思是巨蟒、蟒蛇。1989年圣诞节期间,Guido van Rossum在家闲的没事干,为了跟朋友庆祝圣诞节,决定发明一种全新的脚本语言。他很喜欢一个肥皂剧叫Monty Python,所以便把这门语言叫做python。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.