From 092f1d5613070fe3be8fbcd99b86ee7efb776b1a Mon Sep 17 00:00:00 2001 From: Tristan Smith Date: Sun, 7 Apr 2024 22:50:25 -0400 Subject: [PATCH] updated Readme --- Readme.md | 27 +++++++++++++++++++++++++-- 1 file changed, 25 insertions(+), 2 deletions(-) diff --git a/Readme.md b/Readme.md index 50da929..3b0d96b 100644 --- a/Readme.md +++ b/Readme.md @@ -1,3 +1,26 @@ -## tools collection +# Tools Collection -Small collection of tools so I don't lose them later. \ No newline at end of file +This repository contains a small collection of Python utilities aimed at making file handling tasks easier. These tools were created to ensure they are not lost and can be readily available for use or modification as needed. Below is a brief overview of each script included in this collection: + +### 1. `sizegetter.py` +A script designed to retrieve and display the file size of specified files. It's useful for quickly checking the size of files without navigating through file properties manually. + +### 2. `unzipdir.py` +This utility helps in extracting the contents of zip files. It's particularly handy when dealing with multiple zip files or when automating the extraction process in batch operations. + +### 3. `zipremove.py` +A convenient tool for removing specified files from zip archives. This can be useful for cleaning up archives without the need to decompress and recompress them. + +### 4. `zipsize` +It seems like this might be a script or a directory related to managing or retrieving zip file sizes, but without an extension, its exact purpose is a bit unclear. If it's a script, it likely serves a function similar to `sizegetter.py` but specifically for zip files. + +## Installation +No installation is necessary for these scripts. They are standalone Python scripts that can be run from the command line. Ensure you have Python installed on your system, navigate to the directory containing these scripts, and execute them with Python. For example: + +```python3 unzipdir.py``` + +## Usage +Each script can be executed from the command line, with potential arguments depending on the script's design. Refer to each script's source code for detailed usage instructions. + +## Contributing +Contributions to this collection are welcome. Whether it's adding new tools, improving existing ones, or suggesting enhancements, feel free to fork the repository and submit a pull request.