mirror of
				https://github.com/python-pillow/Pillow.git
				synced 2025-11-04 01:47:47 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			179 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			179 B
		
	
	
	
		
			Python
		
	
	
	
	
	
import sys
 | 
						|
import zipfile
 | 
						|
 | 
						|
 | 
						|
def unzip(src, dest):
 | 
						|
    with zipfile.ZipFile(src) as zf:
 | 
						|
        zf.extractall(dest)
 | 
						|
 | 
						|
if __name__ == '__main__':
 | 
						|
    unzip(sys.argv[1], sys.argv[2])
 |