updated Readme

This commit is contained in:
Tristan Smith 2024-04-07 22:50:25 -04:00
parent bb851fb3c1
commit 092f1d5613

View file

@ -1,3 +1,26 @@
## tools collection # Tools Collection
Small collection of tools so I don't lose them later. 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.