Python內置函數(68)——__import__

来源:http://www.cnblogs.com/sesshoumaru/archive/2016/12/04/6130171.html
-Advertisement-
Play Games

英文文檔: __import__(name, globals=None, locals=None, fromlist=(), level=0) This function is invoked by the import statement. It can be replaced (by impor ...


英文文檔:

__import__(name, globals=None, locals=None, fromlist=(), level=0)

This function is invoked by the import statement. It can be replaced (by importing the builtins module and assigning to builtins.__import__) in order to change semantics of the import statement, but doing so is strongly discouraged as it is usually simpler to use import hooks (see PEP 302) to attain the same goals and does not cause issues with code which assumes the default import implementation is in use. Direct use of __import__() is also discouraged in favor of importlib.import_module().

The function imports the module name, potentially using the given globals and locals to determine how to interpret the name in a package context. The fromlist gives the names of objects or submodules that should be imported from the module given by name. The standard implementation does not use its locals argument at all, and uses its globals only to determine the package context of the import statement.

level specifies whether to use absolute or relative imports. 0 (the default) means only perform absolute imports. Positive values for level indicate the number of parent directories to search relative to the directory of the module calling __import__() (see PEP 328 for the details).

When the name variable is of the form package.module, normally, the top-level package (the name up till the first dot) is returned, not the module named by name. However, when a non-empty fromlist argument is given, the module named by name is returned.

 

說明:

  1. 函數功能用於動態的導入模塊,主要用於反射或者延遲載入模塊。

  2. __import__(module)相當於import module

  先定義兩個模塊mian.py和index.py,兩個文件在同一目錄下:

#index.py

print ('index')

def sayHello():
    print('hello index')

def sayHelloZhCn():
    print('你好 index')
#mian.py
print ('main')

index = __import__('index')
dir(index)
index.sayHello()
index.sayHelloZhCn()

  執行main.py,可以證實動態載入了index.py,__import__返回的模塊也是index模塊

C:\Users\Admin\Documents\Python3\importtest>python main.py
main
index
hello index
你好 index

  3. __import__(package.module)相當於from package import name,如果fromlist不傳入值,則返回package對應的模塊,如果fromlist傳入值,則返回package.module對應的模塊。

  先定義archives包,其中包含user和role兩個模塊:

#__index__.py
print ('archives.__index__')

def sayHello():
    print('hello archives')
#user.py
print ('user')

def sayHello():
    print('hello user')
#role.py
print ('role')

def sayHello():
    print('hello role')

  結構如下:

  修改mian.py:

#main.py
print ('main')

archives = __import__('archives')
archives.sayHello()
archives.user

  執行main.py,可以證實動態載入了archives包,__import__返回的模塊也是archives模塊

C:\Users\Admin\Documents\Python3\importtest>python main.py
main
archives.__index__
hello archives
Traceback (most recent call last):
  File "main.py", line 5, in <module>
    archives.user
AttributeError: module 'archives' has no attribute 'user'

  修改mian.py:

#main.py
print ('main')

archives = __import__('archives.user')
archives.sayHello()
print(archives.user)

  執行main.py,可以證實動態載入了archives包的user模塊,__import__返回的模塊也是archives模塊

C:\Users\Admin\Documents\Python3\importtest>python main.py
main
archives.__index__
user
hello archives
<module 'archives.user' from 'C:\\Users\\Admin\\Documents\\Python3\\import
test\\archives\\user.py'>

  修改mian.py:

#main.py
print ('main')

archives = __import__('archives.user',fromlist = ('user',))
archives.sayHello()
print(archives)

  執行main.py,可以證實動態載入了archives包的user模塊,__import__返回的模塊是user模塊

C:\Users\Admin\Documents\Python3\importtest>python main.py
main
archives.__index__
user
hello user
<module 'archives.user' from 'C:\\Users\\Admin\\Documents\\Python3\\import
test\\archives\\user.py'>

  4. level參數,指定是使用絕對導入還是相對導入。 0(預設值)表示只執行絕對導入。


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • volatile在Java記憶體模型(JMM)中,保證共用變數對所有線程可見,但不保證原子性。volatile語義是同步,通過共用變數的方式,完成線程間的通信。 ...
  • 字典由一對key:value 組成的 python中常用且重量級的數據類型 1. key , keys, values 2.字典的查詢 dir[index], dir.get[index] 3.字典增加/改變元素,直接索引,賦值即可, 有這個key則更改, 無這個可以則增加 4.刪除字典的元素: d ...
  • 一、使用new和delete時,應遵循以下規則: 1、不要使用delete來釋放不是new分配的記憶體。 2、不要使用delete釋放同一個記憶體塊兩次。 3、如果使用new[]為數組分配記憶體,則應使用delete[]來釋放。 4、如果使用new[]為一個實體分配記憶體,則應使用delete(沒有方括弧) ...
  • 1.支付準備 2.支付方法 3.回饋方法 當支付成功時,易寶會訪問這裡用兩種方法訪問:1. 引導用戶的瀏覽器重定向(如果用戶關閉了瀏覽器,就不能訪問這裡了)2. 易寶的伺服器會使用點對點通訊的方法訪問這個方法。(必須回饋success,不然易寶伺服器會一直調用這個方法) 4.pay.jsp paym ...
  • 3.查詢訂單詳細信息 OrderServlet desc.jsp 4.取消訂單、確認收貨 ...
  • 在構造器中可以調用本類的其他重載構造器,不能使用構造器名稱來調用另一個構造器,而是應該使用Java特定的this(….)來調用。 this(….)方法必須出現在構造器中的第一行,用來調用其他重載構造器。調用時參數必須嚴格匹配。 這種調用方式的優點在於一個構造器可以不必重覆編寫其他構造器中已有的代碼, ...
  • 1. 非註解方式 1.1 處理器適配器 上一節中使用的處理器適配器是:org.springframework.web.servlet.mvc.SimpleControllerHandlerAdapter。即: SimpleControllerHandlerAdapter適配器能執行實現了Contro ...
  • Python來做應用題及思路 最近找工作頭疼沒事就開始琢磨python解應用題應該可以,順便還可以整理下思路當然下麵的解法只是個人理解,也歡迎大佬們給意見或者指點更好的解決辦法等於優化代碼了嘛,也歡迎大家出點小題目做也可以,如果可以我也會定期專門來做應用題(你弟弟或者你表弟或者外甥等來問應用題在也不 ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...