溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

readline模塊定義了哪些函數(shù)

發(fā)布時(shí)間:2020-08-05 16:02:04 來源:億速云 閱讀:169 作者:小新 欄目:編程語言

這篇文章主要介紹了readline模塊定義了哪些函數(shù),具有一定借鑒價(jià)值,需要的朋友可以參考下。希望大家閱讀完這篇文章后大有收獲。下面讓小編帶著大家一起了解一下。

readline模塊定義了一系列函數(shù)用來讀寫Python解釋器中歷史命令,并提供自動(dòng)補(bǔ)全命令功能。這個(gè)模塊可以通過relcompleter模塊直接調(diào)用,模塊中的設(shè)置會(huì)影響解釋器中的交互提示,以及內(nèi)置函數(shù)raw_input()和input()提供的提示。

readline模塊定義了以下方法:

readline.parse_and_bind(string):解析并執(zhí)行命令行初始化文件。

readline.get_line_buffer():返回當(dāng)前命令行緩存的內(nèi)容。

readline.insert_text(string):插入到當(dāng)前行。

readline.read_init_file([filename]):解析一個(gè)命令行初始化文件。

readline.read_history_file([filename]):讀取歷史命令文件,默認(rèn)為~/.history

readline.write_history_file([filename]):保存歷史命令文件,默認(rèn)為~/.history

readline.get_history_length():獲取預(yù)設(shè)的歷史命令條數(shù)。負(fù)數(shù)意味著不限制條數(shù)大小。

readline.set_history_length(length):設(shè)置要保存到歷史命令文件中的命令條數(shù),write_history_file()使用這個(gè)數(shù)字對(duì)歷史命令文件進(jìn)行修改。

readline.get_current_history_length():返回當(dāng)前歷史文件中歷史命令的條數(shù)。

readline.get_history_item(index):獲取index索引指定的歷史命令。

readline.remove_history_item(pos):刪除指定位置的歷史命令。

readline.replace_history_item(pos, line) :使用給定命令替換指定位置的命令。

readline.redisplay() :根據(jù)命令行緩存實(shí)時(shí)更新當(dāng)前屏幕的顯示。

readline.set_startup_hook([function]) :設(shè)置或刪除鉤子函數(shù),如果指定了函數(shù),就將其設(shè)為鉤子函數(shù),如果沒有指定或者設(shè)置為None,所有已經(jīng)安裝的鉤子函數(shù)將被移除,鉤子函數(shù)在命令行輸出提示前執(zhí)行。

readline.set_pre_input_hook([function]):跟set_startup_hook()方法類似,但是鉤子函數(shù)是在提示輸入完之后,命令行開始讀取字符串之前執(zhí)行。

readline.set_completer([function]):如果提供了函數(shù),則用作自動(dòng)完成命令函數(shù),如果忽略或者設(shè)置為None,則移除之前設(shè)置的函數(shù)。命令自動(dòng)完成函數(shù)形式如function(text,state),text為命令行中輸入的字符串,state為選擇的的補(bǔ)全命令索引。

readline.get_completer():返回自動(dòng)完成命令函數(shù)。

readline.get_completion_type() :返回自動(dòng)完成的類型。

readline.get_begidx() :獲取命令行tab自動(dòng)補(bǔ)全范圍的第一個(gè)值的索引。

readline.get_endidx() :獲取命令行tab自動(dòng)補(bǔ)全范圍的最后一個(gè)值的索引。

readline.set_completer_delims(string) :設(shè)置自動(dòng)補(bǔ)全命令之間的分隔符。

readline.get_completer_delims() :獲取分隔符。

readline.set_completion_display_matches_hook([function]) :設(shè)置或者移除自動(dòng)完成顯示函數(shù)。

readline.add_history(line) :添加最后一條輸入的命令到歷史文件中。

示例:

下面的例子使用readline模塊從.pyhist中讀取歷史命令,并自動(dòng)保存歷史命令到這個(gè)文件中。

import os
histfile = os.path.join(os.environ["HOME"],".pyhist")
try:
readline.read_history_file(histfile)
exceptIOError:
pass
import atexit
atexit.register(readline.write_history_file, histfile)
del os, histfile

下面的例子通過繼承code.InteractiveConsole來支持歷史命令的讀寫。

import code
import readline
import atexit
import os
classHistoryConsole(code.InteractiveConsole):
def __init__(self, locals=None, filename="<console>",
histfile=os.path.expanduser("~/.console-history")):
code.InteractiveConsole.__init__(self, locals, filename)
self.init_history(histfile)
def init_history(self, histfile):
readline.parse_and_bind("tab: complete")
if hasattr(readline,"read_history_file"):
try:
readline.read_history_file(histfile)
exceptIOError:
pass
atexit.register(self.save_history, histfile)
def save_history(self, histfile):
readline.write_history_file(histfile)

感謝你能夠認(rèn)真閱讀完這篇文章,希望小編分享readline模塊定義了哪些函數(shù)內(nèi)容對(duì)大家有幫助,同時(shí)也希望大家多多支持億速云,關(guān)注億速云行業(yè)資訊頻道,遇到問題就找億速云,詳細(xì)的解決方法等著你來學(xué)習(xí)!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI