We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 24f7678 commit ba41c4dCopy full SHA for ba41c4d
1 file changed
api/index.py
@@ -9,7 +9,7 @@ def list_split(items, n):
9
def getdata(name):
10
gitpage = requests.get("https://github.com/" + name)
11
data = gitpage.text
12
- datadatereg = re.compile(r'data-date="(.*?)" id="contribution-day-component"')
+ datadatereg = re.compile(r'data-date="(.*?)" id="contribution-day-component')
13
datacountreg = re.compile(r'<tool-tip .*?class="sr-only position-absolute">(.*?) contribution')
14
datadate = datadatereg.findall(data)
15
datacount = datacountreg.findall(data)
0 commit comments