Marek4321 commited on
Commit
0f354d8
·
verified ·
1 Parent(s): fc87be7

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +34 -13
README.md CHANGED
@@ -1,13 +1,34 @@
1
- ---
2
- title: Converter Multi
3
- emoji: 🔥
4
- colorFrom: yellow
5
- colorTo: indigo
6
- sdk: gradio
7
- sdk_version: 5.22.0
8
- app_file: app.py
9
- pinned: false
10
- license: apache-2.0
11
- ---
12
-
13
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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