forked from GetPageSpeed/nginx-extras
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdiscover.py
executable file
·30 lines (27 loc) · 970 Bytes
/
discover.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
#!/usr/bin/env python3
import os
import pickledb
from github import Github
from github.GithubException import UnknownObjectException, GithubException
from github.Repository import Repository
import logging as log
log.basicConfig(level=log.INFO)
g = Github(os.getenv("GITHUB_API_TOKEN"))
db = pickledb.load('known.db', False)
repositories = g.search_repositories(query='nginx in:name stars:>=1 archived:false', sort='stars')
repo: Repository
i = 0
for repo in repositories:
log.info(f'================= {repo.full_name} =================')
known = db.get(repo.full_name)
if known:
log.info('Already known')
continue
try:
contents = repo.get_contents('config')
log.info('NGINX module detected')
db.set(repo.full_name, {'module': True})
except (UnknownObjectException, GithubException):
log.warning(f"Has no config. Likely not a module")
db.set(repo.full_name, {'module': False})
db.dump()