Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -7,12 +7,12 @@ import urllib
|
|
7 |
usernames = {}
|
8 |
|
9 |
|
10 |
-
filepath = "
|
11 |
|
12 |
with gzip.open(filepath, 'r') as f:
|
13 |
usernames["v1.0 (from 2023-09-07 to 2023-10-06)"] = json.loads(f.read().decode('utf-8'))
|
14 |
|
15 |
-
filepath = "
|
16 |
|
17 |
with gzip.open(filepath, 'r') as f:
|
18 |
usernames["v1.1 (from 2023-10-07 to 2023-12-31)"] = json.loads(f.read().decode('utf-8'))
|
|
|
7 |
usernames = {}
|
8 |
|
9 |
|
10 |
+
filepath = "username_to_repo_v1.0.json.gz"
|
11 |
|
12 |
with gzip.open(filepath, 'r') as f:
|
13 |
usernames["v1.0 (from 2023-09-07 to 2023-10-06)"] = json.loads(f.read().decode('utf-8'))
|
14 |
|
15 |
+
filepath = "username_to_repo_v1.1.json.gz"
|
16 |
|
17 |
with gzip.open(filepath, 'r') as f:
|
18 |
usernames["v1.1 (from 2023-10-07 to 2023-12-31)"] = json.loads(f.read().decode('utf-8'))
|