File size: 680 Bytes
dd1cb9c
 
1f0ed21
efce880
 
 
 
 
 
 
dd1cb9c
 
1f0ed21
efce880
 
 
 
 
 
 
 
 
 
 
dd1cb9c
 
 
1cf5a2d
 
 
dd1cb9c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
import gradio as gr
import os
import spaces
import string
import random


def random_word(length):
    letters = string.ascii_lowercase
    return "".join(random.choice(letters) for _ in range(length))


@spaces.GPU
def convert(input_file):
    # Convert the file to markdown with pandoc
    output_file = f"{random_word(16)}.md"
    os.system(f"pandoc {input_file} -t markdown -o {output_file}")

    # Read the file and delete
    with open(output_file, "r") as f:
        markdown = f.read()
    os.remove(output_file)

    return markdown


gr.Interface(
    convert,
    inputs=gr.File(label="Upload File", type="filepath"),
    outputs=gr.Text(label="Markdown"),
).launch()