-
Notifications
You must be signed in to change notification settings - Fork 0
/
apicall_&_visual_example.py
62 lines (52 loc) · 1.89 KB
/
apicall_&_visual_example.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
# Приклад роботи з GitHub API за допомогою requests та plotly.
import requests
from plotly.graph_objs import Bar
from plotly import offline
# Робимо виклик через API.
url = 'https://api.github.com/search/repositories?q=language:python&sort=stars'
r = requests.get(url)
# Зберігаємо відповідь API у змінну.
response_dict = r.json()
# Обробляємо результати.
repo_dicts = response_dict['items']
# Створюємо порожні списки, щоб зберігати дані для діаграми та підказок.
repo_links, stars, labels = [], [], []
# У циклі додаємо назву та рейтинг проєкту до відповідних списків.
for repo_dict in repo_dicts:
repo_name = repo_dict['name']
repo_url = repo_dict['html_url']
repo_link = f"<a href='{repo_url}'>{repo_name}</a>"
repo_links.append(repo_link)
stars.append(repo_dict['stargazers_count'])
owner = repo_dict['owner']['login']
description = repo_dict['description']
label = f"{owner}<br />{description}"
labels.append(label)
# Створюємо візуалізацію.
data = [{
'type': 'bar',
'x': repo_links,
'y': stars,
'hovertext': labels,
'marker': {
'color': 'rgb(238, 240, 108)',
'line': {'width': 1, 'color': 'rgb(38, 55, 85)'}
},
'opacity': 0.5,
}]
my_layout = {
'title': '"Найзірковіші" Python-проєкти на GitHub',
'titlefont': {'size': 26},
'xaxis': {
'title': 'Репозитарії',
'titlefont': {'size': 16},
'tickfont': {'size': 10},
},
'yaxis': {
'title': 'Зірочки',
'titlefont': {'size': 16},
'tickfont': {'size': 10},
},
}
fig = {'data': data, 'layout': my_layout}
offline.plot(fig, filename='repos_python_stars.html')