Spaces:
Running
Running
File size: 8,576 Bytes
ffc84fc 70830fd ffc84fc 9b88e9e e1a1953 c049004 ffc84fc 9b88e9e 2b1a889 9b88e9e a687dda 927a765 ffc84fc 9b88e9e ffc84fc e1a1953 a687dda ffc84fc e1a1953 ffc84fc 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 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 |
from __future__ import print_function
from xml.etree import ElementTree
import sys
import re
import os
if sys.version_info < (2, 6):
raise Exception("Python 2.6 or higher required")
# Python 2 compatibility code
PY2 = sys.version_info[0] == 2
if not PY2:
from urllib.parse import urlencode
from urllib.request import urlopen
from urllib.error import HTTPError
print_bytes = lambda s: sys.stdout.buffer.write(s)
else:
from urllib import urlencode
from urllib2 import HTTPError, urlopen
print_bytes = lambda s: sys.stdout.write(s)
# Namespaces
ATOM = '{http://www.w3.org/2005/Atom}'
ARXIV = '{http://arxiv.org/schemas/atom}'
# regular expressions to check if arxiv id is valid
NEW_STYLE = re.compile(r'^\d{4}\.\d{4,}(v\d+)?$')
OLD_STYLE = re.compile(r"""(?x)
^(
math-ph
|hep-ph
|nucl-ex
|nucl-th
|gr-qc
|astro-ph
|hep-lat
|quant-ph
|hep-ex
|hep-th
|stat
(\.(AP|CO|ML|ME|TH))?
|q-bio
(\.(BM|CB|GN|MN|NC|OT|PE|QM|SC|TO))?
|cond-mat
(\.(dis-nn|mes-hall|mtrl-sci|other|soft|stat-mech|str-el|supr-con))?
|cs
(\.(AR|AI|CL|CC|CE|CG|GT|CV|CY|CR|DS|DB|DL|DM|DC|GL|GR|HC|IR|IT|LG|LO|
MS|MA|MM|NI|NE|NA|OS|OH|PF|PL|RO|SE|SD|SC))?
|nlin
(\.(AO|CG|CD|SI|PS))?
|physics
(\.(acc-ph|ao-ph|atom-ph|atm-clus|bio-ph|chem-ph|class-ph|comp-ph|
data-an|flu-dyn|gen-ph|geo-ph|hist-ph|ins-det|med-ph|optics|ed-ph|
soc-ph|plasm-ph|pop-ph|space-ph))?
|math
(\.(AG|AT|AP|CT|CA|CO|AC|CV|DG|DS|FA|GM|GN|GT|GR|HO|IT|KT|LO|MP|MG
|NT|NA|OA|OC|PR|QA|RT|RA|SP|ST|SG))?
)/\d{7}(v\d+)?$""")
def is_valid(arxiv_id):
"""Checks if id resembles a valid arxiv identifier."""
return bool(NEW_STYLE.match(arxiv_id)) or bool(OLD_STYLE.match(arxiv_id))
class FatalError(Exception):
"""Error that prevents us from continuing"""
class NotFoundError(Exception):
"""Reference not found by the arxiv API"""
class Reference(object):
"""Represents a single reference.
Instantiate using Reference(entry_xml). Note entry_xml should be
an ElementTree.Element object.
"""
def __init__(self, entry_xml):
self.xml = entry_xml
self.url = self._field_text('id')
self.id = self._id()
self.authors = self._authors()
self.title = self._field_text('title')
if len(self.id) == 0 or len(self.authors) == 0 or len(self.title) == 0:
raise NotFoundError("No such publication", self.id)
self.summary = self._field_text('summary')
self.category = self._category()
self.year, self.month = self._published()
self.updated = self._field_text('updated')
self.bare_id = self.id[:self.id.rfind('v')]
self.note = self._field_text('journal_ref', namespace=ARXIV)
self.doi = self._field_text('doi', namespace=ARXIV)
def _authors(self):
"""Extracts author names from xml."""
xml_list = self.xml.findall(ATOM + 'author/' + ATOM + 'name')
return [field.text for field in xml_list]
def _field_text(self, id, namespace=ATOM):
"""Extracts text from arbitrary xml field"""
try:
return self.xml.find(namespace + id).text.strip()
except:
return ""
def _category(self):
"""Get category"""
try:
return self.xml.find(ARXIV + 'primary_category').attrib['term']
except:
return ""
def _id(self):
"""Get arxiv id"""
try:
id_url = self._field_text('id')
return id_url[id_url.find('/abs/') + 5:]
except:
return ""
def _published(self):
"""Get published date"""
published = self._field_text('published')
if len(published) < 7:
return "", ""
y, m = published[:4], published[5:7]
try:
m = ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul",
"Aug", "Sep", "Oct", "Nov", "Dec"][int(m) - 1]
except:
pass
return y, m
def bibtex(self):
"""BibTex string of the reference."""
self.new_id = self.authors[0].split(' ')[-1].lower()+self.year+self.title.split(' ')[0].lower().replace(":","")
lines = ["@article{" + self.new_id]
for k, v in [("Author", " and ".join(self.authors)),
("Title", self.title),
("Eprint", self.id),
("DOI", self.doi),
("ArchivePrefix", "arXiv"),
("PrimaryClass", self.category),
("Abstract", self.summary),
("Year", self.year),
("Month", self.month),
("Note", self.note),
("Url", self.url),
("File", self.id + ".pdf"),
]:
if len(v):
lines.append("%-13s = {%s}" % (k, v))
return ("," + os.linesep).join(lines) + os.linesep + "}"
class ReferenceErrorInfo(object):
"""Contains information about a reference error"""
def __init__(self, message, id):
self.message = message
self.id = id
self.bare_id = id[:id.rfind('v')]
# mark it as really old, so it gets superseded if possible
self.updated = '0'
def bibtex(self):
"""BibTeX comment explaining error"""
return "@comment{%(id)s: %(message)s}" % \
{'id': self.id, 'message': self.message}
def __str__(self):
return "Error: %(message)s (%(id)s)" % \
{'id': self.id, 'message': self.message}
def arxiv2bib(id_list):
"""Returns a list of references, corresponding to elts of id_list"""
d = arxiv2bib_dict(id_list)
print(d)
l = []
for id in id_list:
try:
l.append(d[id])
except:
l.append(ReferenceErrorInfo("Not found", id))
return l
def arxiv_request(ids):
"""Sends a request to the arxiv API."""
q = urlencode([
("id_list", ",".join(ids)),
("max_results", len(ids))
])
xml = urlopen("http://export.arxiv.org/api/query?" + q)
print(q)
# xml.read() returns bytes, but ElementTree.fromstring decodes
# to unicode when needed (python2) or string (python3)
return ElementTree.fromstring(xml.read())
def arxiv2bib_dict(id_list):
"""Fetches citations for ids in id_list into a dictionary indexed by id"""
ids = []
d = {}
# validate ids
for id in id_list:
if is_valid(id):
ids.append(id)
else:
d[id] = ReferenceErrorInfo("Invalid arXiv identifier", id)
if len(ids) == 0:
return d
# make the api call
while True:
xml = arxiv_request(ids)
# check for error
entries = xml.findall(ATOM + "entry")
try:
first_title = entries[0].find(ATOM + "title")
except:
raise FatalError("Unable to connect to arXiv.org API.")
if first_title is None or first_title.text.strip() != "Error":
break
try:
id = entries[0].find(ATOM + "summary").text.split()[-1]
del(ids[ids.index(id)])
except:
raise FatalError("Unable to parse an error returned by arXiv.org.")
# Parse each reference and store it in dictionary
for entry in entries:
try:
ref = Reference(entry)
except NotFoundError as error:
message, id = error.args
ref = ReferenceErrorInfo(message, id)
if ref.id:
d[ref.id] = ref
if ref.bare_id:
if not (ref.bare_id in d) or d[ref.bare_id].updated < ref.updated:
d[ref.bare_id] = ref
return d
import requests
import re
import subprocess
import gradio as gr
def fetch_bibtex(arxiv_link):
print(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)
results = arxiv2bib([arxiv_id])[0].bibtex()
# Get the output
# output = result.stdout
return results
interface = gr.Interface(fn=fetch_bibtex,
inputs=gr.Textbox(label="URL"),
outputs="text")
interface.launch() |