Metadata-Version: 2.4
Name: text_file_search_tool-urmila
Version: 0.1.0
Summary: A tool to search for text inside files efficiently
Author-email: Urmila Thalal <utsabithalal@gmail.com>
License-Expression: MIT
Project-URL: Homepage, https://github.com/UrmilaThalal/Text_File_Search_Tool
Project-URL: Issues, https://github.com/UrmilaThalal/Text_File_Search_Tool/issues
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Requires-Python: >=3.9
Description-Content-Type: text/markdown

# Text File Search Tool

A simple and efficient Python CLI tool to search for keywords inside text files.

---

## Features

* Search keyword in a text file
* Case-insensitive search
* Displays line numbers
* Counts total matches
* Easy to use command-line interface

---

##  Installation

Install from PyPI:

pip install text-file-search-tool-urmila

---

##  Usage

Run the tool from terminal:

text_file_search_tool-urmila

Then enter:

Enter file name: sample.txt
Enter keyword to search: python

---

## Example

### sample.txt

Python is easy
Python is powerful

### Output

Matches found:

Line 1: Python is easy
Line 3: Python is powerful

Total matches: 2

---

## Project Structure

text_file_search_tool/
│
├── text_file_search_tool/
│   ├── **init**.py
│   ├── cli.py
│   ├── main.py
│
├── pyproject.toml
├── README.md
├── requirements.txt

---

## Technologies Used

* Python
* argparse (for CLI)

---

##  Author
Urmila Thalal

---


