本文整理匯總了Python中dulwich.server.ReceivePackHandler.handle方法的典型用法代碼示例。如果您正苦於以下問題:Python ReceivePackHandler.handle方法的具體用法?Python ReceivePackHandler.handle怎麽用?Python ReceivePackHandler.handle使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類dulwich.server.ReceivePackHandler
的用法示例。
在下文中一共展示了ReceivePackHandler.handle方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: receive_pack
# 需要導入模塊: from dulwich.server import ReceivePackHandler [as 別名]
# 或者: from dulwich.server.ReceivePackHandler import handle [as 別名]
def receive_pack(path=".", inf=sys.stdin, outf=sys.stdout):
"""Receive a pack file after negotiating its contents using smart protocol.
:param path: Path to the repository
:param inf: Input stream to communicate with client
:param outf: Output stream to communicate with client
"""
backend = FileSystemBackend()
def send_fn(data):
outf.write(data)
outf.flush()
proto = Protocol(inf.read, send_fn)
handler = ReceivePackHandler(backend, [path], proto)
# FIXME: Catch exceptions and write a single-line summary to outf.
handler.handle()
return 0