Python

  • Python ZIP file with Example

    Python allows you to quickly create zip/tar archives.

    Following command will zip entire directory

    shutil.make_archive(output_filename, 'zip', dir_name)

    Following command gives you control on the files you want to archive

    ZipFile.write(filename)

    Here are the steps to create Zip File in Python

    Step 1) To create an archive file from Python, make sure you have your import statement correct and in order. Here the import statement for the archive is from shutil import make_archive

    Python OS Module, Shell Script Commands

    Code Explanation

    • Import make_archive class from module shutil
    • Use the split function to split out the directory and the file name from the path to the location of the text file (guru99)
    • Then we call the module “shutil.make_archive(“guru99 archive, “zip”, root_dir)” to create archive file, which will be in zip format
    • After then we pass in the root directory of things we want to be zipped up. So everything in the directory will be zipped
    • When you run the code, you can see the archive zip file is created on the right side of the panel.

    Step 2) Once your archive file is made, you can right-click on the file and select the O.S, and it will show your archive files in it as shown below

    Python OS Module, Shell Script Commands

    Now your archive.zip file will appear on your O.S (Windows Explorer)

    Python OS Module, Shell Script Commands

    Step 3) When you double-click on the file, you will see the list all the files in there.

    Python OS Module, Shell Script Commands

    Step 4) In Python we can have more control over archive since we can define which specific file to include under archive. In our case, we will include two files under archive “guru99.txt” and “guru99.txt.bak”.

    Python OS Module, Shell Script Commands

    Code Explanation

    • Import Zipfile class from zip file Python module. This module gives full control over creating zip files
    • We create a new Zipfile with name ( “testguru99.zip, “w”)
    • Creating a new Zipfile class, requires to pass in permission because it’s a file, so you need to write information into the file as newzip
    • We used variable “newzip” to refer to the zip file we created
    • Using the write function on the “newzip” variable, we add the files “guru99.txt” and “guru99.txt.bak” to the archive

    When you execute the code you can see the file is created on the right side of the panel with name “guru99.zip”

    Note: Here we don’t give any command to “close” the file like “newzip.close” because we use “With” scope lock, so when program falls outside of this scope the file will be cleaned up and is closed automatically.

    Step 5) When you -> right click on file (testguru99.zip) and -> select your O.S (Windows Explorer), it will show the archive files in the folder as shown below.

    Python OS Module, Shell Script Commands

    When you double click on file “testguru99.zip”, it will open another window, and this will show the files included in it.

    Python OS Module, Shell Script Commands

    Here is the complete code

  • Copy File in Python: shutil.copy(), shutil.copystat() method

    Python Copy File Methods Python provides in-built functions for easily copying files using the Operating System Shell utilities. Following command is used to Copy File shutil.copy(src,dst) Following command is used to Copy File with MetaData Information shutil.copystat(src,dst) How to Copy a File in Python Here are the steps to copy file in Python using the…

  • Python Timer Function: Measure Elapsed Time with EXAMPLES

    Python provides a library that helps understand and read the time information in many ways. In Python, this library is termed the time module, and the module provides time and date objects to perform any time-related operation. Such operations do not manipulate timestamps or strings; instead, they manipulate objects. Moreover, the Python time module offers…

End of content

End of content