本文整理匯總了Python中typing.BinaryIO.getvalue方法的典型用法代碼示例。如果您正苦於以下問題:Python BinaryIO.getvalue方法的具體用法?Python BinaryIO.getvalue怎麽用?Python BinaryIO.getvalue使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類typing.BinaryIO
的用法示例。
在下文中一共展示了BinaryIO.getvalue方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: mktar_from_dockerfile
# 需要導入模塊: from typing import BinaryIO [as 別名]
# 或者: from typing.BinaryIO import getvalue [as 別名]
def mktar_from_dockerfile(fileobject: BinaryIO) -> IO:
"""
Create a zipped tar archive from a Dockerfile
**Remember to close the file object**
Args:
fileobj: a Dockerfile
Returns:
a NamedTemporaryFile() object
"""
f = tempfile.NamedTemporaryFile()
t = tarfile.open(mode="w:gz", fileobj=f)
if isinstance(fileobject, BytesIO):
dfinfo = tarfile.TarInfo("Dockerfile")
dfinfo.size = len(fileobject.getvalue())
fileobject.seek(0)
else:
dfinfo = t.gettarinfo(fileobj=fileobject, arcname="Dockerfile")
t.addfile(dfinfo, fileobject)
t.close()
f.seek(0)
return f