Zip File Creation with Specified Input

  • Share this:

Code introduction


Create a zip file and add the specified input file to the zip file.


Technology Stack : zipfile

Code Type : File operation

Code Difficulty : Intermediate


                
                    
def zipfile_create(input_file, output_file):
    with zipfile.ZipFile(output_file, 'w') as zipf:
        zipf.write(input_file, arcname=input_file)                
              
Tags: