Arxivtobibtex / app.py
gagan3012's picture
Create app.py
9b88e9e
raw
history blame
606 Bytes
import requests
import re
def fetch_bibtex(arxiv_link):
# Extract the arXiv ID from the link
arxiv_id = re.findall(r'arxiv\.org\/abs\/([\w\.]+)', arxiv_link)[0]
# Use an API or web scraping method to fetch the BibTeX
# For simplicity, here's a placeholder for the BibTeX entry
bibtex_entry = "Placeholder BibTeX for " + arxiv_id
return bibtex_entry
import gradio as gr
interface = gr.Interface(fn=fetch_bibtex,
inputs=gr.inputs.Textbox(lines=2, placeholder="Enter arXiv link here..."),
outputs="text")
interface.launch()