Spaces:
Sleeping
Sleeping
Update README.md
Browse files
README.md
CHANGED
|
@@ -1,13 +1,34 @@
|
|
| 1 |
-
-
|
| 2 |
-
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Multi-Format to TXT Converter
|
| 2 |
+
|
| 3 |
+
## Overview
|
| 4 |
+
This application converts various file formats to text (.txt) format. It's a simple web interface built with Gradio that allows users to upload files and get converted text versions.
|
| 5 |
+
|
| 6 |
+
## Supported File Formats
|
| 7 |
+
- **Excel** (.xlsx, .xls) - Converts worksheets to formatted markdown tables
|
| 8 |
+
- **PowerPoint** (.pptx, .ppt) - Extracts text from slides
|
| 9 |
+
- **PDF** (.pdf) - Extracts text from pages
|
| 10 |
+
- **Word** (.docx, .doc) - Extracts text from paragraphs
|
| 11 |
+
|
| 12 |
+
## How to Use
|
| 13 |
+
1. Upload a file using the file upload component
|
| 14 |
+
2. Click "Convert to TXT"
|
| 15 |
+
3. View the converted text in the output area
|
| 16 |
+
4. Download the resulting text file
|
| 17 |
+
|
| 18 |
+
## Features
|
| 19 |
+
- Clean, user-friendly interface
|
| 20 |
+
- Formatted output for better readability
|
| 21 |
+
- Download option for converted text
|
| 22 |
+
- Supports multiple popular document formats
|
| 23 |
+
|
| 24 |
+
## About
|
| 25 |
+
This converter was adapted from a desktop application to be available as a web service.
|
| 26 |
+
The original application was developed by Marek Staniszewski: staniszewski@heuristica.pl [Heuristica.pl](https://www.heuristica.pl).
|
| 27 |
+
|
| 28 |
+
## Technical Details
|
| 29 |
+
Built with:
|
| 30 |
+
- Gradio for the web interface
|
| 31 |
+
- openpyxl for Excel processing
|
| 32 |
+
- python-pptx for PowerPoint processing
|
| 33 |
+
- PyPDF2 for PDF processing
|
| 34 |
+
- python-docx for Word processing
|