-
Notifications
You must be signed in to change notification settings - Fork 53
/
Copy pathgithub_search_nCoV.json
3096 lines (3096 loc) · 200 KB
/
github_search_nCoV.json
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"incomplete_results": false,
"items": [
{
"archive_url": "https://api.github.com/repos/2019ncovmemory/nCovMemory/{archive_format}{/ref}",
"archived": false,
"assignees_url": "https://api.github.com/repos/2019ncovmemory/nCovMemory/assignees{/user}",
"blobs_url": "https://api.github.com/repos/2019ncovmemory/nCovMemory/git/blobs{/sha}",
"branches_url": "https://api.github.com/repos/2019ncovmemory/nCovMemory/branches{/branch}",
"clone_url": "https://github.com/2019ncovmemory/nCovMemory.git",
"collaborators_url": "https://api.github.com/repos/2019ncovmemory/nCovMemory/collaborators{/collaborator}",
"comments_url": "https://api.github.com/repos/2019ncovmemory/nCovMemory/comments{/number}",
"commits_url": "https://api.github.com/repos/2019ncovmemory/nCovMemory/commits{/sha}",
"compare_url": "https://api.github.com/repos/2019ncovmemory/nCovMemory/compare/{base}...{head}",
"contents_url": "https://api.github.com/repos/2019ncovmemory/nCovMemory/contents/{+path}",
"contributors_url": "https://api.github.com/repos/2019ncovmemory/nCovMemory/contributors",
"created_at": "2020-02-04T04:54:23Z",
"default_branch": "master",
"deployments_url": "https://api.github.com/repos/2019ncovmemory/nCovMemory/deployments",
"description": "2020\u65b0\u51a0\u80ba\u708e\u8bb0\u5fc6\uff1a\u62a5\u9053\u3001\u975e\u865a\u6784\u4e0e\u4e2a\u4eba\u53d9\u8ff0\uff08\u6301\u7eed\u66f4\u65b0\uff09 Memory of 2020 nCoV: Media Coverage, Non-fiction Writings, and Individual Narratives (Continuously updating)",
"disabled": false,
"downloads_url": "https://api.github.com/repos/2019ncovmemory/nCovMemory/downloads",
"events_url": "https://api.github.com/repos/2019ncovmemory/nCovMemory/events",
"fork": false,
"forks": 937,
"forks_count": 937,
"forks_url": "https://api.github.com/repos/2019ncovmemory/nCovMemory/forks",
"full_name": "2019ncovmemory/nCovMemory",
"git_commits_url": "https://api.github.com/repos/2019ncovmemory/nCovMemory/git/commits{/sha}",
"git_refs_url": "https://api.github.com/repos/2019ncovmemory/nCovMemory/git/refs{/sha}",
"git_tags_url": "https://api.github.com/repos/2019ncovmemory/nCovMemory/git/tags{/sha}",
"git_url": "git://github.com/2019ncovmemory/nCovMemory.git",
"has_downloads": true,
"has_issues": true,
"has_pages": true,
"has_projects": true,
"has_wiki": true,
"homepage": "https://2019ncovmemory.github.io/nCovMemory/",
"hooks_url": "https://api.github.com/repos/2019ncovmemory/nCovMemory/hooks",
"html_url": "https://github.com/2019ncovmemory/nCovMemory",
"id": 238126205,
"issue_comment_url": "https://api.github.com/repos/2019ncovmemory/nCovMemory/issues/comments{/number}",
"issue_events_url": "https://api.github.com/repos/2019ncovmemory/nCovMemory/issues/events{/number}",
"issues_url": "https://api.github.com/repos/2019ncovmemory/nCovMemory/issues{/number}",
"keys_url": "https://api.github.com/repos/2019ncovmemory/nCovMemory/keys{/key_id}",
"labels_url": "https://api.github.com/repos/2019ncovmemory/nCovMemory/labels{/name}",
"language": "JavaScript",
"languages_url": "https://api.github.com/repos/2019ncovmemory/nCovMemory/languages",
"license": null,
"merges_url": "https://api.github.com/repos/2019ncovmemory/nCovMemory/merges",
"milestones_url": "https://api.github.com/repos/2019ncovmemory/nCovMemory/milestones{/number}",
"mirror_url": null,
"name": "nCovMemory",
"node_id": "MDEwOlJlcG9zaXRvcnkyMzgxMjYyMDU=",
"notifications_url": "https://api.github.com/repos/2019ncovmemory/nCovMemory/notifications{?since,all,participating}",
"open_issues": 53,
"open_issues_count": 53,
"owner": {
"avatar_url": "https://avatars2.githubusercontent.com/u/60595755?v=4",
"events_url": "https://api.github.com/users/2019ncovmemory/events{/privacy}",
"followers_url": "https://api.github.com/users/2019ncovmemory/followers",
"following_url": "https://api.github.com/users/2019ncovmemory/following{/other_user}",
"gists_url": "https://api.github.com/users/2019ncovmemory/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/2019ncovmemory",
"id": 60595755,
"login": "2019ncovmemory",
"node_id": "MDQ6VXNlcjYwNTk1NzU1",
"organizations_url": "https://api.github.com/users/2019ncovmemory/orgs",
"received_events_url": "https://api.github.com/users/2019ncovmemory/received_events",
"repos_url": "https://api.github.com/users/2019ncovmemory/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/2019ncovmemory/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/2019ncovmemory/subscriptions",
"type": "User",
"url": "https://api.github.com/users/2019ncovmemory"
},
"permissions": {
"admin": false,
"pull": true,
"push": false
},
"private": false,
"pulls_url": "https://api.github.com/repos/2019ncovmemory/nCovMemory/pulls{/number}",
"pushed_at": "2020-03-02T00:59:23Z",
"releases_url": "https://api.github.com/repos/2019ncovmemory/nCovMemory/releases{/id}",
"score": 1.0,
"size": 2350613,
"ssh_url": "[email protected]:2019ncovmemory/nCovMemory.git",
"stargazers_count": 6951,
"stargazers_url": "https://api.github.com/repos/2019ncovmemory/nCovMemory/stargazers",
"statuses_url": "https://api.github.com/repos/2019ncovmemory/nCovMemory/statuses/{sha}",
"subscribers_url": "https://api.github.com/repos/2019ncovmemory/nCovMemory/subscribers",
"subscription_url": "https://api.github.com/repos/2019ncovmemory/nCovMemory/subscription",
"svn_url": "https://github.com/2019ncovmemory/nCovMemory",
"tags_url": "https://api.github.com/repos/2019ncovmemory/nCovMemory/tags",
"teams_url": "https://api.github.com/repos/2019ncovmemory/nCovMemory/teams",
"trees_url": "https://api.github.com/repos/2019ncovmemory/nCovMemory/git/trees{/sha}",
"updated_at": "2020-03-02T01:10:36Z",
"url": "https://api.github.com/repos/2019ncovmemory/nCovMemory",
"watchers": 6951,
"watchers_count": 6951
},
{
"archive_url": "https://api.github.com/repos/BlankerL/DXY-COVID-19-Crawler/{archive_format}{/ref}",
"archived": false,
"assignees_url": "https://api.github.com/repos/BlankerL/DXY-COVID-19-Crawler/assignees{/user}",
"blobs_url": "https://api.github.com/repos/BlankerL/DXY-COVID-19-Crawler/git/blobs{/sha}",
"branches_url": "https://api.github.com/repos/BlankerL/DXY-COVID-19-Crawler/branches{/branch}",
"clone_url": "https://github.com/BlankerL/DXY-COVID-19-Crawler.git",
"collaborators_url": "https://api.github.com/repos/BlankerL/DXY-COVID-19-Crawler/collaborators{/collaborator}",
"comments_url": "https://api.github.com/repos/BlankerL/DXY-COVID-19-Crawler/comments{/number}",
"commits_url": "https://api.github.com/repos/BlankerL/DXY-COVID-19-Crawler/commits{/sha}",
"compare_url": "https://api.github.com/repos/BlankerL/DXY-COVID-19-Crawler/compare/{base}...{head}",
"contents_url": "https://api.github.com/repos/BlankerL/DXY-COVID-19-Crawler/contents/{+path}",
"contributors_url": "https://api.github.com/repos/BlankerL/DXY-COVID-19-Crawler/contributors",
"created_at": "2020-01-21T18:16:26Z",
"default_branch": "master",
"deployments_url": "https://api.github.com/repos/BlankerL/DXY-COVID-19-Crawler/deployments",
"description": "2019\u65b0\u578b\u51a0\u72b6\u75c5\u6bd2\u75ab\u60c5\u5b9e\u65f6\u722c\u866b\u53caAPI | COVID-19/2019-nCoV Realtime Infection Crawler and API",
"disabled": false,
"downloads_url": "https://api.github.com/repos/BlankerL/DXY-COVID-19-Crawler/downloads",
"events_url": "https://api.github.com/repos/BlankerL/DXY-COVID-19-Crawler/events",
"fork": false,
"forks": 232,
"forks_count": 232,
"forks_url": "https://api.github.com/repos/BlankerL/DXY-COVID-19-Crawler/forks",
"full_name": "BlankerL/DXY-COVID-19-Crawler",
"git_commits_url": "https://api.github.com/repos/BlankerL/DXY-COVID-19-Crawler/git/commits{/sha}",
"git_refs_url": "https://api.github.com/repos/BlankerL/DXY-COVID-19-Crawler/git/refs{/sha}",
"git_tags_url": "https://api.github.com/repos/BlankerL/DXY-COVID-19-Crawler/git/tags{/sha}",
"git_url": "git://github.com/BlankerL/DXY-COVID-19-Crawler.git",
"has_downloads": true,
"has_issues": true,
"has_pages": false,
"has_projects": true,
"has_wiki": true,
"homepage": "https://lab.isaaclin.cn/nCoV/",
"hooks_url": "https://api.github.com/repos/BlankerL/DXY-COVID-19-Crawler/hooks",
"html_url": "https://github.com/BlankerL/DXY-COVID-19-Crawler",
"id": 235410230,
"issue_comment_url": "https://api.github.com/repos/BlankerL/DXY-COVID-19-Crawler/issues/comments{/number}",
"issue_events_url": "https://api.github.com/repos/BlankerL/DXY-COVID-19-Crawler/issues/events{/number}",
"issues_url": "https://api.github.com/repos/BlankerL/DXY-COVID-19-Crawler/issues{/number}",
"keys_url": "https://api.github.com/repos/BlankerL/DXY-COVID-19-Crawler/keys{/key_id}",
"labels_url": "https://api.github.com/repos/BlankerL/DXY-COVID-19-Crawler/labels{/name}",
"language": "Python",
"languages_url": "https://api.github.com/repos/BlankerL/DXY-COVID-19-Crawler/languages",
"license": {
"key": "mit",
"name": "MIT License",
"node_id": "MDc6TGljZW5zZTEz",
"spdx_id": "MIT",
"url": "https://api.github.com/licenses/mit"
},
"merges_url": "https://api.github.com/repos/BlankerL/DXY-COVID-19-Crawler/merges",
"milestones_url": "https://api.github.com/repos/BlankerL/DXY-COVID-19-Crawler/milestones{/number}",
"mirror_url": null,
"name": "DXY-COVID-19-Crawler",
"node_id": "MDEwOlJlcG9zaXRvcnkyMzU0MTAyMzA=",
"notifications_url": "https://api.github.com/repos/BlankerL/DXY-COVID-19-Crawler/notifications{?since,all,participating}",
"open_issues": 5,
"open_issues_count": 5,
"owner": {
"avatar_url": "https://avatars3.githubusercontent.com/u/24969376?v=4",
"events_url": "https://api.github.com/users/BlankerL/events{/privacy}",
"followers_url": "https://api.github.com/users/BlankerL/followers",
"following_url": "https://api.github.com/users/BlankerL/following{/other_user}",
"gists_url": "https://api.github.com/users/BlankerL/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/BlankerL",
"id": 24969376,
"login": "BlankerL",
"node_id": "MDQ6VXNlcjI0OTY5Mzc2",
"organizations_url": "https://api.github.com/users/BlankerL/orgs",
"received_events_url": "https://api.github.com/users/BlankerL/received_events",
"repos_url": "https://api.github.com/users/BlankerL/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/BlankerL/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/BlankerL/subscriptions",
"type": "User",
"url": "https://api.github.com/users/BlankerL"
},
"permissions": {
"admin": false,
"pull": true,
"push": false
},
"private": false,
"pulls_url": "https://api.github.com/repos/BlankerL/DXY-COVID-19-Crawler/pulls{/number}",
"pushed_at": "2020-02-29T12:32:05Z",
"releases_url": "https://api.github.com/repos/BlankerL/DXY-COVID-19-Crawler/releases{/id}",
"score": 1.0,
"size": 143,
"ssh_url": "[email protected]:BlankerL/DXY-COVID-19-Crawler.git",
"stargazers_count": 1123,
"stargazers_url": "https://api.github.com/repos/BlankerL/DXY-COVID-19-Crawler/stargazers",
"statuses_url": "https://api.github.com/repos/BlankerL/DXY-COVID-19-Crawler/statuses/{sha}",
"subscribers_url": "https://api.github.com/repos/BlankerL/DXY-COVID-19-Crawler/subscribers",
"subscription_url": "https://api.github.com/repos/BlankerL/DXY-COVID-19-Crawler/subscription",
"svn_url": "https://github.com/BlankerL/DXY-COVID-19-Crawler",
"tags_url": "https://api.github.com/repos/BlankerL/DXY-COVID-19-Crawler/tags",
"teams_url": "https://api.github.com/repos/BlankerL/DXY-COVID-19-Crawler/teams",
"trees_url": "https://api.github.com/repos/BlankerL/DXY-COVID-19-Crawler/git/trees{/sha}",
"updated_at": "2020-03-02T00:50:19Z",
"url": "https://api.github.com/repos/BlankerL/DXY-COVID-19-Crawler",
"watchers": 1123,
"watchers_count": 1123
},
{
"archive_url": "https://api.github.com/repos/Pratitya/wuhan2020-timeline/{archive_format}{/ref}",
"archived": false,
"assignees_url": "https://api.github.com/repos/Pratitya/wuhan2020-timeline/assignees{/user}",
"blobs_url": "https://api.github.com/repos/Pratitya/wuhan2020-timeline/git/blobs{/sha}",
"branches_url": "https://api.github.com/repos/Pratitya/wuhan2020-timeline/branches{/branch}",
"clone_url": "https://github.com/Pratitya/wuhan2020-timeline.git",
"collaborators_url": "https://api.github.com/repos/Pratitya/wuhan2020-timeline/collaborators{/collaborator}",
"comments_url": "https://api.github.com/repos/Pratitya/wuhan2020-timeline/comments{/number}",
"commits_url": "https://api.github.com/repos/Pratitya/wuhan2020-timeline/commits{/sha}",
"compare_url": "https://api.github.com/repos/Pratitya/wuhan2020-timeline/compare/{base}...{head}",
"contents_url": "https://api.github.com/repos/Pratitya/wuhan2020-timeline/contents/{+path}",
"contributors_url": "https://api.github.com/repos/Pratitya/wuhan2020-timeline/contributors",
"created_at": "2020-01-29T04:44:57Z",
"default_branch": "master",
"deployments_url": "https://api.github.com/repos/Pratitya/wuhan2020-timeline/deployments",
"description": "\u4ee5 \u793e\u4f1a\u5b66\u5e74\u9274\u6a21\u5f0f\u4f53\u4f8b\u89c4\u8303\u5730\u7edf\u7f16\u81ea2019\u5e7412\u6708\u8d77\u6b66\u6c49\u65b0\u51a0\u80ba\u708e\u75ab\u60c5\u8fdb\u5c55\u7684\u65f6\u95f4\u7ebf\u3002",
"disabled": false,
"downloads_url": "https://api.github.com/repos/Pratitya/wuhan2020-timeline/downloads",
"events_url": "https://api.github.com/repos/Pratitya/wuhan2020-timeline/events",
"fork": false,
"forks": 174,
"forks_count": 174,
"forks_url": "https://api.github.com/repos/Pratitya/wuhan2020-timeline/forks",
"full_name": "Pratitya/wuhan2020-timeline",
"git_commits_url": "https://api.github.com/repos/Pratitya/wuhan2020-timeline/git/commits{/sha}",
"git_refs_url": "https://api.github.com/repos/Pratitya/wuhan2020-timeline/git/refs{/sha}",
"git_tags_url": "https://api.github.com/repos/Pratitya/wuhan2020-timeline/git/tags{/sha}",
"git_url": "git://github.com/Pratitya/wuhan2020-timeline.git",
"has_downloads": true,
"has_issues": true,
"has_pages": true,
"has_projects": true,
"has_wiki": true,
"homepage": "https://pratitya.github.io/wuhan2020-timeline/",
"hooks_url": "https://api.github.com/repos/Pratitya/wuhan2020-timeline/hooks",
"html_url": "https://github.com/Pratitya/wuhan2020-timeline",
"id": 236904605,
"issue_comment_url": "https://api.github.com/repos/Pratitya/wuhan2020-timeline/issues/comments{/number}",
"issue_events_url": "https://api.github.com/repos/Pratitya/wuhan2020-timeline/issues/events{/number}",
"issues_url": "https://api.github.com/repos/Pratitya/wuhan2020-timeline/issues{/number}",
"keys_url": "https://api.github.com/repos/Pratitya/wuhan2020-timeline/keys{/key_id}",
"labels_url": "https://api.github.com/repos/Pratitya/wuhan2020-timeline/labels{/name}",
"language": null,
"languages_url": "https://api.github.com/repos/Pratitya/wuhan2020-timeline/languages",
"license": null,
"merges_url": "https://api.github.com/repos/Pratitya/wuhan2020-timeline/merges",
"milestones_url": "https://api.github.com/repos/Pratitya/wuhan2020-timeline/milestones{/number}",
"mirror_url": null,
"name": "wuhan2020-timeline",
"node_id": "MDEwOlJlcG9zaXRvcnkyMzY5MDQ2MDU=",
"notifications_url": "https://api.github.com/repos/Pratitya/wuhan2020-timeline/notifications{?since,all,participating}",
"open_issues": 82,
"open_issues_count": 82,
"owner": {
"avatar_url": "https://avatars1.githubusercontent.com/u/48636508?v=4",
"events_url": "https://api.github.com/users/Pratitya/events{/privacy}",
"followers_url": "https://api.github.com/users/Pratitya/followers",
"following_url": "https://api.github.com/users/Pratitya/following{/other_user}",
"gists_url": "https://api.github.com/users/Pratitya/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/Pratitya",
"id": 48636508,
"login": "Pratitya",
"node_id": "MDQ6VXNlcjQ4NjM2NTA4",
"organizations_url": "https://api.github.com/users/Pratitya/orgs",
"received_events_url": "https://api.github.com/users/Pratitya/received_events",
"repos_url": "https://api.github.com/users/Pratitya/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/Pratitya/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/Pratitya/subscriptions",
"type": "User",
"url": "https://api.github.com/users/Pratitya"
},
"permissions": {
"admin": false,
"pull": true,
"push": false
},
"private": false,
"pulls_url": "https://api.github.com/repos/Pratitya/wuhan2020-timeline/pulls{/number}",
"pushed_at": "2020-03-01T11:11:32Z",
"releases_url": "https://api.github.com/repos/Pratitya/wuhan2020-timeline/releases{/id}",
"score": 1.0,
"size": 4780,
"ssh_url": "[email protected]:Pratitya/wuhan2020-timeline.git",
"stargazers_count": 1017,
"stargazers_url": "https://api.github.com/repos/Pratitya/wuhan2020-timeline/stargazers",
"statuses_url": "https://api.github.com/repos/Pratitya/wuhan2020-timeline/statuses/{sha}",
"subscribers_url": "https://api.github.com/repos/Pratitya/wuhan2020-timeline/subscribers",
"subscription_url": "https://api.github.com/repos/Pratitya/wuhan2020-timeline/subscription",
"svn_url": "https://github.com/Pratitya/wuhan2020-timeline",
"tags_url": "https://api.github.com/repos/Pratitya/wuhan2020-timeline/tags",
"teams_url": "https://api.github.com/repos/Pratitya/wuhan2020-timeline/teams",
"trees_url": "https://api.github.com/repos/Pratitya/wuhan2020-timeline/git/trees{/sha}",
"updated_at": "2020-03-01T17:33:22Z",
"url": "https://api.github.com/repos/Pratitya/wuhan2020-timeline",
"watchers": 1017,
"watchers_count": 1017
},
{
"archive_url": "https://api.github.com/repos/BlankerL/DXY-COVID-19-Data/{archive_format}{/ref}",
"archived": false,
"assignees_url": "https://api.github.com/repos/BlankerL/DXY-COVID-19-Data/assignees{/user}",
"blobs_url": "https://api.github.com/repos/BlankerL/DXY-COVID-19-Data/git/blobs{/sha}",
"branches_url": "https://api.github.com/repos/BlankerL/DXY-COVID-19-Data/branches{/branch}",
"clone_url": "https://github.com/BlankerL/DXY-COVID-19-Data.git",
"collaborators_url": "https://api.github.com/repos/BlankerL/DXY-COVID-19-Data/collaborators{/collaborator}",
"comments_url": "https://api.github.com/repos/BlankerL/DXY-COVID-19-Data/comments{/number}",
"commits_url": "https://api.github.com/repos/BlankerL/DXY-COVID-19-Data/commits{/sha}",
"compare_url": "https://api.github.com/repos/BlankerL/DXY-COVID-19-Data/compare/{base}...{head}",
"contents_url": "https://api.github.com/repos/BlankerL/DXY-COVID-19-Data/contents/{+path}",
"contributors_url": "https://api.github.com/repos/BlankerL/DXY-COVID-19-Data/contributors",
"created_at": "2020-01-31T13:21:57Z",
"default_branch": "master",
"deployments_url": "https://api.github.com/repos/BlankerL/DXY-COVID-19-Data/deployments",
"description": "2019\u65b0\u578b\u51a0\u72b6\u75c5\u6bd2\u75ab\u60c5\u65f6\u95f4\u5e8f\u5217\u6570\u636e\u4ed3\u5e93 | COVID-19/2019-nCoV Infection Time Series Data Warehouse",
"disabled": false,
"downloads_url": "https://api.github.com/repos/BlankerL/DXY-COVID-19-Data/downloads",
"events_url": "https://api.github.com/repos/BlankerL/DXY-COVID-19-Data/events",
"fork": false,
"forks": 261,
"forks_count": 261,
"forks_url": "https://api.github.com/repos/BlankerL/DXY-COVID-19-Data/forks",
"full_name": "BlankerL/DXY-COVID-19-Data",
"git_commits_url": "https://api.github.com/repos/BlankerL/DXY-COVID-19-Data/git/commits{/sha}",
"git_refs_url": "https://api.github.com/repos/BlankerL/DXY-COVID-19-Data/git/refs{/sha}",
"git_tags_url": "https://api.github.com/repos/BlankerL/DXY-COVID-19-Data/git/tags{/sha}",
"git_url": "git://github.com/BlankerL/DXY-COVID-19-Data.git",
"has_downloads": true,
"has_issues": true,
"has_pages": false,
"has_projects": true,
"has_wiki": true,
"homepage": "https://lab.isaaclin.cn/nCoV/",
"hooks_url": "https://api.github.com/repos/BlankerL/DXY-COVID-19-Data/hooks",
"html_url": "https://github.com/BlankerL/DXY-COVID-19-Data",
"id": 237434537,
"issue_comment_url": "https://api.github.com/repos/BlankerL/DXY-COVID-19-Data/issues/comments{/number}",
"issue_events_url": "https://api.github.com/repos/BlankerL/DXY-COVID-19-Data/issues/events{/number}",
"issues_url": "https://api.github.com/repos/BlankerL/DXY-COVID-19-Data/issues{/number}",
"keys_url": "https://api.github.com/repos/BlankerL/DXY-COVID-19-Data/keys{/key_id}",
"labels_url": "https://api.github.com/repos/BlankerL/DXY-COVID-19-Data/labels{/name}",
"language": "Python",
"languages_url": "https://api.github.com/repos/BlankerL/DXY-COVID-19-Data/languages",
"license": null,
"merges_url": "https://api.github.com/repos/BlankerL/DXY-COVID-19-Data/merges",
"milestones_url": "https://api.github.com/repos/BlankerL/DXY-COVID-19-Data/milestones{/number}",
"mirror_url": null,
"name": "DXY-COVID-19-Data",
"node_id": "MDEwOlJlcG9zaXRvcnkyMzc0MzQ1Mzc=",
"notifications_url": "https://api.github.com/repos/BlankerL/DXY-COVID-19-Data/notifications{?since,all,participating}",
"open_issues": 3,
"open_issues_count": 3,
"owner": {
"avatar_url": "https://avatars3.githubusercontent.com/u/24969376?v=4",
"events_url": "https://api.github.com/users/BlankerL/events{/privacy}",
"followers_url": "https://api.github.com/users/BlankerL/followers",
"following_url": "https://api.github.com/users/BlankerL/following{/other_user}",
"gists_url": "https://api.github.com/users/BlankerL/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/BlankerL",
"id": 24969376,
"login": "BlankerL",
"node_id": "MDQ6VXNlcjI0OTY5Mzc2",
"organizations_url": "https://api.github.com/users/BlankerL/orgs",
"received_events_url": "https://api.github.com/users/BlankerL/received_events",
"repos_url": "https://api.github.com/users/BlankerL/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/BlankerL/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/BlankerL/subscriptions",
"type": "User",
"url": "https://api.github.com/users/BlankerL"
},
"permissions": {
"admin": false,
"pull": true,
"push": false
},
"private": false,
"pulls_url": "https://api.github.com/repos/BlankerL/DXY-COVID-19-Data/pulls{/number}",
"pushed_at": "2020-03-02T00:25:11Z",
"releases_url": "https://api.github.com/repos/BlankerL/DXY-COVID-19-Data/releases{/id}",
"score": 1.0,
"size": 19991,
"ssh_url": "[email protected]:BlankerL/DXY-COVID-19-Data.git",
"stargazers_count": 898,
"stargazers_url": "https://api.github.com/repos/BlankerL/DXY-COVID-19-Data/stargazers",
"statuses_url": "https://api.github.com/repos/BlankerL/DXY-COVID-19-Data/statuses/{sha}",
"subscribers_url": "https://api.github.com/repos/BlankerL/DXY-COVID-19-Data/subscribers",
"subscription_url": "https://api.github.com/repos/BlankerL/DXY-COVID-19-Data/subscription",
"svn_url": "https://github.com/BlankerL/DXY-COVID-19-Data",
"tags_url": "https://api.github.com/repos/BlankerL/DXY-COVID-19-Data/tags",
"teams_url": "https://api.github.com/repos/BlankerL/DXY-COVID-19-Data/teams",
"trees_url": "https://api.github.com/repos/BlankerL/DXY-COVID-19-Data/git/trees{/sha}",
"updated_at": "2020-03-02T01:16:36Z",
"url": "https://api.github.com/repos/BlankerL/DXY-COVID-19-Data",
"watchers": 898,
"watchers_count": 898
},
{
"archive_url": "https://api.github.com/repos/globalcitizen/2019-wuhan-coronavirus-data/{archive_format}{/ref}",
"archived": false,
"assignees_url": "https://api.github.com/repos/globalcitizen/2019-wuhan-coronavirus-data/assignees{/user}",
"blobs_url": "https://api.github.com/repos/globalcitizen/2019-wuhan-coronavirus-data/git/blobs{/sha}",
"branches_url": "https://api.github.com/repos/globalcitizen/2019-wuhan-coronavirus-data/branches{/branch}",
"clone_url": "https://github.com/globalcitizen/2019-wuhan-coronavirus-data.git",
"collaborators_url": "https://api.github.com/repos/globalcitizen/2019-wuhan-coronavirus-data/collaborators{/collaborator}",
"comments_url": "https://api.github.com/repos/globalcitizen/2019-wuhan-coronavirus-data/comments{/number}",
"commits_url": "https://api.github.com/repos/globalcitizen/2019-wuhan-coronavirus-data/commits{/sha}",
"compare_url": "https://api.github.com/repos/globalcitizen/2019-wuhan-coronavirus-data/compare/{base}...{head}",
"contents_url": "https://api.github.com/repos/globalcitizen/2019-wuhan-coronavirus-data/contents/{+path}",
"contributors_url": "https://api.github.com/repos/globalcitizen/2019-wuhan-coronavirus-data/contributors",
"created_at": "2020-01-25T03:17:22Z",
"default_branch": "master",
"deployments_url": "https://api.github.com/repos/globalcitizen/2019-wuhan-coronavirus-data/deployments",
"description": "2019 Wuhan Coronavirus data (2019-nCoV)",
"disabled": false,
"downloads_url": "https://api.github.com/repos/globalcitizen/2019-wuhan-coronavirus-data/downloads",
"events_url": "https://api.github.com/repos/globalcitizen/2019-wuhan-coronavirus-data/events",
"fork": false,
"forks": 84,
"forks_count": 84,
"forks_url": "https://api.github.com/repos/globalcitizen/2019-wuhan-coronavirus-data/forks",
"full_name": "globalcitizen/2019-wuhan-coronavirus-data",
"git_commits_url": "https://api.github.com/repos/globalcitizen/2019-wuhan-coronavirus-data/git/commits{/sha}",
"git_refs_url": "https://api.github.com/repos/globalcitizen/2019-wuhan-coronavirus-data/git/refs{/sha}",
"git_tags_url": "https://api.github.com/repos/globalcitizen/2019-wuhan-coronavirus-data/git/tags{/sha}",
"git_url": "git://github.com/globalcitizen/2019-wuhan-coronavirus-data.git",
"has_downloads": true,
"has_issues": true,
"has_pages": false,
"has_projects": true,
"has_wiki": true,
"homepage": null,
"hooks_url": "https://api.github.com/repos/globalcitizen/2019-wuhan-coronavirus-data/hooks",
"html_url": "https://github.com/globalcitizen/2019-wuhan-coronavirus-data",
"id": 236119949,
"issue_comment_url": "https://api.github.com/repos/globalcitizen/2019-wuhan-coronavirus-data/issues/comments{/number}",
"issue_events_url": "https://api.github.com/repos/globalcitizen/2019-wuhan-coronavirus-data/issues/events{/number}",
"issues_url": "https://api.github.com/repos/globalcitizen/2019-wuhan-coronavirus-data/issues{/number}",
"keys_url": "https://api.github.com/repos/globalcitizen/2019-wuhan-coronavirus-data/keys{/key_id}",
"labels_url": "https://api.github.com/repos/globalcitizen/2019-wuhan-coronavirus-data/labels{/name}",
"language": "PHP",
"languages_url": "https://api.github.com/repos/globalcitizen/2019-wuhan-coronavirus-data/languages",
"license": {
"key": "gpl-3.0",
"name": "GNU General Public License v3.0",
"node_id": "MDc6TGljZW5zZTk=",
"spdx_id": "GPL-3.0",
"url": "https://api.github.com/licenses/gpl-3.0"
},
"merges_url": "https://api.github.com/repos/globalcitizen/2019-wuhan-coronavirus-data/merges",
"milestones_url": "https://api.github.com/repos/globalcitizen/2019-wuhan-coronavirus-data/milestones{/number}",
"mirror_url": null,
"name": "2019-wuhan-coronavirus-data",
"node_id": "MDEwOlJlcG9zaXRvcnkyMzYxMTk5NDk=",
"notifications_url": "https://api.github.com/repos/globalcitizen/2019-wuhan-coronavirus-data/notifications{?since,all,participating}",
"open_issues": 3,
"open_issues_count": 3,
"owner": {
"avatar_url": "https://avatars3.githubusercontent.com/u/505366?v=4",
"events_url": "https://api.github.com/users/globalcitizen/events{/privacy}",
"followers_url": "https://api.github.com/users/globalcitizen/followers",
"following_url": "https://api.github.com/users/globalcitizen/following{/other_user}",
"gists_url": "https://api.github.com/users/globalcitizen/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/globalcitizen",
"id": 505366,
"login": "globalcitizen",
"node_id": "MDQ6VXNlcjUwNTM2Ng==",
"organizations_url": "https://api.github.com/users/globalcitizen/orgs",
"received_events_url": "https://api.github.com/users/globalcitizen/received_events",
"repos_url": "https://api.github.com/users/globalcitizen/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/globalcitizen/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/globalcitizen/subscriptions",
"type": "User",
"url": "https://api.github.com/users/globalcitizen"
},
"permissions": {
"admin": false,
"pull": true,
"push": false
},
"private": false,
"pulls_url": "https://api.github.com/repos/globalcitizen/2019-wuhan-coronavirus-data/pulls{/number}",
"pushed_at": "2020-03-01T09:54:26Z",
"releases_url": "https://api.github.com/repos/globalcitizen/2019-wuhan-coronavirus-data/releases{/id}",
"score": 1.0,
"size": 346815,
"ssh_url": "[email protected]:globalcitizen/2019-wuhan-coronavirus-data.git",
"stargazers_count": 472,
"stargazers_url": "https://api.github.com/repos/globalcitizen/2019-wuhan-coronavirus-data/stargazers",
"statuses_url": "https://api.github.com/repos/globalcitizen/2019-wuhan-coronavirus-data/statuses/{sha}",
"subscribers_url": "https://api.github.com/repos/globalcitizen/2019-wuhan-coronavirus-data/subscribers",
"subscription_url": "https://api.github.com/repos/globalcitizen/2019-wuhan-coronavirus-data/subscription",
"svn_url": "https://github.com/globalcitizen/2019-wuhan-coronavirus-data",
"tags_url": "https://api.github.com/repos/globalcitizen/2019-wuhan-coronavirus-data/tags",
"teams_url": "https://api.github.com/repos/globalcitizen/2019-wuhan-coronavirus-data/teams",
"trees_url": "https://api.github.com/repos/globalcitizen/2019-wuhan-coronavirus-data/git/trees{/sha}",
"updated_at": "2020-03-01T23:32:55Z",
"url": "https://api.github.com/repos/globalcitizen/2019-wuhan-coronavirus-data",
"watchers": 472,
"watchers_count": 472
},
{
"archive_url": "https://api.github.com/repos/shfshanyue/2019-ncov/{archive_format}{/ref}",
"archived": false,
"assignees_url": "https://api.github.com/repos/shfshanyue/2019-ncov/assignees{/user}",
"blobs_url": "https://api.github.com/repos/shfshanyue/2019-ncov/git/blobs{/sha}",
"branches_url": "https://api.github.com/repos/shfshanyue/2019-ncov/branches{/branch}",
"clone_url": "https://github.com/shfshanyue/2019-ncov.git",
"collaborators_url": "https://api.github.com/repos/shfshanyue/2019-ncov/collaborators{/collaborator}",
"comments_url": "https://api.github.com/repos/shfshanyue/2019-ncov/comments{/number}",
"commits_url": "https://api.github.com/repos/shfshanyue/2019-ncov/commits{/sha}",
"compare_url": "https://api.github.com/repos/shfshanyue/2019-ncov/compare/{base}...{head}",
"contents_url": "https://api.github.com/repos/shfshanyue/2019-ncov/contents/{+path}",
"contributors_url": "https://api.github.com/repos/shfshanyue/2019-ncov/contributors",
"created_at": "2020-01-27T06:59:11Z",
"default_branch": "master",
"deployments_url": "https://api.github.com/repos/shfshanyue/2019-ncov/deployments",
"description": "\u5168\u56fd\u65b0\u578b\u51a0\u72b6\u75c5\u6bd2\uff0c\u80ba\u708e\u75ab\u60c5\u5b9e\u65f6\u7701\u5e02\u5730\u56fe",
"disabled": false,
"downloads_url": "https://api.github.com/repos/shfshanyue/2019-ncov/downloads",
"events_url": "https://api.github.com/repos/shfshanyue/2019-ncov/events",
"fork": false,
"forks": 90,
"forks_count": 90,
"forks_url": "https://api.github.com/repos/shfshanyue/2019-ncov/forks",
"full_name": "shfshanyue/2019-ncov",
"git_commits_url": "https://api.github.com/repos/shfshanyue/2019-ncov/git/commits{/sha}",
"git_refs_url": "https://api.github.com/repos/shfshanyue/2019-ncov/git/refs{/sha}",
"git_tags_url": "https://api.github.com/repos/shfshanyue/2019-ncov/git/tags{/sha}",
"git_url": "git://github.com/shfshanyue/2019-ncov.git",
"has_downloads": true,
"has_issues": true,
"has_pages": false,
"has_projects": true,
"has_wiki": true,
"homepage": "https://ncov.shanyue.tech",
"hooks_url": "https://api.github.com/repos/shfshanyue/2019-ncov/hooks",
"html_url": "https://github.com/shfshanyue/2019-ncov",
"id": 236435703,
"issue_comment_url": "https://api.github.com/repos/shfshanyue/2019-ncov/issues/comments{/number}",
"issue_events_url": "https://api.github.com/repos/shfshanyue/2019-ncov/issues/events{/number}",
"issues_url": "https://api.github.com/repos/shfshanyue/2019-ncov/issues{/number}",
"keys_url": "https://api.github.com/repos/shfshanyue/2019-ncov/keys{/key_id}",
"labels_url": "https://api.github.com/repos/shfshanyue/2019-ncov/labels{/name}",
"language": "JavaScript",
"languages_url": "https://api.github.com/repos/shfshanyue/2019-ncov/languages",
"license": null,
"merges_url": "https://api.github.com/repos/shfshanyue/2019-ncov/merges",
"milestones_url": "https://api.github.com/repos/shfshanyue/2019-ncov/milestones{/number}",
"mirror_url": null,
"name": "2019-ncov",
"node_id": "MDEwOlJlcG9zaXRvcnkyMzY0MzU3MDM=",
"notifications_url": "https://api.github.com/repos/shfshanyue/2019-ncov/notifications{?since,all,participating}",
"open_issues": 13,
"open_issues_count": 13,
"owner": {
"avatar_url": "https://avatars0.githubusercontent.com/u/13389461?v=4",
"events_url": "https://api.github.com/users/shfshanyue/events{/privacy}",
"followers_url": "https://api.github.com/users/shfshanyue/followers",
"following_url": "https://api.github.com/users/shfshanyue/following{/other_user}",
"gists_url": "https://api.github.com/users/shfshanyue/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/shfshanyue",
"id": 13389461,
"login": "shfshanyue",
"node_id": "MDQ6VXNlcjEzMzg5NDYx",
"organizations_url": "https://api.github.com/users/shfshanyue/orgs",
"received_events_url": "https://api.github.com/users/shfshanyue/received_events",
"repos_url": "https://api.github.com/users/shfshanyue/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/shfshanyue/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/shfshanyue/subscriptions",
"type": "User",
"url": "https://api.github.com/users/shfshanyue"
},
"permissions": {
"admin": false,
"pull": true,
"push": false
},
"private": false,
"pulls_url": "https://api.github.com/repos/shfshanyue/2019-ncov/pulls{/number}",
"pushed_at": "2020-02-12T13:05:27Z",
"releases_url": "https://api.github.com/repos/shfshanyue/2019-ncov/releases{/id}",
"score": 1.0,
"size": 5926,
"ssh_url": "[email protected]:shfshanyue/2019-ncov.git",
"stargazers_count": 412,
"stargazers_url": "https://api.github.com/repos/shfshanyue/2019-ncov/stargazers",
"statuses_url": "https://api.github.com/repos/shfshanyue/2019-ncov/statuses/{sha}",
"subscribers_url": "https://api.github.com/repos/shfshanyue/2019-ncov/subscribers",
"subscription_url": "https://api.github.com/repos/shfshanyue/2019-ncov/subscription",
"svn_url": "https://github.com/shfshanyue/2019-ncov",
"tags_url": "https://api.github.com/repos/shfshanyue/2019-ncov/tags",
"teams_url": "https://api.github.com/repos/shfshanyue/2019-ncov/teams",
"trees_url": "https://api.github.com/repos/shfshanyue/2019-ncov/git/trees{/sha}",
"updated_at": "2020-03-01T15:35:50Z",
"url": "https://api.github.com/repos/shfshanyue/2019-ncov",
"watchers": 412,
"watchers_count": 412
},
{
"archive_url": "https://api.github.com/repos/lispczz/pneumonia/{archive_format}{/ref}",
"archived": false,
"assignees_url": "https://api.github.com/repos/lispczz/pneumonia/assignees{/user}",
"blobs_url": "https://api.github.com/repos/lispczz/pneumonia/git/blobs{/sha}",
"branches_url": "https://api.github.com/repos/lispczz/pneumonia/branches{/branch}",
"clone_url": "https://github.com/lispczz/pneumonia.git",
"collaborators_url": "https://api.github.com/repos/lispczz/pneumonia/collaborators{/collaborator}",
"comments_url": "https://api.github.com/repos/lispczz/pneumonia/comments{/number}",
"commits_url": "https://api.github.com/repos/lispczz/pneumonia/commits{/sha}",
"compare_url": "https://api.github.com/repos/lispczz/pneumonia/compare/{base}...{head}",
"contents_url": "https://api.github.com/repos/lispczz/pneumonia/contents/{+path}",
"contributors_url": "https://api.github.com/repos/lispczz/pneumonia/contributors",
"created_at": "2020-01-25T08:56:59Z",
"default_branch": "master",
"deployments_url": "https://api.github.com/repos/lispczz/pneumonia/deployments",
"description": "\u4e2d\u56fd\u65b0\u578b\u51a0\u72b6\u75c5\u6bd2\u80ba\u708e\u5730\u7ea7\u5e02\u75ab\u60c5\u56fe",
"disabled": false,
"downloads_url": "https://api.github.com/repos/lispczz/pneumonia/downloads",
"events_url": "https://api.github.com/repos/lispczz/pneumonia/events",
"fork": false,
"forks": 93,
"forks_count": 93,
"forks_url": "https://api.github.com/repos/lispczz/pneumonia/forks",
"full_name": "lispczz/pneumonia",
"git_commits_url": "https://api.github.com/repos/lispczz/pneumonia/git/commits{/sha}",
"git_refs_url": "https://api.github.com/repos/lispczz/pneumonia/git/refs{/sha}",
"git_tags_url": "https://api.github.com/repos/lispczz/pneumonia/git/tags{/sha}",
"git_url": "git://github.com/lispczz/pneumonia.git",
"has_downloads": true,
"has_issues": true,
"has_pages": true,
"has_projects": true,
"has_wiki": true,
"homepage": "https://lispczz.github.io/pneumonia/",
"hooks_url": "https://api.github.com/repos/lispczz/pneumonia/hooks",
"html_url": "https://github.com/lispczz/pneumonia",
"id": 236146885,
"issue_comment_url": "https://api.github.com/repos/lispczz/pneumonia/issues/comments{/number}",
"issue_events_url": "https://api.github.com/repos/lispczz/pneumonia/issues/events{/number}",
"issues_url": "https://api.github.com/repos/lispczz/pneumonia/issues{/number}",
"keys_url": "https://api.github.com/repos/lispczz/pneumonia/keys{/key_id}",
"labels_url": "https://api.github.com/repos/lispczz/pneumonia/labels{/name}",
"language": "JavaScript",
"languages_url": "https://api.github.com/repos/lispczz/pneumonia/languages",
"license": {
"key": "mit",
"name": "MIT License",
"node_id": "MDc6TGljZW5zZTEz",
"spdx_id": "MIT",
"url": "https://api.github.com/licenses/mit"
},
"merges_url": "https://api.github.com/repos/lispczz/pneumonia/merges",
"milestones_url": "https://api.github.com/repos/lispczz/pneumonia/milestones{/number}",
"mirror_url": null,
"name": "pneumonia",
"node_id": "MDEwOlJlcG9zaXRvcnkyMzYxNDY4ODU=",
"notifications_url": "https://api.github.com/repos/lispczz/pneumonia/notifications{?since,all,participating}",
"open_issues": 7,
"open_issues_count": 7,
"owner": {
"avatar_url": "https://avatars1.githubusercontent.com/u/53206349?v=4",
"events_url": "https://api.github.com/users/lispczz/events{/privacy}",
"followers_url": "https://api.github.com/users/lispczz/followers",
"following_url": "https://api.github.com/users/lispczz/following{/other_user}",
"gists_url": "https://api.github.com/users/lispczz/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/lispczz",
"id": 53206349,
"login": "lispczz",
"node_id": "MDQ6VXNlcjUzMjA2MzQ5",
"organizations_url": "https://api.github.com/users/lispczz/orgs",
"received_events_url": "https://api.github.com/users/lispczz/received_events",
"repos_url": "https://api.github.com/users/lispczz/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/lispczz/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/lispczz/subscriptions",
"type": "User",
"url": "https://api.github.com/users/lispczz"
},
"permissions": {
"admin": false,
"pull": true,
"push": false
},
"private": false,
"pulls_url": "https://api.github.com/repos/lispczz/pneumonia/pulls{/number}",
"pushed_at": "2020-02-29T05:26:58Z",
"releases_url": "https://api.github.com/repos/lispczz/pneumonia/releases{/id}",
"score": 1.0,
"size": 4384,
"ssh_url": "[email protected]:lispczz/pneumonia.git",
"stargazers_count": 325,
"stargazers_url": "https://api.github.com/repos/lispczz/pneumonia/stargazers",
"statuses_url": "https://api.github.com/repos/lispczz/pneumonia/statuses/{sha}",
"subscribers_url": "https://api.github.com/repos/lispczz/pneumonia/subscribers",
"subscription_url": "https://api.github.com/repos/lispczz/pneumonia/subscription",
"svn_url": "https://github.com/lispczz/pneumonia",
"tags_url": "https://api.github.com/repos/lispczz/pneumonia/tags",
"teams_url": "https://api.github.com/repos/lispczz/pneumonia/teams",
"trees_url": "https://api.github.com/repos/lispczz/pneumonia/git/trees{/sha}",
"updated_at": "2020-03-01T13:56:27Z",
"url": "https://api.github.com/repos/lispczz/pneumonia",
"watchers": 325,
"watchers_count": 325
},
{
"archive_url": "https://api.github.com/repos/nextstrain/ncov/{archive_format}{/ref}",
"archived": false,
"assignees_url": "https://api.github.com/repos/nextstrain/ncov/assignees{/user}",
"blobs_url": "https://api.github.com/repos/nextstrain/ncov/git/blobs{/sha}",
"branches_url": "https://api.github.com/repos/nextstrain/ncov/branches{/branch}",
"clone_url": "https://github.com/nextstrain/ncov.git",
"collaborators_url": "https://api.github.com/repos/nextstrain/ncov/collaborators{/collaborator}",
"comments_url": "https://api.github.com/repos/nextstrain/ncov/comments{/number}",
"commits_url": "https://api.github.com/repos/nextstrain/ncov/commits{/sha}",
"compare_url": "https://api.github.com/repos/nextstrain/ncov/compare/{base}...{head}",
"contents_url": "https://api.github.com/repos/nextstrain/ncov/contents/{+path}",
"contributors_url": "https://api.github.com/repos/nextstrain/ncov/contributors",
"created_at": "2020-01-19T17:23:17Z",
"default_branch": "master",
"deployments_url": "https://api.github.com/repos/nextstrain/ncov/deployments",
"description": "Nextstrain build for novel coronavirus (nCoV)",
"disabled": false,
"downloads_url": "https://api.github.com/repos/nextstrain/ncov/downloads",
"events_url": "https://api.github.com/repos/nextstrain/ncov/events",
"fork": false,
"forks": 65,
"forks_count": 65,
"forks_url": "https://api.github.com/repos/nextstrain/ncov/forks",
"full_name": "nextstrain/ncov",
"git_commits_url": "https://api.github.com/repos/nextstrain/ncov/git/commits{/sha}",
"git_refs_url": "https://api.github.com/repos/nextstrain/ncov/git/refs{/sha}",
"git_tags_url": "https://api.github.com/repos/nextstrain/ncov/git/tags{/sha}",
"git_url": "git://github.com/nextstrain/ncov.git",
"has_downloads": true,
"has_issues": true,
"has_pages": false,
"has_projects": true,
"has_wiki": true,
"homepage": "https://nextstrain.org/ncov",
"hooks_url": "https://api.github.com/repos/nextstrain/ncov/hooks",
"html_url": "https://github.com/nextstrain/ncov",
"id": 234936988,
"issue_comment_url": "https://api.github.com/repos/nextstrain/ncov/issues/comments{/number}",
"issue_events_url": "https://api.github.com/repos/nextstrain/ncov/issues/events{/number}",
"issues_url": "https://api.github.com/repos/nextstrain/ncov/issues{/number}",
"keys_url": "https://api.github.com/repos/nextstrain/ncov/keys{/key_id}",
"labels_url": "https://api.github.com/repos/nextstrain/ncov/labels{/name}",
"language": "Python",
"languages_url": "https://api.github.com/repos/nextstrain/ncov/languages",
"license": {
"key": "mit",
"name": "MIT License",
"node_id": "MDc6TGljZW5zZTEz",
"spdx_id": "MIT",
"url": "https://api.github.com/licenses/mit"
},
"merges_url": "https://api.github.com/repos/nextstrain/ncov/merges",
"milestones_url": "https://api.github.com/repos/nextstrain/ncov/milestones{/number}",
"mirror_url": null,
"name": "ncov",
"node_id": "MDEwOlJlcG9zaXRvcnkyMzQ5MzY5ODg=",
"notifications_url": "https://api.github.com/repos/nextstrain/ncov/notifications{?since,all,participating}",
"open_issues": 8,
"open_issues_count": 8,
"owner": {
"avatar_url": "https://avatars3.githubusercontent.com/u/22159334?v=4",
"events_url": "https://api.github.com/users/nextstrain/events{/privacy}",
"followers_url": "https://api.github.com/users/nextstrain/followers",
"following_url": "https://api.github.com/users/nextstrain/following{/other_user}",
"gists_url": "https://api.github.com/users/nextstrain/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/nextstrain",
"id": 22159334,
"login": "nextstrain",
"node_id": "MDEyOk9yZ2FuaXphdGlvbjIyMTU5MzM0",
"organizations_url": "https://api.github.com/users/nextstrain/orgs",
"received_events_url": "https://api.github.com/users/nextstrain/received_events",
"repos_url": "https://api.github.com/users/nextstrain/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/nextstrain/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/nextstrain/subscriptions",
"type": "Organization",
"url": "https://api.github.com/users/nextstrain"
},
"permissions": {
"admin": false,
"pull": true,
"push": false
},
"private": false,
"pulls_url": "https://api.github.com/repos/nextstrain/ncov/pulls{/number}",
"pushed_at": "2020-03-02T01:19:54Z",
"releases_url": "https://api.github.com/repos/nextstrain/ncov/releases{/id}",
"score": 1.0,
"size": 1519,
"ssh_url": "[email protected]:nextstrain/ncov.git",
"stargazers_count": 308,
"stargazers_url": "https://api.github.com/repos/nextstrain/ncov/stargazers",
"statuses_url": "https://api.github.com/repos/nextstrain/ncov/statuses/{sha}",
"subscribers_url": "https://api.github.com/repos/nextstrain/ncov/subscribers",
"subscription_url": "https://api.github.com/repos/nextstrain/ncov/subscription",
"svn_url": "https://github.com/nextstrain/ncov",
"tags_url": "https://api.github.com/repos/nextstrain/ncov/tags",
"teams_url": "https://api.github.com/repos/nextstrain/ncov/teams",
"trees_url": "https://api.github.com/repos/nextstrain/ncov/git/trees{/sha}",
"updated_at": "2020-03-02T01:19:57Z",
"url": "https://api.github.com/repos/nextstrain/ncov",
"watchers": 308,
"watchers_count": 308
},
{
"archive_url": "https://api.github.com/repos/veaba/ncov/{archive_format}{/ref}",
"archived": false,
"assignees_url": "https://api.github.com/repos/veaba/ncov/assignees{/user}",
"blobs_url": "https://api.github.com/repos/veaba/ncov/git/blobs{/sha}",
"branches_url": "https://api.github.com/repos/veaba/ncov/branches{/branch}",
"clone_url": "https://github.com/veaba/ncov.git",
"collaborators_url": "https://api.github.com/repos/veaba/ncov/collaborators{/collaborator}",
"comments_url": "https://api.github.com/repos/veaba/ncov/comments{/number}",
"commits_url": "https://api.github.com/repos/veaba/ncov/commits{/sha}",
"compare_url": "https://api.github.com/repos/veaba/ncov/compare/{base}...{head}",
"contents_url": "https://api.github.com/repos/veaba/ncov/contents/{+path}",
"contributors_url": "https://api.github.com/repos/veaba/ncov/contributors",
"created_at": "2020-01-20T02:34:54Z",
"default_branch": "master",
"deployments_url": "https://api.github.com/repos/veaba/ncov/deployments",
"description": "\u3010\u5df2\u53d1\u5e03\u5f39\u5e55\u7248\u672c\uff0c\u5927\u5bb6\u4e0d\u8981\u641e\u574f\u4e86\uff01\u65b0\u7248\u5927\u5c4fbeta \u7248\u672c\uff0c\u5168\u5b9e\u65f6\u6570\u636e\uff0c\u4ea4\u4e92\u5f0f\u5927\u5c4f\uff0c\u7cbe\u786e\u5230\u57ce\u5e02\u7ea7\uff0c\u5f39\u5e55\u6765\u88ad\u3011\u5173\u6ce82019\u65b0\u578b\u51a0\u72b6\u75c5\u6bd2\uff082019-nCoV\uff09\uff0c\u6570\u636e\u53ef\u89c6\u5316\u611f\u67d3\u4eba\u7fa4\u70ed\u70b9\u56fe\u3001\u8fc1\u5f99\u6269\u6563\u8f68\u8ff9\uff0c\u4ee5\u63d0\u4f9b\u5e2e\u52a9\u5206\u6790\u75ab\u60c5\u3002 \u613f\u4e16\u754c\u5b89\u597d\u3002Focus on Wuhan 2019-nCoV, data visualization, to help analyze the epidemic situation. May the world be well. (\u4e3a\u66f4\u597d\u7684\u8bbf\u95ee\uff0c\u5728\u5347\u7ea7CDN\u4e2d\uff0c\u53ef\u80fd\u5b58\u5728\u4e0d\u7a33\u5b9a\u8bbf\u95ee\uff0c\u8bf7\u8c05\u89e3)",
"disabled": false,
"downloads_url": "https://api.github.com/repos/veaba/ncov/downloads",
"events_url": "https://api.github.com/repos/veaba/ncov/events",
"fork": false,
"forks": 32,
"forks_count": 32,
"forks_url": "https://api.github.com/repos/veaba/ncov/forks",
"full_name": "veaba/ncov",
"git_commits_url": "https://api.github.com/repos/veaba/ncov/git/commits{/sha}",
"git_refs_url": "https://api.github.com/repos/veaba/ncov/git/refs{/sha}",
"git_tags_url": "https://api.github.com/repos/veaba/ncov/git/tags{/sha}",
"git_url": "git://github.com/veaba/ncov.git",
"has_downloads": true,
"has_issues": true,
"has_pages": true,
"has_projects": true,
"has_wiki": true,
"homepage": "",
"hooks_url": "https://api.github.com/repos/veaba/ncov/hooks",
"html_url": "https://github.com/veaba/ncov",
"id": 235004316,
"issue_comment_url": "https://api.github.com/repos/veaba/ncov/issues/comments{/number}",
"issue_events_url": "https://api.github.com/repos/veaba/ncov/issues/events{/number}",
"issues_url": "https://api.github.com/repos/veaba/ncov/issues{/number}",
"keys_url": "https://api.github.com/repos/veaba/ncov/keys{/key_id}",
"labels_url": "https://api.github.com/repos/veaba/ncov/labels{/name}",
"language": "TypeScript",
"languages_url": "https://api.github.com/repos/veaba/ncov/languages",
"license": {
"key": "mit",
"name": "MIT License",
"node_id": "MDc6TGljZW5zZTEz",
"spdx_id": "MIT",
"url": "https://api.github.com/licenses/mit"
},
"merges_url": "https://api.github.com/repos/veaba/ncov/merges",
"milestones_url": "https://api.github.com/repos/veaba/ncov/milestones{/number}",
"mirror_url": null,
"name": "ncov",
"node_id": "MDEwOlJlcG9zaXRvcnkyMzUwMDQzMTY=",
"notifications_url": "https://api.github.com/repos/veaba/ncov/notifications{?since,all,participating}",
"open_issues": 13,
"open_issues_count": 13,
"owner": {
"avatar_url": "https://avatars0.githubusercontent.com/u/8652596?v=4",
"events_url": "https://api.github.com/users/veaba/events{/privacy}",
"followers_url": "https://api.github.com/users/veaba/followers",
"following_url": "https://api.github.com/users/veaba/following{/other_user}",
"gists_url": "https://api.github.com/users/veaba/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/veaba",
"id": 8652596,
"login": "veaba",
"node_id": "MDQ6VXNlcjg2NTI1OTY=",
"organizations_url": "https://api.github.com/users/veaba/orgs",
"received_events_url": "https://api.github.com/users/veaba/received_events",
"repos_url": "https://api.github.com/users/veaba/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/veaba/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/veaba/subscriptions",
"type": "User",
"url": "https://api.github.com/users/veaba"
},
"permissions": {
"admin": false,
"pull": true,
"push": false
},
"private": false,
"pulls_url": "https://api.github.com/repos/veaba/ncov/pulls{/number}",
"pushed_at": "2020-03-01T07:20:36Z",
"releases_url": "https://api.github.com/repos/veaba/ncov/releases{/id}",
"score": 1.0,
"size": 5056,
"ssh_url": "[email protected]:veaba/ncov.git",
"stargazers_count": 209,
"stargazers_url": "https://api.github.com/repos/veaba/ncov/stargazers",
"statuses_url": "https://api.github.com/repos/veaba/ncov/statuses/{sha}",
"subscribers_url": "https://api.github.com/repos/veaba/ncov/subscribers",
"subscription_url": "https://api.github.com/repos/veaba/ncov/subscription",
"svn_url": "https://github.com/veaba/ncov",
"tags_url": "https://api.github.com/repos/veaba/ncov/tags",
"teams_url": "https://api.github.com/repos/veaba/ncov/teams",
"trees_url": "https://api.github.com/repos/veaba/ncov/git/trees{/sha}",
"updated_at": "2020-03-01T07:20:38Z",
"url": "https://api.github.com/repos/veaba/ncov",
"watchers": 209,
"watchers_count": 209
},
{
"archive_url": "https://api.github.com/repos/fluttercandies/ncov_2019/{archive_format}{/ref}",
"archived": false,
"assignees_url": "https://api.github.com/repos/fluttercandies/ncov_2019/assignees{/user}",
"blobs_url": "https://api.github.com/repos/fluttercandies/ncov_2019/git/blobs{/sha}",
"branches_url": "https://api.github.com/repos/fluttercandies/ncov_2019/branches{/branch}",
"clone_url": "https://github.com/fluttercandies/ncov_2019.git",
"collaborators_url": "https://api.github.com/repos/fluttercandies/ncov_2019/collaborators{/collaborator}",
"comments_url": "https://api.github.com/repos/fluttercandies/ncov_2019/comments{/number}",
"commits_url": "https://api.github.com/repos/fluttercandies/ncov_2019/commits{/sha}",
"compare_url": "https://api.github.com/repos/fluttercandies/ncov_2019/compare/{base}...{head}",
"contents_url": "https://api.github.com/repos/fluttercandies/ncov_2019/contents/{+path}",
"contributors_url": "https://api.github.com/repos/fluttercandies/ncov_2019/contributors",
"created_at": "2020-01-25T19:05:49Z",
"default_branch": "master",
"deployments_url": "https://api.github.com/repos/fluttercandies/ncov_2019/deployments",
"description": "\u4e3a\u6297\u51fb\u65b0\u80ba\u708e\u8d21\u732e\u4e00\u4efd\u6280\u672f\u529b\u91cf-App\u7814\u53d1",
"disabled": false,
"downloads_url": "https://api.github.com/repos/fluttercandies/ncov_2019/downloads",
"events_url": "https://api.github.com/repos/fluttercandies/ncov_2019/events",
"fork": false,
"forks": 47,
"forks_count": 47,
"forks_url": "https://api.github.com/repos/fluttercandies/ncov_2019/forks",
"full_name": "fluttercandies/ncov_2019",
"git_commits_url": "https://api.github.com/repos/fluttercandies/ncov_2019/git/commits{/sha}",
"git_refs_url": "https://api.github.com/repos/fluttercandies/ncov_2019/git/refs{/sha}",
"git_tags_url": "https://api.github.com/repos/fluttercandies/ncov_2019/git/tags{/sha}",
"git_url": "git://github.com/fluttercandies/ncov_2019.git",
"has_downloads": true,
"has_issues": true,
"has_pages": true,
"has_projects": true,
"has_wiki": true,
"homepage": null,
"hooks_url": "https://api.github.com/repos/fluttercandies/ncov_2019/hooks",
"html_url": "https://github.com/fluttercandies/ncov_2019",
"id": 236216079,
"issue_comment_url": "https://api.github.com/repos/fluttercandies/ncov_2019/issues/comments{/number}",
"issue_events_url": "https://api.github.com/repos/fluttercandies/ncov_2019/issues/events{/number}",
"issues_url": "https://api.github.com/repos/fluttercandies/ncov_2019/issues{/number}",
"keys_url": "https://api.github.com/repos/fluttercandies/ncov_2019/keys{/key_id}",
"labels_url": "https://api.github.com/repos/fluttercandies/ncov_2019/labels{/name}",
"language": "Dart",
"languages_url": "https://api.github.com/repos/fluttercandies/ncov_2019/languages",
"license": {
"key": "apache-2.0",
"name": "Apache License 2.0",
"node_id": "MDc6TGljZW5zZTI=",
"spdx_id": "Apache-2.0",
"url": "https://api.github.com/licenses/apache-2.0"
},
"merges_url": "https://api.github.com/repos/fluttercandies/ncov_2019/merges",
"milestones_url": "https://api.github.com/repos/fluttercandies/ncov_2019/milestones{/number}",
"mirror_url": null,
"name": "ncov_2019",
"node_id": "MDEwOlJlcG9zaXRvcnkyMzYyMTYwNzk=",
"notifications_url": "https://api.github.com/repos/fluttercandies/ncov_2019/notifications{?since,all,participating}",
"open_issues": 5,
"open_issues_count": 5,
"owner": {
"avatar_url": "https://avatars3.githubusercontent.com/u/47586449?v=4",
"events_url": "https://api.github.com/users/fluttercandies/events{/privacy}",
"followers_url": "https://api.github.com/users/fluttercandies/followers",
"following_url": "https://api.github.com/users/fluttercandies/following{/other_user}",
"gists_url": "https://api.github.com/users/fluttercandies/gists{/gist_id}",
"gravatar_id": "",