Metadata-Version: 2.1
Name: extractify
Version: 0.0.2.1
Description-Content-Type: text/markdown

# Extractify

Extractify is a command-line tool for converting documents in various formats (.pdf, .doc, .docx, .xlsx, .txt) to plain text. The tool creates a 'txt' subdirectory within the specified input directory and saves the plain text files with the same filenames but with a .txt extension.

## Installation

Install Extractify using pip:

```bash
pip install extractify
```

## Usage
To use Extractify, run the following command:

```bash
extractify <directory_with_non_text_files>
```

Replace `<directory_with_non_text_files>` with the path to the directory containing the documents you want to convert.


Extractify will create a 'txt' subdirectory within the input directory and save the plain text files there.

## Supported Formats
Extractify currently supports the following document formats:

  - .pdf
  - .doc
  - .docx
  - .xlsx
  - .txt

## Dependencies
Extractify requires the following Python libraries:

```bash
tika
openpyxl
argparse
```
