File size: 783 Bytes
9b88e9e
 
e1a1953
d1e6186
9b88e9e
 
a687dda
927a765
9b88e9e
 
 
 
 
e1a1953
 
a687dda
 
e1a1953
 
 
 
9ff9d6f
a46e0fb
9b88e9e
 
 
9ff9d6f
a46e0fb
9b88e9e
88238ba
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
import requests
import re
import subprocess
import gradio as gr
def fetch_bibtex(arxiv_link):
    # Extract the arXiv ID from the link
    arxiv_id =  re.findall(r'arxiv\.org\/(?:abs|pdf)\/([\w\.]+)', arxiv_link)[0].replace(".pdf","")

    
    # 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

    command = "arxiv2bib"

    print(arxiv_id)

    result = subprocess.run([command, arxiv_id], stdout=subprocess.PIPE, text=True)

# Get the output
    output = result.stdout
    
    return output


interface = gr.Interface(fn=fetch_bibtex,
                         inputs=gr.Textbox(label="URL"),
                         outputs="text")

interface.launch()