-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgit_repos.json
3012 lines (3012 loc) · 175 KB
/
git_repos.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
{
"total_count": 4588,
"incomplete_results": false,
"items": [
{
"id": 28457823,
"node_id": "MDEwOlJlcG9zaXRvcnkyODQ1NzgyMw==",
"name": "freeCodeCamp",
"full_name": "freeCodeCamp/freeCodeCamp",
"private": false,
"owner": {
"login": "freeCodeCamp",
"id": 9892522,
"node_id": "MDEyOk9yZ2FuaXphdGlvbjk4OTI1MjI=",
"avatar_url": "https://avatars0.githubusercontent.com/u/9892522?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/freeCodeCamp",
"html_url": "https://github.com/freeCodeCamp",
"followers_url": "https://api.github.com/users/freeCodeCamp/followers",
"following_url": "https://api.github.com/users/freeCodeCamp/following{/other_user}",
"gists_url": "https://api.github.com/users/freeCodeCamp/gists{/gist_id}",
"starred_url": "https://api.github.com/users/freeCodeCamp/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/freeCodeCamp/subscriptions",
"organizations_url": "https://api.github.com/users/freeCodeCamp/orgs",
"repos_url": "https://api.github.com/users/freeCodeCamp/repos",
"events_url": "https://api.github.com/users/freeCodeCamp/events{/privacy}",
"received_events_url": "https://api.github.com/users/freeCodeCamp/received_events",
"type": "Organization",
"site_admin": false
},
"html_url": "https://github.com/freeCodeCamp/freeCodeCamp",
"description": "freeCodeCamp.org's open source codebase and curriculum. Learn to code at home.",
"fork": false,
"url": "https://api.github.com/repos/freeCodeCamp/freeCodeCamp",
"forks_url": "https://api.github.com/repos/freeCodeCamp/freeCodeCamp/forks",
"keys_url": "https://api.github.com/repos/freeCodeCamp/freeCodeCamp/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/freeCodeCamp/freeCodeCamp/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/freeCodeCamp/freeCodeCamp/teams",
"hooks_url": "https://api.github.com/repos/freeCodeCamp/freeCodeCamp/hooks",
"issue_events_url": "https://api.github.com/repos/freeCodeCamp/freeCodeCamp/issues/events{/number}",
"events_url": "https://api.github.com/repos/freeCodeCamp/freeCodeCamp/events",
"assignees_url": "https://api.github.com/repos/freeCodeCamp/freeCodeCamp/assignees{/user}",
"branches_url": "https://api.github.com/repos/freeCodeCamp/freeCodeCamp/branches{/branch}",
"tags_url": "https://api.github.com/repos/freeCodeCamp/freeCodeCamp/tags",
"blobs_url": "https://api.github.com/repos/freeCodeCamp/freeCodeCamp/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/freeCodeCamp/freeCodeCamp/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/freeCodeCamp/freeCodeCamp/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/freeCodeCamp/freeCodeCamp/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/freeCodeCamp/freeCodeCamp/statuses/{sha}",
"languages_url": "https://api.github.com/repos/freeCodeCamp/freeCodeCamp/languages",
"stargazers_url": "https://api.github.com/repos/freeCodeCamp/freeCodeCamp/stargazers",
"contributors_url": "https://api.github.com/repos/freeCodeCamp/freeCodeCamp/contributors",
"subscribers_url": "https://api.github.com/repos/freeCodeCamp/freeCodeCamp/subscribers",
"subscription_url": "https://api.github.com/repos/freeCodeCamp/freeCodeCamp/subscription",
"commits_url": "https://api.github.com/repos/freeCodeCamp/freeCodeCamp/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/freeCodeCamp/freeCodeCamp/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/freeCodeCamp/freeCodeCamp/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/freeCodeCamp/freeCodeCamp/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/freeCodeCamp/freeCodeCamp/contents/{+path}",
"compare_url": "https://api.github.com/repos/freeCodeCamp/freeCodeCamp/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/freeCodeCamp/freeCodeCamp/merges",
"archive_url": "https://api.github.com/repos/freeCodeCamp/freeCodeCamp/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/freeCodeCamp/freeCodeCamp/downloads",
"issues_url": "https://api.github.com/repos/freeCodeCamp/freeCodeCamp/issues{/number}",
"pulls_url": "https://api.github.com/repos/freeCodeCamp/freeCodeCamp/pulls{/number}",
"milestones_url": "https://api.github.com/repos/freeCodeCamp/freeCodeCamp/milestones{/number}",
"notifications_url": "https://api.github.com/repos/freeCodeCamp/freeCodeCamp/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/freeCodeCamp/freeCodeCamp/labels{/name}",
"releases_url": "https://api.github.com/repos/freeCodeCamp/freeCodeCamp/releases{/id}",
"deployments_url": "https://api.github.com/repos/freeCodeCamp/freeCodeCamp/deployments",
"created_at": "2014-12-24T17:49:19Z",
"updated_at": "2020-11-19T17:11:49Z",
"pushed_at": "2020-11-19T17:32:38Z",
"git_url": "git://github.com/freeCodeCamp/freeCodeCamp.git",
"ssh_url": "git@github.com:freeCodeCamp/freeCodeCamp.git",
"clone_url": "https://github.com/freeCodeCamp/freeCodeCamp.git",
"svn_url": "https://github.com/freeCodeCamp/freeCodeCamp",
"homepage": "https://contribute.freecodecamp.org",
"size": 155653,
"stargazers_count": 316852,
"watchers_count": 316852,
"language": "JavaScript",
"has_issues": true,
"has_projects": false,
"has_downloads": true,
"has_wiki": false,
"has_pages": true,
"forks_count": 25051,
"mirror_url": null,
"archived": false,
"disabled": false,
"open_issues_count": 299,
"license": {
"key": "bsd-3-clause",
"name": "BSD 3-Clause \"New\" or \"Revised\" License",
"spdx_id": "BSD-3-Clause",
"url": "https://api.github.com/licenses/bsd-3-clause",
"node_id": "MDc6TGljZW5zZTU="
},
"forks": 25051,
"open_issues": 299,
"watchers": 316852,
"default_branch": "master",
"score": 1.0
},
{
"id": 177736533,
"node_id": "MDEwOlJlcG9zaXRvcnkxNzc3MzY1MzM=",
"name": "996.ICU",
"full_name": "996icu/996.ICU",
"private": false,
"owner": {
"login": "996icu",
"id": 48942249,
"node_id": "MDQ6VXNlcjQ4OTQyMjQ5",
"avatar_url": "https://avatars3.githubusercontent.com/u/48942249?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/996icu",
"html_url": "https://github.com/996icu",
"followers_url": "https://api.github.com/users/996icu/followers",
"following_url": "https://api.github.com/users/996icu/following{/other_user}",
"gists_url": "https://api.github.com/users/996icu/gists{/gist_id}",
"starred_url": "https://api.github.com/users/996icu/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/996icu/subscriptions",
"organizations_url": "https://api.github.com/users/996icu/orgs",
"repos_url": "https://api.github.com/users/996icu/repos",
"events_url": "https://api.github.com/users/996icu/events{/privacy}",
"received_events_url": "https://api.github.com/users/996icu/received_events",
"type": "User",
"site_admin": false
},
"html_url": "https://github.com/996icu/996.ICU",
"description": "Repo for counting stars and contributing. Press F to pay respect to glorious developers.",
"fork": false,
"url": "https://api.github.com/repos/996icu/996.ICU",
"forks_url": "https://api.github.com/repos/996icu/996.ICU/forks",
"keys_url": "https://api.github.com/repos/996icu/996.ICU/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/996icu/996.ICU/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/996icu/996.ICU/teams",
"hooks_url": "https://api.github.com/repos/996icu/996.ICU/hooks",
"issue_events_url": "https://api.github.com/repos/996icu/996.ICU/issues/events{/number}",
"events_url": "https://api.github.com/repos/996icu/996.ICU/events",
"assignees_url": "https://api.github.com/repos/996icu/996.ICU/assignees{/user}",
"branches_url": "https://api.github.com/repos/996icu/996.ICU/branches{/branch}",
"tags_url": "https://api.github.com/repos/996icu/996.ICU/tags",
"blobs_url": "https://api.github.com/repos/996icu/996.ICU/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/996icu/996.ICU/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/996icu/996.ICU/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/996icu/996.ICU/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/996icu/996.ICU/statuses/{sha}",
"languages_url": "https://api.github.com/repos/996icu/996.ICU/languages",
"stargazers_url": "https://api.github.com/repos/996icu/996.ICU/stargazers",
"contributors_url": "https://api.github.com/repos/996icu/996.ICU/contributors",
"subscribers_url": "https://api.github.com/repos/996icu/996.ICU/subscribers",
"subscription_url": "https://api.github.com/repos/996icu/996.ICU/subscription",
"commits_url": "https://api.github.com/repos/996icu/996.ICU/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/996icu/996.ICU/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/996icu/996.ICU/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/996icu/996.ICU/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/996icu/996.ICU/contents/{+path}",
"compare_url": "https://api.github.com/repos/996icu/996.ICU/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/996icu/996.ICU/merges",
"archive_url": "https://api.github.com/repos/996icu/996.ICU/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/996icu/996.ICU/downloads",
"issues_url": "https://api.github.com/repos/996icu/996.ICU/issues{/number}",
"pulls_url": "https://api.github.com/repos/996icu/996.ICU/pulls{/number}",
"milestones_url": "https://api.github.com/repos/996icu/996.ICU/milestones{/number}",
"notifications_url": "https://api.github.com/repos/996icu/996.ICU/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/996icu/996.ICU/labels{/name}",
"releases_url": "https://api.github.com/repos/996icu/996.ICU/releases{/id}",
"deployments_url": "https://api.github.com/repos/996icu/996.ICU/deployments",
"created_at": "2019-03-26T07:31:14Z",
"updated_at": "2020-11-19T17:16:03Z",
"pushed_at": "2020-11-16T01:44:06Z",
"git_url": "git://github.com/996icu/996.ICU.git",
"ssh_url": "git@github.com:996icu/996.ICU.git",
"clone_url": "https://github.com/996icu/996.ICU.git",
"svn_url": "https://github.com/996icu/996.ICU",
"homepage": "https://996.icu",
"size": 183401,
"stargazers_count": 252525,
"watchers_count": 252525,
"language": "Rust",
"has_issues": false,
"has_projects": false,
"has_downloads": true,
"has_wiki": false,
"has_pages": false,
"forks_count": 21116,
"mirror_url": null,
"archived": false,
"disabled": false,
"open_issues_count": 16783,
"license": {
"key": "other",
"name": "Other",
"spdx_id": "NOASSERTION",
"url": null,
"node_id": "MDc6TGljZW5zZTA="
},
"forks": 21116,
"open_issues": 16783,
"watchers": 252525,
"default_branch": "master",
"score": 1.0
},
{
"id": 11730342,
"node_id": "MDEwOlJlcG9zaXRvcnkxMTczMDM0Mg==",
"name": "vue",
"full_name": "vuejs/vue",
"private": false,
"owner": {
"login": "vuejs",
"id": 6128107,
"node_id": "MDEyOk9yZ2FuaXphdGlvbjYxMjgxMDc=",
"avatar_url": "https://avatars1.githubusercontent.com/u/6128107?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/vuejs",
"html_url": "https://github.com/vuejs",
"followers_url": "https://api.github.com/users/vuejs/followers",
"following_url": "https://api.github.com/users/vuejs/following{/other_user}",
"gists_url": "https://api.github.com/users/vuejs/gists{/gist_id}",
"starred_url": "https://api.github.com/users/vuejs/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/vuejs/subscriptions",
"organizations_url": "https://api.github.com/users/vuejs/orgs",
"repos_url": "https://api.github.com/users/vuejs/repos",
"events_url": "https://api.github.com/users/vuejs/events{/privacy}",
"received_events_url": "https://api.github.com/users/vuejs/received_events",
"type": "Organization",
"site_admin": false
},
"html_url": "https://github.com/vuejs/vue",
"description": "🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.",
"fork": false,
"url": "https://api.github.com/repos/vuejs/vue",
"forks_url": "https://api.github.com/repos/vuejs/vue/forks",
"keys_url": "https://api.github.com/repos/vuejs/vue/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/vuejs/vue/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/vuejs/vue/teams",
"hooks_url": "https://api.github.com/repos/vuejs/vue/hooks",
"issue_events_url": "https://api.github.com/repos/vuejs/vue/issues/events{/number}",
"events_url": "https://api.github.com/repos/vuejs/vue/events",
"assignees_url": "https://api.github.com/repos/vuejs/vue/assignees{/user}",
"branches_url": "https://api.github.com/repos/vuejs/vue/branches{/branch}",
"tags_url": "https://api.github.com/repos/vuejs/vue/tags",
"blobs_url": "https://api.github.com/repos/vuejs/vue/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/vuejs/vue/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/vuejs/vue/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/vuejs/vue/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/vuejs/vue/statuses/{sha}",
"languages_url": "https://api.github.com/repos/vuejs/vue/languages",
"stargazers_url": "https://api.github.com/repos/vuejs/vue/stargazers",
"contributors_url": "https://api.github.com/repos/vuejs/vue/contributors",
"subscribers_url": "https://api.github.com/repos/vuejs/vue/subscribers",
"subscription_url": "https://api.github.com/repos/vuejs/vue/subscription",
"commits_url": "https://api.github.com/repos/vuejs/vue/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/vuejs/vue/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/vuejs/vue/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/vuejs/vue/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/vuejs/vue/contents/{+path}",
"compare_url": "https://api.github.com/repos/vuejs/vue/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/vuejs/vue/merges",
"archive_url": "https://api.github.com/repos/vuejs/vue/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/vuejs/vue/downloads",
"issues_url": "https://api.github.com/repos/vuejs/vue/issues{/number}",
"pulls_url": "https://api.github.com/repos/vuejs/vue/pulls{/number}",
"milestones_url": "https://api.github.com/repos/vuejs/vue/milestones{/number}",
"notifications_url": "https://api.github.com/repos/vuejs/vue/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/vuejs/vue/labels{/name}",
"releases_url": "https://api.github.com/repos/vuejs/vue/releases{/id}",
"deployments_url": "https://api.github.com/repos/vuejs/vue/deployments",
"created_at": "2013-07-29T03:24:51Z",
"updated_at": "2020-11-19T16:41:39Z",
"pushed_at": "2020-11-17T16:29:36Z",
"git_url": "git://github.com/vuejs/vue.git",
"ssh_url": "git@github.com:vuejs/vue.git",
"clone_url": "https://github.com/vuejs/vue.git",
"svn_url": "https://github.com/vuejs/vue",
"homepage": "http://vuejs.org",
"size": 27603,
"stargazers_count": 175390,
"watchers_count": 175390,
"language": "JavaScript",
"has_issues": true,
"has_projects": true,
"has_downloads": true,
"has_wiki": true,
"has_pages": false,
"forks_count": 27236,
"mirror_url": null,
"archived": false,
"disabled": false,
"open_issues_count": 541,
"license": {
"key": "mit",
"name": "MIT License",
"spdx_id": "MIT",
"url": "https://api.github.com/licenses/mit",
"node_id": "MDc6TGljZW5zZTEz"
},
"forks": 27236,
"open_issues": 541,
"watchers": 175390,
"default_branch": "dev",
"score": 1.0
},
{
"id": 13491895,
"node_id": "MDEwOlJlcG9zaXRvcnkxMzQ5MTg5NQ==",
"name": "free-programming-books",
"full_name": "EbookFoundation/free-programming-books",
"private": false,
"owner": {
"login": "EbookFoundation",
"id": 14127308,
"node_id": "MDEyOk9yZ2FuaXphdGlvbjE0MTI3MzA4",
"avatar_url": "https://avatars0.githubusercontent.com/u/14127308?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/EbookFoundation",
"html_url": "https://github.com/EbookFoundation",
"followers_url": "https://api.github.com/users/EbookFoundation/followers",
"following_url": "https://api.github.com/users/EbookFoundation/following{/other_user}",
"gists_url": "https://api.github.com/users/EbookFoundation/gists{/gist_id}",
"starred_url": "https://api.github.com/users/EbookFoundation/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/EbookFoundation/subscriptions",
"organizations_url": "https://api.github.com/users/EbookFoundation/orgs",
"repos_url": "https://api.github.com/users/EbookFoundation/repos",
"events_url": "https://api.github.com/users/EbookFoundation/events{/privacy}",
"received_events_url": "https://api.github.com/users/EbookFoundation/received_events",
"type": "Organization",
"site_admin": false
},
"html_url": "https://github.com/EbookFoundation/free-programming-books",
"description": ":books: Freely available programming books",
"fork": false,
"url": "https://api.github.com/repos/EbookFoundation/free-programming-books",
"forks_url": "https://api.github.com/repos/EbookFoundation/free-programming-books/forks",
"keys_url": "https://api.github.com/repos/EbookFoundation/free-programming-books/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/EbookFoundation/free-programming-books/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/EbookFoundation/free-programming-books/teams",
"hooks_url": "https://api.github.com/repos/EbookFoundation/free-programming-books/hooks",
"issue_events_url": "https://api.github.com/repos/EbookFoundation/free-programming-books/issues/events{/number}",
"events_url": "https://api.github.com/repos/EbookFoundation/free-programming-books/events",
"assignees_url": "https://api.github.com/repos/EbookFoundation/free-programming-books/assignees{/user}",
"branches_url": "https://api.github.com/repos/EbookFoundation/free-programming-books/branches{/branch}",
"tags_url": "https://api.github.com/repos/EbookFoundation/free-programming-books/tags",
"blobs_url": "https://api.github.com/repos/EbookFoundation/free-programming-books/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/EbookFoundation/free-programming-books/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/EbookFoundation/free-programming-books/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/EbookFoundation/free-programming-books/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/EbookFoundation/free-programming-books/statuses/{sha}",
"languages_url": "https://api.github.com/repos/EbookFoundation/free-programming-books/languages",
"stargazers_url": "https://api.github.com/repos/EbookFoundation/free-programming-books/stargazers",
"contributors_url": "https://api.github.com/repos/EbookFoundation/free-programming-books/contributors",
"subscribers_url": "https://api.github.com/repos/EbookFoundation/free-programming-books/subscribers",
"subscription_url": "https://api.github.com/repos/EbookFoundation/free-programming-books/subscription",
"commits_url": "https://api.github.com/repos/EbookFoundation/free-programming-books/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/EbookFoundation/free-programming-books/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/EbookFoundation/free-programming-books/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/EbookFoundation/free-programming-books/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/EbookFoundation/free-programming-books/contents/{+path}",
"compare_url": "https://api.github.com/repos/EbookFoundation/free-programming-books/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/EbookFoundation/free-programming-books/merges",
"archive_url": "https://api.github.com/repos/EbookFoundation/free-programming-books/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/EbookFoundation/free-programming-books/downloads",
"issues_url": "https://api.github.com/repos/EbookFoundation/free-programming-books/issues{/number}",
"pulls_url": "https://api.github.com/repos/EbookFoundation/free-programming-books/pulls{/number}",
"milestones_url": "https://api.github.com/repos/EbookFoundation/free-programming-books/milestones{/number}",
"notifications_url": "https://api.github.com/repos/EbookFoundation/free-programming-books/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/EbookFoundation/free-programming-books/labels{/name}",
"releases_url": "https://api.github.com/repos/EbookFoundation/free-programming-books/releases{/id}",
"deployments_url": "https://api.github.com/repos/EbookFoundation/free-programming-books/deployments",
"created_at": "2013-10-11T06:50:37Z",
"updated_at": "2020-11-19T17:46:12Z",
"pushed_at": "2020-11-19T17:47:38Z",
"git_url": "git://github.com/EbookFoundation/free-programming-books.git",
"ssh_url": "git@github.com:EbookFoundation/free-programming-books.git",
"clone_url": "https://github.com/EbookFoundation/free-programming-books.git",
"svn_url": "https://github.com/EbookFoundation/free-programming-books",
"homepage": "https://ebookfoundation.github.io/free-programming-books/",
"size": 9568,
"stargazers_count": 165782,
"watchers_count": 165782,
"language": null,
"has_issues": true,
"has_projects": false,
"has_downloads": true,
"has_wiki": true,
"has_pages": true,
"forks_count": 39183,
"mirror_url": null,
"archived": false,
"disabled": false,
"open_issues_count": 74,
"license": {
"key": "other",
"name": "Other",
"spdx_id": "NOASSERTION",
"url": null,
"node_id": "MDc6TGljZW5zZTA="
},
"forks": 39183,
"open_issues": 74,
"watchers": 165782,
"default_branch": "master",
"score": 1.0
},
{
"id": 10270250,
"node_id": "MDEwOlJlcG9zaXRvcnkxMDI3MDI1MA==",
"name": "react",
"full_name": "facebook/react",
"private": false,
"owner": {
"login": "facebook",
"id": 69631,
"node_id": "MDEyOk9yZ2FuaXphdGlvbjY5NjMx",
"avatar_url": "https://avatars3.githubusercontent.com/u/69631?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/facebook",
"html_url": "https://github.com/facebook",
"followers_url": "https://api.github.com/users/facebook/followers",
"following_url": "https://api.github.com/users/facebook/following{/other_user}",
"gists_url": "https://api.github.com/users/facebook/gists{/gist_id}",
"starred_url": "https://api.github.com/users/facebook/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/facebook/subscriptions",
"organizations_url": "https://api.github.com/users/facebook/orgs",
"repos_url": "https://api.github.com/users/facebook/repos",
"events_url": "https://api.github.com/users/facebook/events{/privacy}",
"received_events_url": "https://api.github.com/users/facebook/received_events",
"type": "Organization",
"site_admin": false
},
"html_url": "https://github.com/facebook/react",
"description": "A declarative, efficient, and flexible JavaScript library for building user interfaces.",
"fork": false,
"url": "https://api.github.com/repos/facebook/react",
"forks_url": "https://api.github.com/repos/facebook/react/forks",
"keys_url": "https://api.github.com/repos/facebook/react/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/facebook/react/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/facebook/react/teams",
"hooks_url": "https://api.github.com/repos/facebook/react/hooks",
"issue_events_url": "https://api.github.com/repos/facebook/react/issues/events{/number}",
"events_url": "https://api.github.com/repos/facebook/react/events",
"assignees_url": "https://api.github.com/repos/facebook/react/assignees{/user}",
"branches_url": "https://api.github.com/repos/facebook/react/branches{/branch}",
"tags_url": "https://api.github.com/repos/facebook/react/tags",
"blobs_url": "https://api.github.com/repos/facebook/react/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/facebook/react/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/facebook/react/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/facebook/react/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/facebook/react/statuses/{sha}",
"languages_url": "https://api.github.com/repos/facebook/react/languages",
"stargazers_url": "https://api.github.com/repos/facebook/react/stargazers",
"contributors_url": "https://api.github.com/repos/facebook/react/contributors",
"subscribers_url": "https://api.github.com/repos/facebook/react/subscribers",
"subscription_url": "https://api.github.com/repos/facebook/react/subscription",
"commits_url": "https://api.github.com/repos/facebook/react/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/facebook/react/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/facebook/react/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/facebook/react/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/facebook/react/contents/{+path}",
"compare_url": "https://api.github.com/repos/facebook/react/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/facebook/react/merges",
"archive_url": "https://api.github.com/repos/facebook/react/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/facebook/react/downloads",
"issues_url": "https://api.github.com/repos/facebook/react/issues{/number}",
"pulls_url": "https://api.github.com/repos/facebook/react/pulls{/number}",
"milestones_url": "https://api.github.com/repos/facebook/react/milestones{/number}",
"notifications_url": "https://api.github.com/repos/facebook/react/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/facebook/react/labels{/name}",
"releases_url": "https://api.github.com/repos/facebook/react/releases{/id}",
"deployments_url": "https://api.github.com/repos/facebook/react/deployments",
"created_at": "2013-05-24T16:15:54Z",
"updated_at": "2020-11-19T17:37:35Z",
"pushed_at": "2020-11-19T17:01:23Z",
"git_url": "git://github.com/facebook/react.git",
"ssh_url": "git@github.com:facebook/react.git",
"clone_url": "https://github.com/facebook/react.git",
"svn_url": "https://github.com/facebook/react",
"homepage": "https://reactjs.org",
"size": 160712,
"stargazers_count": 159285,
"watchers_count": 159285,
"language": "JavaScript",
"has_issues": true,
"has_projects": true,
"has_downloads": true,
"has_wiki": true,
"has_pages": true,
"forks_count": 31630,
"mirror_url": null,
"archived": false,
"disabled": false,
"open_issues_count": 642,
"license": {
"key": "mit",
"name": "MIT License",
"spdx_id": "MIT",
"url": "https://api.github.com/licenses/mit",
"node_id": "MDc6TGljZW5zZTEz"
},
"forks": 31630,
"open_issues": 642,
"watchers": 159285,
"default_branch": "master",
"score": 1.0
},
{
"id": 45717250,
"node_id": "MDEwOlJlcG9zaXRvcnk0NTcxNzI1MA==",
"name": "tensorflow",
"full_name": "tensorflow/tensorflow",
"private": false,
"owner": {
"login": "tensorflow",
"id": 15658638,
"node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU4NjM4",
"avatar_url": "https://avatars1.githubusercontent.com/u/15658638?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/tensorflow",
"html_url": "https://github.com/tensorflow",
"followers_url": "https://api.github.com/users/tensorflow/followers",
"following_url": "https://api.github.com/users/tensorflow/following{/other_user}",
"gists_url": "https://api.github.com/users/tensorflow/gists{/gist_id}",
"starred_url": "https://api.github.com/users/tensorflow/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/tensorflow/subscriptions",
"organizations_url": "https://api.github.com/users/tensorflow/orgs",
"repos_url": "https://api.github.com/users/tensorflow/repos",
"events_url": "https://api.github.com/users/tensorflow/events{/privacy}",
"received_events_url": "https://api.github.com/users/tensorflow/received_events",
"type": "Organization",
"site_admin": false
},
"html_url": "https://github.com/tensorflow/tensorflow",
"description": "An Open Source Machine Learning Framework for Everyone",
"fork": false,
"url": "https://api.github.com/repos/tensorflow/tensorflow",
"forks_url": "https://api.github.com/repos/tensorflow/tensorflow/forks",
"keys_url": "https://api.github.com/repos/tensorflow/tensorflow/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/tensorflow/tensorflow/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/tensorflow/tensorflow/teams",
"hooks_url": "https://api.github.com/repos/tensorflow/tensorflow/hooks",
"issue_events_url": "https://api.github.com/repos/tensorflow/tensorflow/issues/events{/number}",
"events_url": "https://api.github.com/repos/tensorflow/tensorflow/events",
"assignees_url": "https://api.github.com/repos/tensorflow/tensorflow/assignees{/user}",
"branches_url": "https://api.github.com/repos/tensorflow/tensorflow/branches{/branch}",
"tags_url": "https://api.github.com/repos/tensorflow/tensorflow/tags",
"blobs_url": "https://api.github.com/repos/tensorflow/tensorflow/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/tensorflow/tensorflow/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/tensorflow/tensorflow/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/tensorflow/tensorflow/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/tensorflow/tensorflow/statuses/{sha}",
"languages_url": "https://api.github.com/repos/tensorflow/tensorflow/languages",
"stargazers_url": "https://api.github.com/repos/tensorflow/tensorflow/stargazers",
"contributors_url": "https://api.github.com/repos/tensorflow/tensorflow/contributors",
"subscribers_url": "https://api.github.com/repos/tensorflow/tensorflow/subscribers",
"subscription_url": "https://api.github.com/repos/tensorflow/tensorflow/subscription",
"commits_url": "https://api.github.com/repos/tensorflow/tensorflow/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/tensorflow/tensorflow/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/tensorflow/tensorflow/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/tensorflow/tensorflow/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/tensorflow/tensorflow/contents/{+path}",
"compare_url": "https://api.github.com/repos/tensorflow/tensorflow/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/tensorflow/tensorflow/merges",
"archive_url": "https://api.github.com/repos/tensorflow/tensorflow/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/tensorflow/tensorflow/downloads",
"issues_url": "https://api.github.com/repos/tensorflow/tensorflow/issues{/number}",
"pulls_url": "https://api.github.com/repos/tensorflow/tensorflow/pulls{/number}",
"milestones_url": "https://api.github.com/repos/tensorflow/tensorflow/milestones{/number}",
"notifications_url": "https://api.github.com/repos/tensorflow/tensorflow/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/tensorflow/tensorflow/labels{/name}",
"releases_url": "https://api.github.com/repos/tensorflow/tensorflow/releases{/id}",
"deployments_url": "https://api.github.com/repos/tensorflow/tensorflow/deployments",
"created_at": "2015-11-07T01:19:20Z",
"updated_at": "2020-11-19T17:46:06Z",
"pushed_at": "2020-11-19T17:42:20Z",
"git_url": "git://github.com/tensorflow/tensorflow.git",
"ssh_url": "git@github.com:tensorflow/tensorflow.git",
"clone_url": "https://github.com/tensorflow/tensorflow.git",
"svn_url": "https://github.com/tensorflow/tensorflow",
"homepage": "https://tensorflow.org",
"size": 634426,
"stargazers_count": 150280,
"watchers_count": 150280,
"language": "C++",
"has_issues": true,
"has_projects": true,
"has_downloads": true,
"has_wiki": false,
"has_pages": false,
"forks_count": 83256,
"mirror_url": null,
"archived": false,
"disabled": false,
"open_issues_count": 4115,
"license": {
"key": "apache-2.0",
"name": "Apache License 2.0",
"spdx_id": "Apache-2.0",
"url": "https://api.github.com/licenses/apache-2.0",
"node_id": "MDc6TGljZW5zZTI="
},
"forks": 83256,
"open_issues": 4115,
"watchers": 150280,
"default_branch": "master",
"score": 1.0
},
{
"id": 21737465,
"node_id": "MDEwOlJlcG9zaXRvcnkyMTczNzQ2NQ==",
"name": "awesome",
"full_name": "sindresorhus/awesome",
"private": false,
"owner": {
"login": "sindresorhus",
"id": 170270,
"node_id": "MDQ6VXNlcjE3MDI3MA==",
"avatar_url": "https://avatars1.githubusercontent.com/u/170270?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/sindresorhus",
"html_url": "https://github.com/sindresorhus",
"followers_url": "https://api.github.com/users/sindresorhus/followers",
"following_url": "https://api.github.com/users/sindresorhus/following{/other_user}",
"gists_url": "https://api.github.com/users/sindresorhus/gists{/gist_id}",
"starred_url": "https://api.github.com/users/sindresorhus/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/sindresorhus/subscriptions",
"organizations_url": "https://api.github.com/users/sindresorhus/orgs",
"repos_url": "https://api.github.com/users/sindresorhus/repos",
"events_url": "https://api.github.com/users/sindresorhus/events{/privacy}",
"received_events_url": "https://api.github.com/users/sindresorhus/received_events",
"type": "User",
"site_admin": false
},
"html_url": "https://github.com/sindresorhus/awesome",
"description": "😎 Awesome lists about all kinds of interesting topics",
"fork": false,
"url": "https://api.github.com/repos/sindresorhus/awesome",
"forks_url": "https://api.github.com/repos/sindresorhus/awesome/forks",
"keys_url": "https://api.github.com/repos/sindresorhus/awesome/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/sindresorhus/awesome/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/sindresorhus/awesome/teams",
"hooks_url": "https://api.github.com/repos/sindresorhus/awesome/hooks",
"issue_events_url": "https://api.github.com/repos/sindresorhus/awesome/issues/events{/number}",
"events_url": "https://api.github.com/repos/sindresorhus/awesome/events",
"assignees_url": "https://api.github.com/repos/sindresorhus/awesome/assignees{/user}",
"branches_url": "https://api.github.com/repos/sindresorhus/awesome/branches{/branch}",
"tags_url": "https://api.github.com/repos/sindresorhus/awesome/tags",
"blobs_url": "https://api.github.com/repos/sindresorhus/awesome/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/sindresorhus/awesome/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/sindresorhus/awesome/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/sindresorhus/awesome/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/sindresorhus/awesome/statuses/{sha}",
"languages_url": "https://api.github.com/repos/sindresorhus/awesome/languages",
"stargazers_url": "https://api.github.com/repos/sindresorhus/awesome/stargazers",
"contributors_url": "https://api.github.com/repos/sindresorhus/awesome/contributors",
"subscribers_url": "https://api.github.com/repos/sindresorhus/awesome/subscribers",
"subscription_url": "https://api.github.com/repos/sindresorhus/awesome/subscription",
"commits_url": "https://api.github.com/repos/sindresorhus/awesome/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/sindresorhus/awesome/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/sindresorhus/awesome/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/sindresorhus/awesome/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/sindresorhus/awesome/contents/{+path}",
"compare_url": "https://api.github.com/repos/sindresorhus/awesome/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/sindresorhus/awesome/merges",
"archive_url": "https://api.github.com/repos/sindresorhus/awesome/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/sindresorhus/awesome/downloads",
"issues_url": "https://api.github.com/repos/sindresorhus/awesome/issues{/number}",
"pulls_url": "https://api.github.com/repos/sindresorhus/awesome/pulls{/number}",
"milestones_url": "https://api.github.com/repos/sindresorhus/awesome/milestones{/number}",
"notifications_url": "https://api.github.com/repos/sindresorhus/awesome/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/sindresorhus/awesome/labels{/name}",
"releases_url": "https://api.github.com/repos/sindresorhus/awesome/releases{/id}",
"deployments_url": "https://api.github.com/repos/sindresorhus/awesome/deployments",
"created_at": "2014-07-11T13:42:37Z",
"updated_at": "2020-11-19T17:34:27Z",
"pushed_at": "2020-11-18T08:27:43Z",
"git_url": "git://github.com/sindresorhus/awesome.git",
"ssh_url": "git@github.com:sindresorhus/awesome.git",
"clone_url": "https://github.com/sindresorhus/awesome.git",
"svn_url": "https://github.com/sindresorhus/awesome",
"homepage": "",
"size": 1164,
"stargazers_count": 146154,
"watchers_count": 146154,
"language": null,
"has_issues": true,
"has_projects": false,
"has_downloads": true,
"has_wiki": false,
"has_pages": true,
"forks_count": 19154,
"mirror_url": null,
"archived": false,
"disabled": false,
"open_issues_count": 50,
"license": {
"key": "cc0-1.0",
"name": "Creative Commons Zero v1.0 Universal",
"spdx_id": "CC0-1.0",
"url": "https://api.github.com/licenses/cc0-1.0",
"node_id": "MDc6TGljZW5zZTY="
},
"forks": 19154,
"open_issues": 50,
"watchers": 146154,
"default_branch": "main",
"score": 1.0
},
{
"id": 2126244,
"node_id": "MDEwOlJlcG9zaXRvcnkyMTI2MjQ0",
"name": "bootstrap",
"full_name": "twbs/bootstrap",
"private": false,
"owner": {
"login": "twbs",
"id": 2918581,
"node_id": "MDEyOk9yZ2FuaXphdGlvbjI5MTg1ODE=",
"avatar_url": "https://avatars0.githubusercontent.com/u/2918581?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/twbs",
"html_url": "https://github.com/twbs",
"followers_url": "https://api.github.com/users/twbs/followers",
"following_url": "https://api.github.com/users/twbs/following{/other_user}",
"gists_url": "https://api.github.com/users/twbs/gists{/gist_id}",
"starred_url": "https://api.github.com/users/twbs/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/twbs/subscriptions",
"organizations_url": "https://api.github.com/users/twbs/orgs",
"repos_url": "https://api.github.com/users/twbs/repos",
"events_url": "https://api.github.com/users/twbs/events{/privacy}",
"received_events_url": "https://api.github.com/users/twbs/received_events",
"type": "Organization",
"site_admin": false
},
"html_url": "https://github.com/twbs/bootstrap",
"description": "The most popular HTML, CSS, and JavaScript framework for developing responsive, mobile first projects on the web.",
"fork": false,
"url": "https://api.github.com/repos/twbs/bootstrap",
"forks_url": "https://api.github.com/repos/twbs/bootstrap/forks",
"keys_url": "https://api.github.com/repos/twbs/bootstrap/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/twbs/bootstrap/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/twbs/bootstrap/teams",
"hooks_url": "https://api.github.com/repos/twbs/bootstrap/hooks",
"issue_events_url": "https://api.github.com/repos/twbs/bootstrap/issues/events{/number}",
"events_url": "https://api.github.com/repos/twbs/bootstrap/events",
"assignees_url": "https://api.github.com/repos/twbs/bootstrap/assignees{/user}",
"branches_url": "https://api.github.com/repos/twbs/bootstrap/branches{/branch}",
"tags_url": "https://api.github.com/repos/twbs/bootstrap/tags",
"blobs_url": "https://api.github.com/repos/twbs/bootstrap/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/twbs/bootstrap/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/twbs/bootstrap/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/twbs/bootstrap/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/twbs/bootstrap/statuses/{sha}",
"languages_url": "https://api.github.com/repos/twbs/bootstrap/languages",
"stargazers_url": "https://api.github.com/repos/twbs/bootstrap/stargazers",
"contributors_url": "https://api.github.com/repos/twbs/bootstrap/contributors",
"subscribers_url": "https://api.github.com/repos/twbs/bootstrap/subscribers",
"subscription_url": "https://api.github.com/repos/twbs/bootstrap/subscription",
"commits_url": "https://api.github.com/repos/twbs/bootstrap/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/twbs/bootstrap/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/twbs/bootstrap/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/twbs/bootstrap/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/twbs/bootstrap/contents/{+path}",
"compare_url": "https://api.github.com/repos/twbs/bootstrap/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/twbs/bootstrap/merges",
"archive_url": "https://api.github.com/repos/twbs/bootstrap/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/twbs/bootstrap/downloads",
"issues_url": "https://api.github.com/repos/twbs/bootstrap/issues{/number}",
"pulls_url": "https://api.github.com/repos/twbs/bootstrap/pulls{/number}",
"milestones_url": "https://api.github.com/repos/twbs/bootstrap/milestones{/number}",
"notifications_url": "https://api.github.com/repos/twbs/bootstrap/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/twbs/bootstrap/labels{/name}",
"releases_url": "https://api.github.com/repos/twbs/bootstrap/releases{/id}",
"deployments_url": "https://api.github.com/repos/twbs/bootstrap/deployments",
"created_at": "2011-07-29T21:19:00Z",
"updated_at": "2020-11-19T16:55:08Z",
"pushed_at": "2020-11-19T17:27:28Z",
"git_url": "git://github.com/twbs/bootstrap.git",
"ssh_url": "git@github.com:twbs/bootstrap.git",
"clone_url": "https://github.com/twbs/bootstrap.git",
"svn_url": "https://github.com/twbs/bootstrap",
"homepage": "https://getbootstrap.com",
"size": 170642,
"stargazers_count": 145308,
"watchers_count": 145308,
"language": "JavaScript",
"has_issues": true,
"has_projects": true,
"has_downloads": true,
"has_wiki": false,
"has_pages": true,
"forks_count": 71080,
"mirror_url": null,
"archived": false,
"disabled": false,
"open_issues_count": 384,
"license": {
"key": "mit",
"name": "MIT License",
"spdx_id": "MIT",
"url": "https://api.github.com/licenses/mit",
"node_id": "MDc6TGljZW5zZTEz"
},
"forks": 71080,
"open_issues": 384,
"watchers": 145308,
"default_branch": "main",
"score": 1.0
},
{
"id": 60493101,
"node_id": "MDEwOlJlcG9zaXRvcnk2MDQ5MzEwMQ==",
"name": "coding-interview-university",
"full_name": "jwasham/coding-interview-university",
"private": false,
"owner": {
"login": "jwasham",
"id": 3771963,
"node_id": "MDQ6VXNlcjM3NzE5NjM=",
"avatar_url": "https://avatars2.githubusercontent.com/u/3771963?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/jwasham",
"html_url": "https://github.com/jwasham",
"followers_url": "https://api.github.com/users/jwasham/followers",
"following_url": "https://api.github.com/users/jwasham/following{/other_user}",
"gists_url": "https://api.github.com/users/jwasham/gists{/gist_id}",
"starred_url": "https://api.github.com/users/jwasham/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/jwasham/subscriptions",
"organizations_url": "https://api.github.com/users/jwasham/orgs",
"repos_url": "https://api.github.com/users/jwasham/repos",
"events_url": "https://api.github.com/users/jwasham/events{/privacy}",
"received_events_url": "https://api.github.com/users/jwasham/received_events",
"type": "User",
"site_admin": false
},
"html_url": "https://github.com/jwasham/coding-interview-university",
"description": "A complete computer science study plan to become a software engineer.",
"fork": false,
"url": "https://api.github.com/repos/jwasham/coding-interview-university",
"forks_url": "https://api.github.com/repos/jwasham/coding-interview-university/forks",
"keys_url": "https://api.github.com/repos/jwasham/coding-interview-university/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/jwasham/coding-interview-university/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/jwasham/coding-interview-university/teams",
"hooks_url": "https://api.github.com/repos/jwasham/coding-interview-university/hooks",
"issue_events_url": "https://api.github.com/repos/jwasham/coding-interview-university/issues/events{/number}",
"events_url": "https://api.github.com/repos/jwasham/coding-interview-university/events",
"assignees_url": "https://api.github.com/repos/jwasham/coding-interview-university/assignees{/user}",
"branches_url": "https://api.github.com/repos/jwasham/coding-interview-university/branches{/branch}",
"tags_url": "https://api.github.com/repos/jwasham/coding-interview-university/tags",
"blobs_url": "https://api.github.com/repos/jwasham/coding-interview-university/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/jwasham/coding-interview-university/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/jwasham/coding-interview-university/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/jwasham/coding-interview-university/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/jwasham/coding-interview-university/statuses/{sha}",
"languages_url": "https://api.github.com/repos/jwasham/coding-interview-university/languages",
"stargazers_url": "https://api.github.com/repos/jwasham/coding-interview-university/stargazers",
"contributors_url": "https://api.github.com/repos/jwasham/coding-interview-university/contributors",
"subscribers_url": "https://api.github.com/repos/jwasham/coding-interview-university/subscribers",
"subscription_url": "https://api.github.com/repos/jwasham/coding-interview-university/subscription",
"commits_url": "https://api.github.com/repos/jwasham/coding-interview-university/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/jwasham/coding-interview-university/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/jwasham/coding-interview-university/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/jwasham/coding-interview-university/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/jwasham/coding-interview-university/contents/{+path}",
"compare_url": "https://api.github.com/repos/jwasham/coding-interview-university/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/jwasham/coding-interview-university/merges",
"archive_url": "https://api.github.com/repos/jwasham/coding-interview-university/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/jwasham/coding-interview-university/downloads",
"issues_url": "https://api.github.com/repos/jwasham/coding-interview-university/issues{/number}",
"pulls_url": "https://api.github.com/repos/jwasham/coding-interview-university/pulls{/number}",
"milestones_url": "https://api.github.com/repos/jwasham/coding-interview-university/milestones{/number}",
"notifications_url": "https://api.github.com/repos/jwasham/coding-interview-university/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/jwasham/coding-interview-university/labels{/name}",
"releases_url": "https://api.github.com/repos/jwasham/coding-interview-university/releases{/id}",
"deployments_url": "https://api.github.com/repos/jwasham/coding-interview-university/deployments",
"created_at": "2016-06-06T02:34:12Z",
"updated_at": "2020-11-19T17:47:22Z",
"pushed_at": "2020-11-17T17:03:37Z",
"git_url": "git://github.com/jwasham/coding-interview-university.git",
"ssh_url": "git@github.com:jwasham/coding-interview-university.git",
"clone_url": "https://github.com/jwasham/coding-interview-university.git",
"svn_url": "https://github.com/jwasham/coding-interview-university",
"homepage": "",
"size": 11113,
"stargazers_count": 142548,
"watchers_count": 142548,
"language": null,
"has_issues": true,
"has_projects": false,
"has_downloads": true,
"has_wiki": false,
"has_pages": false,
"forks_count": 40368,
"mirror_url": null,
"archived": false,
"disabled": false,
"open_issues_count": 53,
"license": {
"key": "cc-by-sa-4.0",
"name": "Creative Commons Attribution Share Alike 4.0 International",
"spdx_id": "CC-BY-SA-4.0",
"url": "https://api.github.com/licenses/cc-by-sa-4.0",
"node_id": "MDc6TGljZW5zZTI2"
},
"forks": 40368,
"open_issues": 53,
"watchers": 142548,
"default_branch": "master",
"score": 1.0
},
{
"id": 85077558,
"node_id": "MDEwOlJlcG9zaXRvcnk4NTA3NzU1OA==",
"name": "developer-roadmap",
"full_name": "kamranahmedse/developer-roadmap",
"private": false,
"owner": {
"login": "kamranahmedse",
"id": 4921183,
"node_id": "MDQ6VXNlcjQ5MjExODM=",
"avatar_url": "https://avatars2.githubusercontent.com/u/4921183?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/kamranahmedse",
"html_url": "https://github.com/kamranahmedse",
"followers_url": "https://api.github.com/users/kamranahmedse/followers",
"following_url": "https://api.github.com/users/kamranahmedse/following{/other_user}",
"gists_url": "https://api.github.com/users/kamranahmedse/gists{/gist_id}",
"starred_url": "https://api.github.com/users/kamranahmedse/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/kamranahmedse/subscriptions",
"organizations_url": "https://api.github.com/users/kamranahmedse/orgs",
"repos_url": "https://api.github.com/users/kamranahmedse/repos",
"events_url": "https://api.github.com/users/kamranahmedse/events{/privacy}",
"received_events_url": "https://api.github.com/users/kamranahmedse/received_events",
"type": "User",
"site_admin": false
},
"html_url": "https://github.com/kamranahmedse/developer-roadmap",
"description": "Roadmap to becoming a web developer in 2020",
"fork": false,
"url": "https://api.github.com/repos/kamranahmedse/developer-roadmap",
"forks_url": "https://api.github.com/repos/kamranahmedse/developer-roadmap/forks",
"keys_url": "https://api.github.com/repos/kamranahmedse/developer-roadmap/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/kamranahmedse/developer-roadmap/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/kamranahmedse/developer-roadmap/teams",
"hooks_url": "https://api.github.com/repos/kamranahmedse/developer-roadmap/hooks",
"issue_events_url": "https://api.github.com/repos/kamranahmedse/developer-roadmap/issues/events{/number}",
"events_url": "https://api.github.com/repos/kamranahmedse/developer-roadmap/events",
"assignees_url": "https://api.github.com/repos/kamranahmedse/developer-roadmap/assignees{/user}",
"branches_url": "https://api.github.com/repos/kamranahmedse/developer-roadmap/branches{/branch}",
"tags_url": "https://api.github.com/repos/kamranahmedse/developer-roadmap/tags",
"blobs_url": "https://api.github.com/repos/kamranahmedse/developer-roadmap/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/kamranahmedse/developer-roadmap/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/kamranahmedse/developer-roadmap/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/kamranahmedse/developer-roadmap/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/kamranahmedse/developer-roadmap/statuses/{sha}",
"languages_url": "https://api.github.com/repos/kamranahmedse/developer-roadmap/languages",
"stargazers_url": "https://api.github.com/repos/kamranahmedse/developer-roadmap/stargazers",
"contributors_url": "https://api.github.com/repos/kamranahmedse/developer-roadmap/contributors",
"subscribers_url": "https://api.github.com/repos/kamranahmedse/developer-roadmap/subscribers",
"subscription_url": "https://api.github.com/repos/kamranahmedse/developer-roadmap/subscription",
"commits_url": "https://api.github.com/repos/kamranahmedse/developer-roadmap/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/kamranahmedse/developer-roadmap/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/kamranahmedse/developer-roadmap/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/kamranahmedse/developer-roadmap/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/kamranahmedse/developer-roadmap/contents/{+path}",
"compare_url": "https://api.github.com/repos/kamranahmedse/developer-roadmap/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/kamranahmedse/developer-roadmap/merges",
"archive_url": "https://api.github.com/repos/kamranahmedse/developer-roadmap/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/kamranahmedse/developer-roadmap/downloads",
"issues_url": "https://api.github.com/repos/kamranahmedse/developer-roadmap/issues{/number}",
"pulls_url": "https://api.github.com/repos/kamranahmedse/developer-roadmap/pulls{/number}",
"milestones_url": "https://api.github.com/repos/kamranahmedse/developer-roadmap/milestones{/number}",
"notifications_url": "https://api.github.com/repos/kamranahmedse/developer-roadmap/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/kamranahmedse/developer-roadmap/labels{/name}",
"releases_url": "https://api.github.com/repos/kamranahmedse/developer-roadmap/releases{/id}",
"deployments_url": "https://api.github.com/repos/kamranahmedse/developer-roadmap/deployments",
"created_at": "2017-03-15T13:45:52Z",
"updated_at": "2020-11-19T17:35:13Z",
"pushed_at": "2020-11-07T09:55:38Z",
"git_url": "git://github.com/kamranahmedse/developer-roadmap.git",
"ssh_url": "git@github.com:kamranahmedse/developer-roadmap.git",
"clone_url": "https://github.com/kamranahmedse/developer-roadmap.git",
"svn_url": "https://github.com/kamranahmedse/developer-roadmap",
"homepage": "https://roadmap.sh",
"size": 68615,
"stargazers_count": 135701,
"watchers_count": 135701,
"language": null,
"has_issues": true,
"has_projects": true,
"has_downloads": true,
"has_wiki": true,
"has_pages": false,
"forks_count": 20472,
"mirror_url": null,
"archived": false,
"disabled": false,