forked from idrl-lab/PINNpapers
-
Notifications
You must be signed in to change notification settings - Fork 2
/
ref_convert.py
102 lines (77 loc) · 2.48 KB
/
ref_convert.py
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
#!/usr/bin/env python3
"""The script provides a GUI interface for converting bibtex to the markdown style which is used in this repo.
The user may need to install these external packages:
Usage:
pip install bibtexparser PyQt5
./ref_convert.py
Author:
weipeng0098@126.com - 2021/8/10 17:16
Version:
0.0.1
"""
import sys
from PyQt5.QtWidgets import QWidget, QPushButton, QPlainTextEdit, QFormLayout, QApplication
from bibtexparser.bparser import BibTexParser
import bibtexparser
import re
def handle_title(_title: str):
_title = re.compile('[{}]').sub('', _title.strip())
return _title
def handle_author(author: str):
author = ', '.join(list(map(lambda x: ' '.join(x.strip().split(', ')[::-1]), author.split('and'))))
return author
def handle_url(url: str):
try:
arxiv_identifier = re.compile('http://arxiv.org/abs/([\d\.]+)').findall(url)[0]
url = f'http://arxiv.org/pdf/{arxiv_identifier}.pdf'
except:
pass
return url
def bib_parser(bibref: str):
parser = BibTexParser(common_strings=True)
parser.ignore_nonstandard_types = False
parser.homogenise_fields = False
bib = bibtexparser.loads(bibref, parser)
lines = []
for entry in bib.entries:
title = handle_title(entry['title'])
author = handle_author(entry['author'])
try:
journal = entry['journal']
except:
journal = '**UNKNOWN_JOURNAL**'
try:
year = entry['year']
except:
year = '**UNKNOWN_YEAR**'
try:
url = entry['url']
url = handle_url(url)
except:
url = ''
lines.append(f"1. **{title}**, *{author}*, {journal}, {year}. [[paper]({url})][[code]()]")
target = '\n'.join(lines)
return target
def bib_convert():
bibtex_str = bib_parser(bibtexEdit.toPlainText())
targetEdit.setPlainText(bibtex_str)
app = QApplication(sys.argv)
window = QWidget()
window.setWindowTitle('Bibtex-Markdown converter')
layout = QFormLayout()
bibtexEdit = QPlainTextEdit()
layout.addRow('bibtex:', bibtexEdit)
bibtexEdit.setFixedWidth(1000)
targetEdit = QPlainTextEdit()
layout.addRow('markdown:', targetEdit)
targetEdit.setFixedWidth(1000)
btn = QPushButton('Convert')
btn.clicked.connect(bib_convert)
layout.addRow('Convert', btn)
btn = QPushButton('Clear')
btn.clicked.connect(bibtexEdit.clear)
btn.clicked.connect(targetEdit.clear)
layout.addRow('Clear', btn)
window.setLayout(layout)
window.show()
sys.exit(app.exec_())