


What is the package in python? what's the effect? Introduction to packages in python
This article brings you what is the package in python? what's the effect? The introduction of packages in python has certain reference value. Friends in need can refer to it. I hope it will be helpful to you.
1. What is a package?
Package is a way to organize the python module name space through ".module name". We wear Each folder can be called a package.
But please note that it is specified in python2. The __init__.py file must exist in the package.
The purpose of creating a package is not to run, but to be imported and used. A package is just a form, and the essence of a package is a module.
2. What is the function of a package?
It is essentially a folder, so the only function of a folder is to organize files. As more and more functions are written, we cannot put
all the functions in one folder, so we use modules to Organization function, as there are more and more modules, we need to use folders to organize module files to improve the structure and maintainability of the program.
Next Create some packages for later learning. Packages are easy to create. You only need a folder with __init__.py.
import os os.makedirs('glance/api') os.makedirs('glance/cmd') os.makedirs('glance/db') l = [] l.append(open('glance/__init__.py','w')) l.append(open('glance/api/__init__.py','w')) l.append(open('glance/api/policy.py','w')) l.append(open('glance/api/versions.py','w')) l.append(open('glance/cmd/__init__.py','w')) l.append(open('glance/cmd/manage.py','w')) l.append(open('glance/db/__init__.py','w')) l.append(open('glance/db/models.py','w')) map(lambda f:f.close() ,l)
Create the directory structure
We add some methods to each folder:
#policy.py def get(): print('from policy.py') #versions.py def create_resource(conf): print('from version.py: ',conf) #manage.py def main(): print('from manage.py') #models.py def register_models(engine): print('from models.py: ',engine)
We can use the contents of the package in test.py, and when we import the package, we can use import or from xxx The form of import xxx
import glance.db.models glance.db.models.register_models('mysql') from glance.api.policy import get get()
However, note: in the form of from xxx import xxx, "dot" cannot appear after the import. That is to say, from a.b import c is OK.
But from a import b.c is wrong
3.What does __init__.py do?No matter which method we use to import a package, as long as it is the first time it is imported The package or any other part of the package will first execute the __init__.py file.
This file can be empty, but it can also store some initialization code.
Then we used before Can from xxx import * be used for package calls?
Yes, we need to give __all__ in the __init__.py file to determine the * imported content.
print("我是glance的__init__.py⽂件. ") x = 10 def hehe(): print("我是呵呵") def haha(): print("我是哈哈") __all__ = ['x', "hehe"]
test.py
from glance import * print(x) # OK hehe() # OK haha() # 报错. __all__⾥没有这个⻤东⻄
4. Relative import and absolute import
Our final package glance is written for others to use, and there will also be mutual imports within the glance package. At this time, there are two import methods: absolute import and relative import.
1). Absolute import: glance as the starting point
2). Relative import: use. Or. . As a starting point
For example, we use glance/cmd/manage.py in glance/api/version.py
# 在glance/api/version.py #绝对导⼊ from glance.cmd import manage manage.main() #相对导⼊ # 这种情形不可以在versions中启动程序. # attempted relative import beyond top-level package from ..cmd import manage manage.main()
We should pay attention when testing, the python package path is the same as The directory where the running script is located is related.
In python, the program you run is not allowed to exceed the scope of the current package (relative import).
If you use absolute import, there is no such problem. .That is, if you use relative import in the package, then when using the information in the package, you can only import it outside the package
# 在policy.py import versions
If the entry of our program is policy, Then there is no problem with the program at this time. But if we import the policy in glance outside glance, an error will be reported.
The reason is that if we access it from outside When setting policy, the path in .sys.path is outside. Therefore, the versions module cannot be found directly. Therefore, an error will definitely be reported: ModuleNotFoundError: No module named 'versions'
5. Import a package separately
# 在test.py中 import glance
The imported glance cannot do anything at this time. Because in glance There is no loading of sub-packages in __init__.py. At this time, we need to introduce the contents of the sub-packages in __init__.py respectively.
1. Use relative paths
2. Notes on using absolute paths to
packages:
The import statements related to packages are also import and from xxx import xxx, but no matter which one is used, no matter where it is , one principle must be followed when importing: For any import with a dot, the left side of the
dot must be a package. Otherwise, an error will be reported. You can bring a series of dots. For example: from a.b.c import d
The above is the detailed content of What is the package in python? what's the effect? Introduction to packages in python. For more information, please follow other related articles on the PHP Chinese website!

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

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

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

Hot Topics

This tutorial demonstrates how to use Python to process the statistical concept of Zipf's law and demonstrates the efficiency of Python's reading and sorting large text files when processing the law. You may be wondering what the term Zipf distribution means. To understand this term, we first need to define Zipf's law. Don't worry, I'll try to simplify the instructions. Zipf's Law Zipf's law simply means: in a large natural language corpus, the most frequently occurring words appear about twice as frequently as the second frequent words, three times as the third frequent words, four times as the fourth frequent words, and so on. Let's look at an example. If you look at the Brown corpus in American English, you will notice that the most frequent word is "th

This article explains how to use Beautiful Soup, a Python library, to parse HTML. It details common methods like find(), find_all(), select(), and get_text() for data extraction, handling of diverse HTML structures and errors, and alternatives (Sel

Python's statistics module provides powerful data statistical analysis capabilities to help us quickly understand the overall characteristics of data, such as biostatistics and business analysis. Instead of looking at data points one by one, just look at statistics such as mean or variance to discover trends and features in the original data that may be ignored, and compare large datasets more easily and effectively. This tutorial will explain how to calculate the mean and measure the degree of dispersion of the dataset. Unless otherwise stated, all functions in this module support the calculation of the mean() function instead of simply summing the average. Floating point numbers can also be used. import random import statistics from fracti

This article compares TensorFlow and PyTorch for deep learning. It details the steps involved: data preparation, model building, training, evaluation, and deployment. Key differences between the frameworks, particularly regarding computational grap

Serialization and deserialization of Python objects are key aspects of any non-trivial program. If you save something to a Python file, you do object serialization and deserialization if you read the configuration file, or if you respond to an HTTP request. In a sense, serialization and deserialization are the most boring things in the world. Who cares about all these formats and protocols? You want to persist or stream some Python objects and retrieve them in full at a later time. This is a great way to see the world on a conceptual level. However, on a practical level, the serialization scheme, format or protocol you choose may determine the speed, security, freedom of maintenance status, and other aspects of the program

The article discusses popular Python libraries like NumPy, Pandas, Matplotlib, Scikit-learn, TensorFlow, Django, Flask, and Requests, detailing their uses in scientific computing, data analysis, visualization, machine learning, web development, and H

This tutorial builds upon the previous introduction to Beautiful Soup, focusing on DOM manipulation beyond simple tree navigation. We'll explore efficient search methods and techniques for modifying HTML structure. One common DOM search method is ex

This article guides Python developers on building command-line interfaces (CLIs). It details using libraries like typer, click, and argparse, emphasizing input/output handling, and promoting user-friendly design patterns for improved CLI usability.
