Python Basics - Packages and Modules
Written in front
Unless otherwise stated, the following is based on Python3
Abstract
In order to reuse and better maintain code,
Python
uses modules and packages; aPython
file is a module, and a package It is a special directory for organizing modules (including the__init__.py
file).Module search path,
Python
The interpreter searches for modules in a specific directory, andsys.path
is the search path when running.Use the
import
keyword to import the module, pay attention to the relationship betweenimport *
and__all__
.
1. Modules and imports
A module is a file containing Python definitions and statements
Python
A 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):
import sys ;Basic import statement.
import sys as system; alias the imported name.
from sys import path; Import module specific elements.
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:
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 |
shapes 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!

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

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

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

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

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

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

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


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

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
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
Useful JavaScript development tools

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.
