-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.py
53 lines (44 loc) · 1.62 KB
/
main.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
from scholarly import scholarly
from OSMPythonTools.nominatim import Nominatim
from mpl_toolkits.basemap import Basemap
import matplotlib.pyplot as plt
from fp.fp import FreeProxy
from scholarly import ProxyGenerator
from time import sleep
pg = ProxyGenerator()
proxy = FreeProxy(rand=True, timeout=1, country_id=['BR']).get()
pg.SingleProxy(http=proxy, https=proxy)
scholarly.use_proxy(pg)
def plot_citations(author_name):
m = Basemap(projection='mill',lon_0=180)
m.drawmapboundary(fill_color='aqua')
m.fillcontinents(color='coral',lake_color='aqua')
search_query = scholarly.search_author(author_name)
author = next(search_query).fill()
print(author)
for pub in [author.publications[0]]:
print('Title: ', pub.bib['title'])
pub = pub.fill()
sleep(45)
for citation in pub.citedby:
print(citation)
sleep(45)
firstAuthorId = None
while firstAuthorId is None or len(citation.bib['author_id']) == 0:
firstAuthorId = citation.bib['author_id'].pop()
if firstAuthorId is None:
continue
print(firstAuthorId)
author = scholarly.search_author_id(firstAuthorId)
sleep(45)
lat, lon = get_location(author.affiliation)
x, y = m(float(lon), float(lat))
m.plot(x, y, marker='D')
plt.show()
def get_location(affiliation):
nominatim = Nominatim()
res = nominatim.query(affiliation).toJSON()[0]
return (res['lat'], res['lon'])
if __name__ == '__main__':
plot_citations('Anubhav Ashok')
#get_location('Stanford University')