withステートメントに基づく
- コンテキストマネージャ
__exit__()
は、後で使用するためにロードされます。 - コンテキストマネージャの
__enter__()
メソッドが呼び出されます。
zipfileでの使用法の1つを見ました
質問>ここにあるzipfileのソースコードを確認しました:
/usr/lib/python2.6/zipfile.py
__enter__
と__exit__
関数がどこで定義されているのかわかりませんか?
ありがとうございました
withステートメントに基づく
__exit__()
は、後で使用するためにロードされます。__enter__()
メソッドが呼び出されます。zipfileでの使用法の1つを見ました
質問>ここにあるzipfileのソースコードを確認しました:
/usr/lib/python2.6/zipfile.py
__enter__
と__exit__
関数がどこで定義されているのかわかりませんか?
ありがとうございました
zipfile.ZipFile
2.6ではコンテキストマネージャーではありません。これは2.7で追加されました。
これは通常、最初の質問に対する回答ではないため、別の回答として追加しました。ただし、問題を解決するのに役立ちます。
class MyZipFile(zipfile.ZipFile): # Create class based on zipfile.ZipFile
def __init__(file, mode='r'): # Initial part of our module
zipfile.ZipFile.__init__(file, mode) # Create ZipFile object
def __enter__(self): # On entering...
return(self) # Return object created in __init__ part
def __exit__(self, exc_type, exc_val, exc_tb): # On exiting...
self.close() # Use close method of zipfile.ZipFile
使用法:
with MyZipFile('new.zip', 'w') as tempzip: # Use content manager of MyZipFile
tempzip.write('sbdtools.py') # Write file to our archive
入力した場合
help(MyZipFile)
元のzipfile.ZipFileのすべてのメソッドと独自のメソッド(init、enter、exit )を確認できます。必要に応じて、別の独自の関数を追加できます。幸運を!
オブジェクトクラスを使用してクラスを作成する例:
class ZipExtractor(object): # Create class that can only extract zip files
def __init__(self, path): # Initial part
import zipfile # Import old zipfile
self.Path = path # To make path available to all class
try: open(self.Path, 'rb') # To check whether file exists
except IOError: print('File doesn\'t exist') # Catch error and print it
else: # If file can be opened
with open(self.Path, 'rb') as temp:
self.Header = temp.read(4) # Read first 4 bytes
if self.Header != '\x50\x4B\x03\x04':
print('Your file is not a zip archive!')
else: self.ZipObject = zipfile.ZipFile(self.Path, 'r')
def __enter__(self): # On entering...
return(self) # Return object created in __init__ part
def __exit__(self, exc_type, exc_val, exc_tb): # On exiting...
self.close() # Use close method of our class
def SuperExtract(member=None, path=None):
'''Used to extract files from zip archive. If arg 'member'
was not set, extract all files. If path was set, extract file(s)
to selected folder.'''
print('Extracting ZIP archive %s' % self.Path) # Print path of zip
print('Archive has header %s' % self.Header) # Print header of zip
if filename=None:
self.ZipObject.extractall(path) # Extract all if member was not set
else:
self.ZipObject.extract(mamber, path) # Else extract selected file
def close(self): # To close our file
self.ZipObject.close()
使用法:
with ZipExtractor('/path/to/zip') as zfile:
zfile.SuperExtract('file') # Extract file to current dir
zfile.SuperExtract(None, path='/your/folder') # Extract all to selected dir
# another way
zfile = ZipExtractor('/path/to/zip')
zfile.SuperExtract('file')
zfile.close() # Don't forget that line to clear memory
'help(ZipExtractor)'を実行すると、次の5つのメソッドが表示されます。
__init__, __enter__, __exit__, close, SuperExtract
私はあなたを助けたと思います。私はそれをテストしなかったので、あなたはそれを改善しなければならないかもしれません。
cat-plus-plusは正しいです。ただし、必要に応じて、独自のクラスを作成して「欠落している」機能を追加することができます。あなたがする必要があるのはあなたのクラスに2つの関数を追加することです(これはzipfileに基づいています):
def __enter__(self):
return(self)
def __exit__(self, exc_type, exc_val, exc_tb):
self.close()
それで十分なはずです、AFAIR。