驚豔發現VS工具python項目Search Paths的應用

來源:互聯網
上載者:User

標籤:

  之前,在沒有發現VS工具python項目Search Paths的應用時,舉個例子:假如項目的檔案目錄如下:

 

 

maintest/maintest.py想要使用common/tools.py檔案時,不得不在maintest.py中的代碼添加這樣的代碼:

import sysimport osfrom sys import pathparentdir = os.path.join( os.path.dirname(os.path.dirname(__file__)))path.append(parentdir + "\common") # 將tools所在的目錄加入pathimport toolsprint pathprint tools.a

      這樣的話,代碼就不夠簡潔了。

      或者使用模組化的思想,將common做成模組,放到maintest/目錄下,maintest.py檔案匯入common.tools模組。專案檔結構將會變成如下:

maintest

--maintest.py

--common

----tools.py

----__init__.py

     這樣的專案檔結構看起來混亂(既不夠人性化)

   再或者使用xxx.pth追加需要匯入模組(檔案)的目錄,但是這樣的話,你團隊的小夥伴不知情執行指令碼時將會報錯……必須得在相同目錄下添加相同的.pth

     現在,只要把需要匯入的檔案的上級檔案夾加入到Search Paths

 

     那麼,現在maintest/maintest.py想要使用common/tools.py直接匯入模組即可,裡面的機制有時間大家可以深究一下。

import sysimport osfrom sys import pathparentdir = os.path.join( os.path.dirname(os.path.dirname(__file__))) #path.append(parentdir + "\common") # 將tools所在的目錄加入pathimport toolsprint pathprint tools.a

 

驚豔發現VS工具python項目Search Paths的應用

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.