首頁  >  文章  >  後端開發  >  Python模組和套件重名的解決方法

Python模組和套件重名的解決方法

Y2J
Y2J原創
2017-05-13 13:43:299296瀏覽

這篇文章主要為大家介紹了在Python中模組與包有相同名字的處理方法,文中介紹的非常詳細,對大家具有一定的參考學習價值,需要的朋友們下面來一起看看吧。

前言

程式設計開發中,個人覺得,只要按照規範去做,很少會出問題。剛開始學習一門技術時,的確會遇到很多的坑。踩的坑多了,這是好事,會學到更多東西,也會越來越覺得依照規範做的重要性,規範的製定就是用來規避問題的。有時候確實應該聽聽有經驗人的建議,不要一意孤行。這好像不是本文的重點,其實我重點是想表達,盡量照規範做事,這樣會少走很多彎路。

我現在使用的主力程式語言是 Python,在接觸 Python 至今,我感覺我踩踏的坑還是極少的,基本上沒有遇到什麼奇怪的問題。實際上,這並不是一件好事,不踩坑,很多躺在暗處的知識點你不會了解,所以也很難成長。幸好,有一些會踩坑的同事。

一同事問我,在 Python 中,如果一個模組和一個套件同名時,是不是只能導入包,如果要導入模組該怎麼辦。他的意思大概是這樣的,在專案的同一級目錄下,有​​一個 foo.py 檔案和一個 foo/ 目錄,如果 import foo 會導入 foo/ 的內容而不是 foo.py 的內容。

被問到這個問題時,我首先感覺到的是詬異,這明顯是存在歧義的。如果是我,肯定不會把模組名和包名設計成一樣的名字,因為本質上來說在導入的時候沒辦法區分到底要導入誰。除非系統有特別的規定,例如,規定這種情況只能匯入包。

我的潛意識裡認為這裡應該報錯,Python 解釋器不知道要導入誰。但是,同事告訴我,別人的程式碼是這麼寫的,而且在這種情況下會預設導入包。那就是可以的咯,而且解釋器已經規定這種情況會總是導入包。

為了驗證下這一點,我寫了個簡單的項目,項目結構如下:


##

.
├── main.py
└── same
 ├── api
 │ └── init.py
 ├── auth
 │ └── init.py
 ├── auth.py
 └── init.py

其中:

same/api/init/py 的內容:



from .. import auth

same/auth/init.py 的內容:



auth_str = "This is str in package!"

same/auth.py 的內容:



auth_str = "This is str in module!"

main.py 的內容:


from future import print_function

from same.api import auth

# Script starts from here

if name == "main":
 print(auth.auth_str)

稍微有些複雜,哈哈,主要是同事那兒大致的結構是這樣的,這裡是為更好的模擬下。我在

same.auth 套件中定義了一個auth_str 字串,又在同名的same.auth 模組中定義了一個同名的auth_str 字串,然後在same.api 套件嘗試導入auth,最後在main.py 嘗試輸出 same.api.auth.auth_str,看看到底哪個字串會被列印。同時嘗試用Python2 和Python3 執行main.py,得到的結果都是:


#

This is str in package!

這裡驗證了我們的猜想是正確的,解釋器的確只導入了包中內容。但是,我並不知道是否有官方的資料說明是這樣的,所以我不敢確信,萬一這只是巧合呢。

於是,我開始查資料來驗證這個結論。我就說實話吧,對於一個英文程度爛到你無法想像的我,只能先試著用百度搜尋下答案了。事實是,用百度往往都是遺憾的。片刻後,無果,我只能硬著頭皮嘗試英文搜尋了。於是,在stackoverflow 上找到如下提問:

How python deals with module and package having the same name?

##其中有一個人回答說Python 官方文檔中在描述模組搜尋路徑時提到了這一點:docs.python.org/3/tutorial/modules.html#the-module-search-path.

文件中有以下說明:

After initialization, Python programs can modify sys.path. The directory containing the script being run is placed at the beginning of the search path, ahead of the standard library path. This means that scripts in that directory will be loaded instead. This means that scripts in that directory will be loaded instead of modulname in the samebra directory. This is an error unless the replacement is intended. See section Standard Modules for more information.


也就是說,目錄在庫的搜尋路徑下會首先被搜索,這就意味著目錄會代替同名的模組被載入。

I am finally relieved now, and my previous conclusion has been confirmed. In Python, if you try to import a module and package with the same name, the package will be imported. In this case, if you want to import the module, you may need to use some 'hack' methods. There are some examples in the stackoverflow post mentioned above. Of course, the best way is to avoid such a design, so that you won't spend so long looking up information, and you won't spend so long writing articles similar to this article.

Summary

[Related recommendations]

1. Special recommendation:"php Programmer Toolbox" V0.1 version download

2. Python free video tutorial

3. Python object-oriented video tutorial

以上是Python模組和套件重名的解決方法的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn