-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfixtures.py
executable file
·950 lines (949 loc) · 54.4 KB
/
fixtures.py
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
#!/usr/bin/env python3
TEST_PAYLOAD = [
(
{"repos_url": "https://api.github.com/orgs/google/repos"},
[
{
"id": 7697149,
"node_id": "MDEwOlJlcG9zaXRvcnk3Njk3MTQ5",
"name": "episodes.dart",
"full_name": "google/episodes.dart",
"private": False,
"owner": {
"login": "google",
"id": 1342004,
"node_id": "MDEyOk9yZ2FuaXphdGlvbjEzNDIwMDQ=",
"avatar_url": "https://avatars1.githubusercontent.com/u/1342004?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/google",
"html_url": "https://github.com/google",
"followers_url": "https://api.github.com/users/google/followers",
"following_url": "https://api.github.com/users/google/following{/other_user}",
"gists_url": "https://api.github.com/users/google/gists{/gist_id}",
"starred_url": "https://api.github.com/users/google/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/google/subscriptions",
"organizations_url": "https://api.github.com/users/google/orgs",
"repos_url": "https://api.github.com/users/google/repos",
"events_url": "https://api.github.com/users/google/events{/privacy}",
"received_events_url": "https://api.github.com/users/google/received_events",
"type": "Organization",
"site_admin": False
},
"html_url": "https://github.com/google/episodes.dart",
"description": "A framework for timing performance of web apps.",
"fork": False,
"url": "https://api.github.com/repos/google/episodes.dart",
"forks_url": "https://api.github.com/repos/google/episodes.dart/forks",
"keys_url": "https://api.github.com/repos/google/episodes.dart/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/google/episodes.dart/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/google/episodes.dart/teams",
"hooks_url": "https://api.github.com/repos/google/episodes.dart/hooks",
"issue_events_url": "https://api.github.com/repos/google/episodes.dart/issues/events{/number}",
"events_url": "https://api.github.com/repos/google/episodes.dart/events",
"assignees_url": "https://api.github.com/repos/google/episodes.dart/assignees{/user}",
"branches_url": "https://api.github.com/repos/google/episodes.dart/branches{/branch}",
"tags_url": "https://api.github.com/repos/google/episodes.dart/tags",
"blobs_url": "https://api.github.com/repos/google/episodes.dart/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/google/episodes.dart/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/google/episodes.dart/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/google/episodes.dart/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/google/episodes.dart/statuses/{sha}",
"languages_url": "https://api.github.com/repos/google/episodes.dart/languages",
"stargazers_url": "https://api.github.com/repos/google/episodes.dart/stargazers",
"contributors_url": "https://api.github.com/repos/google/episodes.dart/contributors",
"subscribers_url": "https://api.github.com/repos/google/episodes.dart/subscribers",
"subscription_url": "https://api.github.com/repos/google/episodes.dart/subscription",
"commits_url": "https://api.github.com/repos/google/episodes.dart/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/google/episodes.dart/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/google/episodes.dart/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/google/episodes.dart/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/google/episodes.dart/contents/{+path}",
"compare_url": "https://api.github.com/repos/google/episodes.dart/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/google/episodes.dart/merges",
"archive_url": "https://api.github.com/repos/google/episodes.dart/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/google/episodes.dart/downloads",
"issues_url": "https://api.github.com/repos/google/episodes.dart/issues{/number}",
"pulls_url": "https://api.github.com/repos/google/episodes.dart/pulls{/number}",
"milestones_url": "https://api.github.com/repos/google/episodes.dart/milestones{/number}",
"notifications_url": "https://api.github.com/repos/google/episodes.dart/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/google/episodes.dart/labels{/name}",
"releases_url": "https://api.github.com/repos/google/episodes.dart/releases{/id}",
"deployments_url": "https://api.github.com/repos/google/episodes.dart/deployments",
"created_at": "2013-01-19T00:31:37Z",
"updated_at": "2019-09-23T11:53:58Z",
"pushed_at": "2014-10-09T21:39:33Z",
"git_url": "git://github.com/google/episodes.dart.git",
"ssh_url": "[email protected]:google/episodes.dart.git",
"clone_url": "https://github.com/google/episodes.dart.git",
"svn_url": "https://github.com/google/episodes.dart",
"homepage": None,
"size": 191,
"stargazers_count": 12,
"watchers_count": 12,
"language": "Dart",
"has_issues": True,
"has_projects": True,
"has_downloads": True,
"has_wiki": True,
"has_pages": False,
"forks_count": 22,
"mirror_url": None,
"archived": False,
"disabled": False,
"open_issues_count": 0,
"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": 22,
"open_issues": 0,
"watchers": 12,
"default_branch": "master",
"permissions": {
"admin": False,
"push": False,
"pull": True
}
},
{
"id": 7776515,
"node_id": "MDEwOlJlcG9zaXRvcnk3Nzc2NTE1",
"name": "cpp-netlib",
"full_name": "google/cpp-netlib",
"private": False,
"owner": {
"login": "google",
"id": 1342004,
"node_id": "MDEyOk9yZ2FuaXphdGlvbjEzNDIwMDQ=",
"avatar_url": "https://avatars1.githubusercontent.com/u/1342004?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/google",
"html_url": "https://github.com/google",
"followers_url": "https://api.github.com/users/google/followers",
"following_url": "https://api.github.com/users/google/following{/other_user}",
"gists_url": "https://api.github.com/users/google/gists{/gist_id}",
"starred_url": "https://api.github.com/users/google/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/google/subscriptions",
"organizations_url": "https://api.github.com/users/google/orgs",
"repos_url": "https://api.github.com/users/google/repos",
"events_url": "https://api.github.com/users/google/events{/privacy}",
"received_events_url": "https://api.github.com/users/google/received_events",
"type": "Organization",
"site_admin": False
},
"html_url": "https://github.com/google/cpp-netlib",
"description": "The C++ Network Library Project -- header-only, cross-platform, standards compliant networking library.",
"fork": True,
"url": "https://api.github.com/repos/google/cpp-netlib",
"forks_url": "https://api.github.com/repos/google/cpp-netlib/forks",
"keys_url": "https://api.github.com/repos/google/cpp-netlib/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/google/cpp-netlib/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/google/cpp-netlib/teams",
"hooks_url": "https://api.github.com/repos/google/cpp-netlib/hooks",
"issue_events_url": "https://api.github.com/repos/google/cpp-netlib/issues/events{/number}",
"events_url": "https://api.github.com/repos/google/cpp-netlib/events",
"assignees_url": "https://api.github.com/repos/google/cpp-netlib/assignees{/user}",
"branches_url": "https://api.github.com/repos/google/cpp-netlib/branches{/branch}",
"tags_url": "https://api.github.com/repos/google/cpp-netlib/tags",
"blobs_url": "https://api.github.com/repos/google/cpp-netlib/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/google/cpp-netlib/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/google/cpp-netlib/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/google/cpp-netlib/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/google/cpp-netlib/statuses/{sha}",
"languages_url": "https://api.github.com/repos/google/cpp-netlib/languages",
"stargazers_url": "https://api.github.com/repos/google/cpp-netlib/stargazers",
"contributors_url": "https://api.github.com/repos/google/cpp-netlib/contributors",
"subscribers_url": "https://api.github.com/repos/google/cpp-netlib/subscribers",
"subscription_url": "https://api.github.com/repos/google/cpp-netlib/subscription",
"commits_url": "https://api.github.com/repos/google/cpp-netlib/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/google/cpp-netlib/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/google/cpp-netlib/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/google/cpp-netlib/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/google/cpp-netlib/contents/{+path}",
"compare_url": "https://api.github.com/repos/google/cpp-netlib/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/google/cpp-netlib/merges",
"archive_url": "https://api.github.com/repos/google/cpp-netlib/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/google/cpp-netlib/downloads",
"issues_url": "https://api.github.com/repos/google/cpp-netlib/issues{/number}",
"pulls_url": "https://api.github.com/repos/google/cpp-netlib/pulls{/number}",
"milestones_url": "https://api.github.com/repos/google/cpp-netlib/milestones{/number}",
"notifications_url": "https://api.github.com/repos/google/cpp-netlib/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/google/cpp-netlib/labels{/name}",
"releases_url": "https://api.github.com/repos/google/cpp-netlib/releases{/id}",
"deployments_url": "https://api.github.com/repos/google/cpp-netlib/deployments",
"created_at": "2013-01-23T14:45:32Z",
"updated_at": "2019-11-15T02:26:31Z",
"pushed_at": "2018-12-05T17:42:29Z",
"git_url": "git://github.com/google/cpp-netlib.git",
"ssh_url": "[email protected]:google/cpp-netlib.git",
"clone_url": "https://github.com/google/cpp-netlib.git",
"svn_url": "https://github.com/google/cpp-netlib",
"homepage": "http://cpp-netlib.github.com/",
"size": 8937,
"stargazers_count": 292,
"watchers_count": 292,
"language": "C++",
"has_issues": False,
"has_projects": True,
"has_downloads": True,
"has_wiki": True,
"has_pages": False,
"forks_count": 59,
"mirror_url": None,
"archived": False,
"disabled": False,
"open_issues_count": 0,
"license": {
"key": "bsl-1.0",
"name": "Boost Software License 1.0",
"spdx_id": "BSL-1.0",
"url": "https://api.github.com/licenses/bsl-1.0",
"node_id": "MDc6TGljZW5zZTI4"
},
"forks": 59,
"open_issues": 0,
"watchers": 292,
"default_branch": "master",
"permissions": {
"admin": False,
"push": False,
"pull": True
}
},
{
"id": 7968417,
"node_id": "MDEwOlJlcG9zaXRvcnk3OTY4NDE3",
"name": "dagger",
"full_name": "google/dagger",
"private": False,
"owner": {
"login": "google",
"id": 1342004,
"node_id": "MDEyOk9yZ2FuaXphdGlvbjEzNDIwMDQ=",
"avatar_url": "https://avatars1.githubusercontent.com/u/1342004?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/google",
"html_url": "https://github.com/google",
"followers_url": "https://api.github.com/users/google/followers",
"following_url": "https://api.github.com/users/google/following{/other_user}",
"gists_url": "https://api.github.com/users/google/gists{/gist_id}",
"starred_url": "https://api.github.com/users/google/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/google/subscriptions",
"organizations_url": "https://api.github.com/users/google/orgs",
"repos_url": "https://api.github.com/users/google/repos",
"events_url": "https://api.github.com/users/google/events{/privacy}",
"received_events_url": "https://api.github.com/users/google/received_events",
"type": "Organization",
"site_admin": False
},
"html_url": "https://github.com/google/dagger",
"description": "A fast dependency injector for Android and Java.",
"fork": True,
"url": "https://api.github.com/repos/google/dagger",
"forks_url": "https://api.github.com/repos/google/dagger/forks",
"keys_url": "https://api.github.com/repos/google/dagger/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/google/dagger/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/google/dagger/teams",
"hooks_url": "https://api.github.com/repos/google/dagger/hooks",
"issue_events_url": "https://api.github.com/repos/google/dagger/issues/events{/number}",
"events_url": "https://api.github.com/repos/google/dagger/events",
"assignees_url": "https://api.github.com/repos/google/dagger/assignees{/user}",
"branches_url": "https://api.github.com/repos/google/dagger/branches{/branch}",
"tags_url": "https://api.github.com/repos/google/dagger/tags",
"blobs_url": "https://api.github.com/repos/google/dagger/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/google/dagger/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/google/dagger/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/google/dagger/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/google/dagger/statuses/{sha}",
"languages_url": "https://api.github.com/repos/google/dagger/languages",
"stargazers_url": "https://api.github.com/repos/google/dagger/stargazers",
"contributors_url": "https://api.github.com/repos/google/dagger/contributors",
"subscribers_url": "https://api.github.com/repos/google/dagger/subscribers",
"subscription_url": "https://api.github.com/repos/google/dagger/subscription",
"commits_url": "https://api.github.com/repos/google/dagger/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/google/dagger/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/google/dagger/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/google/dagger/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/google/dagger/contents/{+path}",
"compare_url": "https://api.github.com/repos/google/dagger/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/google/dagger/merges",
"archive_url": "https://api.github.com/repos/google/dagger/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/google/dagger/downloads",
"issues_url": "https://api.github.com/repos/google/dagger/issues{/number}",
"pulls_url": "https://api.github.com/repos/google/dagger/pulls{/number}",
"milestones_url": "https://api.github.com/repos/google/dagger/milestones{/number}",
"notifications_url": "https://api.github.com/repos/google/dagger/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/google/dagger/labels{/name}",
"releases_url": "https://api.github.com/repos/google/dagger/releases{/id}",
"deployments_url": "https://api.github.com/repos/google/dagger/deployments",
"created_at": "2013-02-01T23:14:14Z",
"updated_at": "2019-12-03T12:39:55Z",
"pushed_at": "2019-11-27T21:20:38Z",
"git_url": "git://github.com/google/dagger.git",
"ssh_url": "[email protected]:google/dagger.git",
"clone_url": "https://github.com/google/dagger.git",
"svn_url": "https://github.com/google/dagger",
"homepage": "https://dagger.dev",
"size": 59129,
"stargazers_count": 14492,
"watchers_count": 14492,
"language": "Java",
"has_issues": True,
"has_projects": True,
"has_downloads": True,
"has_wiki": True,
"has_pages": True,
"forks_count": 1741,
"mirror_url": None,
"archived": False,
"disabled": False,
"open_issues_count": 148,
"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": 1741,
"open_issues": 148,
"watchers": 14492,
"default_branch": "master",
"permissions": {
"admin": False,
"push": False,
"pull": True
}
},
{
"id": 8165161,
"node_id": "MDEwOlJlcG9zaXRvcnk4MTY1MTYx",
"name": "ios-webkit-debug-proxy",
"full_name": "google/ios-webkit-debug-proxy",
"private": False,
"owner": {
"login": "google",
"id": 1342004,
"node_id": "MDEyOk9yZ2FuaXphdGlvbjEzNDIwMDQ=",
"avatar_url": "https://avatars1.githubusercontent.com/u/1342004?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/google",
"html_url": "https://github.com/google",
"followers_url": "https://api.github.com/users/google/followers",
"following_url": "https://api.github.com/users/google/following{/other_user}",
"gists_url": "https://api.github.com/users/google/gists{/gist_id}",
"starred_url": "https://api.github.com/users/google/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/google/subscriptions",
"organizations_url": "https://api.github.com/users/google/orgs",
"repos_url": "https://api.github.com/users/google/repos",
"events_url": "https://api.github.com/users/google/events{/privacy}",
"received_events_url": "https://api.github.com/users/google/received_events",
"type": "Organization",
"site_admin": False
},
"html_url": "https://github.com/google/ios-webkit-debug-proxy",
"description": "A DevTools proxy (Chrome Remote Debugging Protocol) for iOS devices (Safari Remote Web Inspector).",
"fork": False,
"url": "https://api.github.com/repos/google/ios-webkit-debug-proxy",
"forks_url": "https://api.github.com/repos/google/ios-webkit-debug-proxy/forks",
"keys_url": "https://api.github.com/repos/google/ios-webkit-debug-proxy/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/google/ios-webkit-debug-proxy/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/google/ios-webkit-debug-proxy/teams",
"hooks_url": "https://api.github.com/repos/google/ios-webkit-debug-proxy/hooks",
"issue_events_url": "https://api.github.com/repos/google/ios-webkit-debug-proxy/issues/events{/number}",
"events_url": "https://api.github.com/repos/google/ios-webkit-debug-proxy/events",
"assignees_url": "https://api.github.com/repos/google/ios-webkit-debug-proxy/assignees{/user}",
"branches_url": "https://api.github.com/repos/google/ios-webkit-debug-proxy/branches{/branch}",
"tags_url": "https://api.github.com/repos/google/ios-webkit-debug-proxy/tags",
"blobs_url": "https://api.github.com/repos/google/ios-webkit-debug-proxy/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/google/ios-webkit-debug-proxy/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/google/ios-webkit-debug-proxy/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/google/ios-webkit-debug-proxy/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/google/ios-webkit-debug-proxy/statuses/{sha}",
"languages_url": "https://api.github.com/repos/google/ios-webkit-debug-proxy/languages",
"stargazers_url": "https://api.github.com/repos/google/ios-webkit-debug-proxy/stargazers",
"contributors_url": "https://api.github.com/repos/google/ios-webkit-debug-proxy/contributors",
"subscribers_url": "https://api.github.com/repos/google/ios-webkit-debug-proxy/subscribers",
"subscription_url": "https://api.github.com/repos/google/ios-webkit-debug-proxy/subscription",
"commits_url": "https://api.github.com/repos/google/ios-webkit-debug-proxy/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/google/ios-webkit-debug-proxy/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/google/ios-webkit-debug-proxy/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/google/ios-webkit-debug-proxy/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/google/ios-webkit-debug-proxy/contents/{+path}",
"compare_url": "https://api.github.com/repos/google/ios-webkit-debug-proxy/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/google/ios-webkit-debug-proxy/merges",
"archive_url": "https://api.github.com/repos/google/ios-webkit-debug-proxy/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/google/ios-webkit-debug-proxy/downloads",
"issues_url": "https://api.github.com/repos/google/ios-webkit-debug-proxy/issues{/number}",
"pulls_url": "https://api.github.com/repos/google/ios-webkit-debug-proxy/pulls{/number}",
"milestones_url": "https://api.github.com/repos/google/ios-webkit-debug-proxy/milestones{/number}",
"notifications_url": "https://api.github.com/repos/google/ios-webkit-debug-proxy/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/google/ios-webkit-debug-proxy/labels{/name}",
"releases_url": "https://api.github.com/repos/google/ios-webkit-debug-proxy/releases{/id}",
"deployments_url": "https://api.github.com/repos/google/ios-webkit-debug-proxy/deployments",
"created_at": "2013-02-12T19:08:19Z",
"updated_at": "2019-12-04T02:06:43Z",
"pushed_at": "2019-11-24T07:02:13Z",
"git_url": "git://github.com/google/ios-webkit-debug-proxy.git",
"ssh_url": "[email protected]:google/ios-webkit-debug-proxy.git",
"clone_url": "https://github.com/google/ios-webkit-debug-proxy.git",
"svn_url": "https://github.com/google/ios-webkit-debug-proxy",
"homepage": "",
"size": 680,
"stargazers_count": 4630,
"watchers_count": 4630,
"language": "C",
"has_issues": True,
"has_projects": True,
"has_downloads": True,
"has_wiki": False,
"has_pages": False,
"forks_count": 395,
"mirror_url": None,
"archived": False,
"disabled": False,
"open_issues_count": 24,
"license": {
"key": "other",
"name": "Other",
"spdx_id": "NOASSERTION",
"url": None,
"node_id": "MDc6TGljZW5zZTA="
},
"forks": 395,
"open_issues": 24,
"watchers": 4630,
"default_branch": "master",
"permissions": {
"admin": False,
"push": False,
"pull": True
}
},
{
"id": 8459994,
"node_id": "MDEwOlJlcG9zaXRvcnk4NDU5OTk0",
"name": "google.github.io",
"full_name": "google/google.github.io",
"private": False,
"owner": {
"login": "google",
"id": 1342004,
"node_id": "MDEyOk9yZ2FuaXphdGlvbjEzNDIwMDQ=",
"avatar_url": "https://avatars1.githubusercontent.com/u/1342004?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/google",
"html_url": "https://github.com/google",
"followers_url": "https://api.github.com/users/google/followers",
"following_url": "https://api.github.com/users/google/following{/other_user}",
"gists_url": "https://api.github.com/users/google/gists{/gist_id}",
"starred_url": "https://api.github.com/users/google/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/google/subscriptions",
"organizations_url": "https://api.github.com/users/google/orgs",
"repos_url": "https://api.github.com/users/google/repos",
"events_url": "https://api.github.com/users/google/events{/privacy}",
"received_events_url": "https://api.github.com/users/google/received_events",
"type": "Organization",
"site_admin": False
},
"html_url": "https://github.com/google/google.github.io",
"description": None,
"fork": False,
"url": "https://api.github.com/repos/google/google.github.io",
"forks_url": "https://api.github.com/repos/google/google.github.io/forks",
"keys_url": "https://api.github.com/repos/google/google.github.io/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/google/google.github.io/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/google/google.github.io/teams",
"hooks_url": "https://api.github.com/repos/google/google.github.io/hooks",
"issue_events_url": "https://api.github.com/repos/google/google.github.io/issues/events{/number}",
"events_url": "https://api.github.com/repos/google/google.github.io/events",
"assignees_url": "https://api.github.com/repos/google/google.github.io/assignees{/user}",
"branches_url": "https://api.github.com/repos/google/google.github.io/branches{/branch}",
"tags_url": "https://api.github.com/repos/google/google.github.io/tags",
"blobs_url": "https://api.github.com/repos/google/google.github.io/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/google/google.github.io/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/google/google.github.io/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/google/google.github.io/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/google/google.github.io/statuses/{sha}",
"languages_url": "https://api.github.com/repos/google/google.github.io/languages",
"stargazers_url": "https://api.github.com/repos/google/google.github.io/stargazers",
"contributors_url": "https://api.github.com/repos/google/google.github.io/contributors",
"subscribers_url": "https://api.github.com/repos/google/google.github.io/subscribers",
"subscription_url": "https://api.github.com/repos/google/google.github.io/subscription",
"commits_url": "https://api.github.com/repos/google/google.github.io/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/google/google.github.io/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/google/google.github.io/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/google/google.github.io/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/google/google.github.io/contents/{+path}",
"compare_url": "https://api.github.com/repos/google/google.github.io/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/google/google.github.io/merges",
"archive_url": "https://api.github.com/repos/google/google.github.io/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/google/google.github.io/downloads",
"issues_url": "https://api.github.com/repos/google/google.github.io/issues{/number}",
"pulls_url": "https://api.github.com/repos/google/google.github.io/pulls{/number}",
"milestones_url": "https://api.github.com/repos/google/google.github.io/milestones{/number}",
"notifications_url": "https://api.github.com/repos/google/google.github.io/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/google/google.github.io/labels{/name}",
"releases_url": "https://api.github.com/repos/google/google.github.io/releases{/id}",
"deployments_url": "https://api.github.com/repos/google/google.github.io/deployments",
"created_at": "2013-02-27T16:21:19Z",
"updated_at": "2019-12-03T01:38:02Z",
"pushed_at": "2019-12-03T01:37:58Z",
"git_url": "git://github.com/google/google.github.io.git",
"ssh_url": "[email protected]:google/google.github.io.git",
"clone_url": "https://github.com/google/google.github.io.git",
"svn_url": "https://github.com/google/google.github.io",
"homepage": None,
"size": 8,
"stargazers_count": 38,
"watchers_count": 38,
"language": "HTML",
"has_issues": False,
"has_projects": True,
"has_downloads": True,
"has_wiki": False,
"has_pages": True,
"forks_count": 44,
"mirror_url": None,
"archived": False,
"disabled": False,
"open_issues_count": 0,
"license": None,
"forks": 44,
"open_issues": 0,
"watchers": 38,
"default_branch": "master",
"permissions": {
"admin": False,
"push": False,
"pull": True
}
},
{
"id": 8566972,
"node_id": "MDEwOlJlcG9zaXRvcnk4NTY2OTcy",
"name": "kratu",
"full_name": "google/kratu",
"private": False,
"owner": {
"login": "google",
"id": 1342004,
"node_id": "MDEyOk9yZ2FuaXphdGlvbjEzNDIwMDQ=",
"avatar_url": "https://avatars1.githubusercontent.com/u/1342004?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/google",
"html_url": "https://github.com/google",
"followers_url": "https://api.github.com/users/google/followers",
"following_url": "https://api.github.com/users/google/following{/other_user}",
"gists_url": "https://api.github.com/users/google/gists{/gist_id}",
"starred_url": "https://api.github.com/users/google/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/google/subscriptions",
"organizations_url": "https://api.github.com/users/google/orgs",
"repos_url": "https://api.github.com/users/google/repos",
"events_url": "https://api.github.com/users/google/events{/privacy}",
"received_events_url": "https://api.github.com/users/google/received_events",
"type": "Organization",
"site_admin": False
},
"html_url": "https://github.com/google/kratu",
"description": None,
"fork": False,
"url": "https://api.github.com/repos/google/kratu",
"forks_url": "https://api.github.com/repos/google/kratu/forks",
"keys_url": "https://api.github.com/repos/google/kratu/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/google/kratu/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/google/kratu/teams",
"hooks_url": "https://api.github.com/repos/google/kratu/hooks",
"issue_events_url": "https://api.github.com/repos/google/kratu/issues/events{/number}",
"events_url": "https://api.github.com/repos/google/kratu/events",
"assignees_url": "https://api.github.com/repos/google/kratu/assignees{/user}",
"branches_url": "https://api.github.com/repos/google/kratu/branches{/branch}",
"tags_url": "https://api.github.com/repos/google/kratu/tags",
"blobs_url": "https://api.github.com/repos/google/kratu/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/google/kratu/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/google/kratu/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/google/kratu/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/google/kratu/statuses/{sha}",
"languages_url": "https://api.github.com/repos/google/kratu/languages",
"stargazers_url": "https://api.github.com/repos/google/kratu/stargazers",
"contributors_url": "https://api.github.com/repos/google/kratu/contributors",
"subscribers_url": "https://api.github.com/repos/google/kratu/subscribers",
"subscription_url": "https://api.github.com/repos/google/kratu/subscription",
"commits_url": "https://api.github.com/repos/google/kratu/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/google/kratu/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/google/kratu/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/google/kratu/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/google/kratu/contents/{+path}",
"compare_url": "https://api.github.com/repos/google/kratu/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/google/kratu/merges",
"archive_url": "https://api.github.com/repos/google/kratu/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/google/kratu/downloads",
"issues_url": "https://api.github.com/repos/google/kratu/issues{/number}",
"pulls_url": "https://api.github.com/repos/google/kratu/pulls{/number}",
"milestones_url": "https://api.github.com/repos/google/kratu/milestones{/number}",
"notifications_url": "https://api.github.com/repos/google/kratu/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/google/kratu/labels{/name}",
"releases_url": "https://api.github.com/repos/google/kratu/releases{/id}",
"deployments_url": "https://api.github.com/repos/google/kratu/deployments",
"created_at": "2013-03-04T22:52:33Z",
"updated_at": "2019-11-15T22:22:16Z",
"pushed_at": "2017-08-06T05:44:34Z",
"git_url": "git://github.com/google/kratu.git",
"ssh_url": "[email protected]:google/kratu.git",
"clone_url": "https://github.com/google/kratu.git",
"svn_url": "https://github.com/google/kratu",
"homepage": None,
"size": 1777,
"stargazers_count": 280,
"watchers_count": 280,
"language": "JavaScript",
"has_issues": True,
"has_projects": True,
"has_downloads": True,
"has_wiki": True,
"has_pages": True,
"forks_count": 32,
"mirror_url": None,
"archived": False,
"disabled": False,
"open_issues_count": 0,
"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": 32,
"open_issues": 0,
"watchers": 280,
"default_branch": "master",
"permissions": {
"admin": False,
"push": False,
"pull": True
}
},
{
"id": 8858648,
"node_id": "MDEwOlJlcG9zaXRvcnk4ODU4NjQ4",
"name": "build-debian-cloud",
"full_name": "google/build-debian-cloud",
"private": False,
"owner": {
"login": "google",
"id": 1342004,
"node_id": "MDEyOk9yZ2FuaXphdGlvbjEzNDIwMDQ=",
"avatar_url": "https://avatars1.githubusercontent.com/u/1342004?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/google",
"html_url": "https://github.com/google",
"followers_url": "https://api.github.com/users/google/followers",
"following_url": "https://api.github.com/users/google/following{/other_user}",
"gists_url": "https://api.github.com/users/google/gists{/gist_id}",
"starred_url": "https://api.github.com/users/google/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/google/subscriptions",
"organizations_url": "https://api.github.com/users/google/orgs",
"repos_url": "https://api.github.com/users/google/repos",
"events_url": "https://api.github.com/users/google/events{/privacy}",
"received_events_url": "https://api.github.com/users/google/received_events",
"type": "Organization",
"site_admin": False
},
"html_url": "https://github.com/google/build-debian-cloud",
"description": "Script to create Debian Squeeze & Wheezy Amazon Machine Images (AMIs) and Google Compute Engine images",
"fork": True,
"url": "https://api.github.com/repos/google/build-debian-cloud",
"forks_url": "https://api.github.com/repos/google/build-debian-cloud/forks",
"keys_url": "https://api.github.com/repos/google/build-debian-cloud/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/google/build-debian-cloud/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/google/build-debian-cloud/teams",
"hooks_url": "https://api.github.com/repos/google/build-debian-cloud/hooks",
"issue_events_url": "https://api.github.com/repos/google/build-debian-cloud/issues/events{/number}",
"events_url": "https://api.github.com/repos/google/build-debian-cloud/events",
"assignees_url": "https://api.github.com/repos/google/build-debian-cloud/assignees{/user}",
"branches_url": "https://api.github.com/repos/google/build-debian-cloud/branches{/branch}",
"tags_url": "https://api.github.com/repos/google/build-debian-cloud/tags",
"blobs_url": "https://api.github.com/repos/google/build-debian-cloud/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/google/build-debian-cloud/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/google/build-debian-cloud/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/google/build-debian-cloud/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/google/build-debian-cloud/statuses/{sha}",
"languages_url": "https://api.github.com/repos/google/build-debian-cloud/languages",
"stargazers_url": "https://api.github.com/repos/google/build-debian-cloud/stargazers",
"contributors_url": "https://api.github.com/repos/google/build-debian-cloud/contributors",
"subscribers_url": "https://api.github.com/repos/google/build-debian-cloud/subscribers",
"subscription_url": "https://api.github.com/repos/google/build-debian-cloud/subscription",
"commits_url": "https://api.github.com/repos/google/build-debian-cloud/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/google/build-debian-cloud/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/google/build-debian-cloud/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/google/build-debian-cloud/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/google/build-debian-cloud/contents/{+path}",
"compare_url": "https://api.github.com/repos/google/build-debian-cloud/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/google/build-debian-cloud/merges",
"archive_url": "https://api.github.com/repos/google/build-debian-cloud/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/google/build-debian-cloud/downloads",
"issues_url": "https://api.github.com/repos/google/build-debian-cloud/issues{/number}",
"pulls_url": "https://api.github.com/repos/google/build-debian-cloud/pulls{/number}",
"milestones_url": "https://api.github.com/repos/google/build-debian-cloud/milestones{/number}",
"notifications_url": "https://api.github.com/repos/google/build-debian-cloud/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/google/build-debian-cloud/labels{/name}",
"releases_url": "https://api.github.com/repos/google/build-debian-cloud/releases{/id}",
"deployments_url": "https://api.github.com/repos/google/build-debian-cloud/deployments",
"created_at": "2013-03-18T16:32:00Z",
"updated_at": "2019-09-23T11:54:00Z",
"pushed_at": "2014-06-17T18:52:10Z",
"git_url": "git://github.com/google/build-debian-cloud.git",
"ssh_url": "[email protected]:google/build-debian-cloud.git",
"clone_url": "https://github.com/google/build-debian-cloud.git",
"svn_url": "https://github.com/google/build-debian-cloud",
"homepage": "",
"size": 986,
"stargazers_count": 32,
"watchers_count": 32,
"language": "Shell",
"has_issues": False,
"has_projects": True,
"has_downloads": True,
"has_wiki": False,
"has_pages": False,
"forks_count": 22,
"mirror_url": None,
"archived": False,
"disabled": False,
"open_issues_count": 5,
"license": {
"key": "other",
"name": "Other",
"spdx_id": "NOASSERTION",
"url": None,
"node_id": "MDc6TGljZW5zZTA="
},
"forks": 22,
"open_issues": 5,
"watchers": 32,
"default_branch": "master",
"permissions": {
"admin": False,
"push": False,
"pull": True
}
},
{
"id": 9060347,
"node_id": "MDEwOlJlcG9zaXRvcnk5MDYwMzQ3",
"name": "traceur-compiler",
"full_name": "google/traceur-compiler",
"private": False,
"owner": {
"login": "google",
"id": 1342004,
"node_id": "MDEyOk9yZ2FuaXphdGlvbjEzNDIwMDQ=",
"avatar_url": "https://avatars1.githubusercontent.com/u/1342004?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/google",
"html_url": "https://github.com/google",
"followers_url": "https://api.github.com/users/google/followers",
"following_url": "https://api.github.com/users/google/following{/other_user}",
"gists_url": "https://api.github.com/users/google/gists{/gist_id}",
"starred_url": "https://api.github.com/users/google/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/google/subscriptions",
"organizations_url": "https://api.github.com/users/google/orgs",
"repos_url": "https://api.github.com/users/google/repos",
"events_url": "https://api.github.com/users/google/events{/privacy}",
"received_events_url": "https://api.github.com/users/google/received_events",
"type": "Organization",
"site_admin": False
},
"html_url": "https://github.com/google/traceur-compiler",
"description": "Traceur is a JavaScript.next-to-JavaScript-of-today compiler",
"fork": False,
"url": "https://api.github.com/repos/google/traceur-compiler",
"forks_url": "https://api.github.com/repos/google/traceur-compiler/forks",
"keys_url": "https://api.github.com/repos/google/traceur-compiler/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/google/traceur-compiler/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/google/traceur-compiler/teams",
"hooks_url": "https://api.github.com/repos/google/traceur-compiler/hooks",
"issue_events_url": "https://api.github.com/repos/google/traceur-compiler/issues/events{/number}",
"events_url": "https://api.github.com/repos/google/traceur-compiler/events",
"assignees_url": "https://api.github.com/repos/google/traceur-compiler/assignees{/user}",
"branches_url": "https://api.github.com/repos/google/traceur-compiler/branches{/branch}",
"tags_url": "https://api.github.com/repos/google/traceur-compiler/tags",
"blobs_url": "https://api.github.com/repos/google/traceur-compiler/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/google/traceur-compiler/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/google/traceur-compiler/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/google/traceur-compiler/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/google/traceur-compiler/statuses/{sha}",
"languages_url": "https://api.github.com/repos/google/traceur-compiler/languages",
"stargazers_url": "https://api.github.com/repos/google/traceur-compiler/stargazers",
"contributors_url": "https://api.github.com/repos/google/traceur-compiler/contributors",
"subscribers_url": "https://api.github.com/repos/google/traceur-compiler/subscribers",
"subscription_url": "https://api.github.com/repos/google/traceur-compiler/subscription",
"commits_url": "https://api.github.com/repos/google/traceur-compiler/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/google/traceur-compiler/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/google/traceur-compiler/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/google/traceur-compiler/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/google/traceur-compiler/contents/{+path}",
"compare_url": "https://api.github.com/repos/google/traceur-compiler/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/google/traceur-compiler/merges",
"archive_url": "https://api.github.com/repos/google/traceur-compiler/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/google/traceur-compiler/downloads",
"issues_url": "https://api.github.com/repos/google/traceur-compiler/issues{/number}",
"pulls_url": "https://api.github.com/repos/google/traceur-compiler/pulls{/number}",
"milestones_url": "https://api.github.com/repos/google/traceur-compiler/milestones{/number}",
"notifications_url": "https://api.github.com/repos/google/traceur-compiler/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/google/traceur-compiler/labels{/name}",
"releases_url": "https://api.github.com/repos/google/traceur-compiler/releases{/id}",
"deployments_url": "https://api.github.com/repos/google/traceur-compiler/deployments",
"created_at": "2013-03-27T18:05:40Z",
"updated_at": "2019-12-02T16:45:54Z",
"pushed_at": "2018-05-28T04:37:54Z",
"git_url": "git://github.com/google/traceur-compiler.git",
"ssh_url": "[email protected]:google/traceur-compiler.git",
"clone_url": "https://github.com/google/traceur-compiler.git",
"svn_url": "https://github.com/google/traceur-compiler",
"homepage": "",
"size": 27487,
"stargazers_count": 8033,
"watchers_count": 8033,
"language": "JavaScript",
"has_issues": True,
"has_projects": True,
"has_downloads": True,
"has_wiki": True,
"has_pages": True,
"forks_count": 604,
"mirror_url": None,
"archived": False,
"disabled": False,
"open_issues_count": 296,
"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": 604,
"open_issues": 296,
"watchers": 8033,
"default_branch": "master",
"permissions": {
"admin": False,
"push": False,
"pull": True
}
},
{
"id": 9065917,
"node_id": "MDEwOlJlcG9zaXRvcnk5MDY1OTE3",
"name": "firmata.py",
"full_name": "google/firmata.py",
"private": False,
"owner": {
"login": "google",
"id": 1342004,
"node_id": "MDEyOk9yZ2FuaXphdGlvbjEzNDIwMDQ=",
"avatar_url": "https://avatars1.githubusercontent.com/u/1342004?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/google",
"html_url": "https://github.com/google",
"followers_url": "https://api.github.com/users/google/followers",
"following_url": "https://api.github.com/users/google/following{/other_user}",
"gists_url": "https://api.github.com/users/google/gists{/gist_id}",
"starred_url": "https://api.github.com/users/google/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/google/subscriptions",
"organizations_url": "https://api.github.com/users/google/orgs",
"repos_url": "https://api.github.com/users/google/repos",
"events_url": "https://api.github.com/users/google/events{/privacy}",
"received_events_url": "https://api.github.com/users/google/received_events",
"type": "Organization",
"site_admin": False
},
"html_url": "https://github.com/google/firmata.py",
"description": None,
"fork": False,
"url": "https://api.github.com/repos/google/firmata.py",
"forks_url": "https://api.github.com/repos/google/firmata.py/forks",
"keys_url": "https://api.github.com/repos/google/firmata.py/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/google/firmata.py/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/google/firmata.py/teams",
"hooks_url": "https://api.github.com/repos/google/firmata.py/hooks",
"issue_events_url": "https://api.github.com/repos/google/firmata.py/issues/events{/number}",
"events_url": "https://api.github.com/repos/google/firmata.py/events",
"assignees_url": "https://api.github.com/repos/google/firmata.py/assignees{/user}",
"branches_url": "https://api.github.com/repos/google/firmata.py/branches{/branch}",
"tags_url": "https://api.github.com/repos/google/firmata.py/tags",
"blobs_url": "https://api.github.com/repos/google/firmata.py/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/google/firmata.py/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/google/firmata.py/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/google/firmata.py/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/google/firmata.py/statuses/{sha}",
"languages_url": "https://api.github.com/repos/google/firmata.py/languages",
"stargazers_url": "https://api.github.com/repos/google/firmata.py/stargazers",
"contributors_url": "https://api.github.com/repos/google/firmata.py/contributors",
"subscribers_url": "https://api.github.com/repos/google/firmata.py/subscribers",
"subscription_url": "https://api.github.com/repos/google/firmata.py/subscription",
"commits_url": "https://api.github.com/repos/google/firmata.py/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/google/firmata.py/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/google/firmata.py/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/google/firmata.py/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/google/firmata.py/contents/{+path}",
"compare_url": "https://api.github.com/repos/google/firmata.py/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/google/firmata.py/merges",
"archive_url": "https://api.github.com/repos/google/firmata.py/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/google/firmata.py/downloads",
"issues_url": "https://api.github.com/repos/google/firmata.py/issues{/number}",
"pulls_url": "https://api.github.com/repos/google/firmata.py/pulls{/number}",
"milestones_url": "https://api.github.com/repos/google/firmata.py/milestones{/number}",
"notifications_url": "https://api.github.com/repos/google/firmata.py/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/google/firmata.py/labels{/name}",
"releases_url": "https://api.github.com/repos/google/firmata.py/releases{/id}",
"deployments_url": "https://api.github.com/repos/google/firmata.py/deployments",
"created_at": "2013-03-27T23:20:35Z",
"updated_at": "2019-09-23T11:54:02Z",
"pushed_at": "2013-03-27T23:34:35Z",
"git_url": "git://github.com/google/firmata.py.git",
"ssh_url": "[email protected]:google/firmata.py.git",
"clone_url": "https://github.com/google/firmata.py.git",
"svn_url": "https://github.com/google/firmata.py",
"homepage": None,
"size": 160,
"stargazers_count": 15,
"watchers_count": 15,
"language": "Python",
"has_issues": True,
"has_projects": True,
"has_downloads": True,
"has_wiki": True,
"has_pages": False,
"forks_count": 15,
"mirror_url": None,
"archived": False,
"disabled": False,
"open_issues_count": 0,
"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": 15,
"open_issues": 0,
"watchers": 15,
"default_branch": "master",
"permissions": {
"admin": False,
"push": False,
"pull": True
}
}
],
['episodes.dart', 'cpp-netlib', 'dagger', 'ios-webkit-debug-proxy', 'google.github.io', 'kratu', 'build-debian-cloud', 'traceur-compiler', 'firmata.py'],
['dagger', 'kratu', 'traceur-compiler', 'firmata.py'],
)
]