We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f51c452 commit f1c9aa2Copy full SHA for f1c9aa2
crawler.py
@@ -2,8 +2,8 @@
2
3
import json
4
import os
5
-from os.path import dirname, join
6
from base64 import b64decode
+from os.path import dirname, join
7
8
import github3
9
from dotenv import load_dotenv
@@ -22,7 +22,7 @@
22
organization = os.getenv("ORGANIZATION")
23
24
# Get all repos from organization
25
- search_string = "org:" + organization + " topic:" + topic
+ search_string = "org:{} topic:{}".format(organization, topic)
26
all_repos = gh.search_repositories(search_string)
27
repo_list = []
28
0 commit comments