diff options
Diffstat (limited to 'tools/projects.py')
| -rw-r--r-- | tools/projects.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tools/projects.py b/tools/projects.py index bf3c72f..65cea8d 100644 --- a/tools/projects.py +++ b/tools/projects.py | |||
| @@ -110,7 +110,9 @@ def fetch_github_data(): | |||
| 110 | if response.status_code == 200: | 110 | if response.status_code == 200: |
| 111 | repos = response.json() | 111 | repos = response.json() |
| 112 | for repo in repos: | 112 | for repo in repos: |
| 113 | if "include" in repo["topics"]: | 113 | # Check if repository has "winc" topic. This means I want to include |
| 114 | # this repository on this page. | ||
| 115 | if "winc" in repo["topics"]: | ||
| 114 | include_repositories.append(repo) | 116 | include_repositories.append(repo) |
| 115 | else: | 117 | else: |
| 116 | print(f"Failed to retrieve repositories: {response.status_code}") | 118 | print(f"Failed to retrieve repositories: {response.status_code}") |
