PsevdoCompiler / app.py
Arigadam's picture
Create app.py
f426c94 verified
raw
history blame contribute delete
311 Bytes
import gradio as gr
import psevdocompilerlib as pcl
with gr.Blocks() as app:
gr.Markdown("Enter your Russian psevdocode for generating python3 code:")
gr.Interface(inputs="text", outputs="text", fn=pcl.compile_code)
gr.HTML("<small>Made by Arigadam</small>")
app.launch(debug=True, show_api=False)