-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathlistGeonovumRepos.py
85 lines (70 loc) · 1.99 KB
/
listGeonovumRepos.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
#!/usr/bin/python3
#
# https://pygithub.readthedocs.io/en/latest/github_objects/Repository.html
#
from github import Github
import pprint
import os
import sys
import logging
f = open('docs/index.md', 'w')
f.write('''
Op dit dashboard zie je in één oogopslag alle openbare Github repositories van Geonovum.
| Naam | Omschrijving | laatste wijziging| zichtbaarheid | archief |heeft_pages|nview|releases|teams|
|------|-------------|-----------|----|----|---|---|----|-----|
''')
#
# Het script maakt gebruik van de GitHub API hiervoor heb je een access token nodig.
# Dit script gaat ervan uit dat deze in een environment variable staat.
#
git = Github(os.environ['GH_TOKEN'])
org = git.get_organization('Geonovum')
#
# Itereer over alle repositories van Geonovum.
#
for repo in org.get_repos():
#
# Sla private repos over.
#
if repo.private:
continue
#
# Dit zou een list teams moeten opleveren maar werkt nog niet.
#
teams = ""
for team in repo.get_teams():
teams = teams + "'{}',".format(team.name)
if not len(teams) == 0:
teams = teams[:-1]
releases = ""
for release in repo.get_releases():
releases = releases + " " + release.tag_name
description = repo.description
if description is not None:
description = description.replace('|',' ')
else:
description = ""
if repo.has_pages:
pages = "[pages](https://geonovum.github.io/{}/)".format(repo.name)
else:
pages = "";
if not repo.archived:
archief = "actief";
else:
archief = "archived";
if not repo.private:
zichtbaarheid = "publiek";
else:
zichtbaarheid = "prive";
views = repo.get_views_traffic('week')
f.write("| [{}]({}) | {} | {} | {} | {} | {} | {} | {} | {} |\n".format(
repo.name,
repo.html_url,
description,
repo.pushed_at.date(),
zichtbaarheid,
archief,
pages,
views['count'],
releases,
teams))