-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrepos.json
More file actions
9096 lines (9096 loc) · 496 KB
/
repos.json
File metadata and controls
9096 lines (9096 loc) · 496 KB
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
[
{
"id": 15674183,
"node_id": "MDEwOlJlcG9zaXRvcnkxNTY3NDE4Mw==",
"name": "ipython-notebooks",
"full_name": "yaph/ipython-notebooks",
"private": false,
"owner": {
"login": "yaph",
"id": 60051,
"node_id": "MDQ6VXNlcjYwMDUx",
"avatar_url": "https://avatars3.githubusercontent.com/u/60051?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/yaph",
"html_url": "https://github.com/yaph",
"followers_url": "https://api.github.com/users/yaph/followers",
"following_url": "https://api.github.com/users/yaph/following{/other_user}",
"gists_url": "https://api.github.com/users/yaph/gists{/gist_id}",
"starred_url": "https://api.github.com/users/yaph/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/yaph/subscriptions",
"organizations_url": "https://api.github.com/users/yaph/orgs",
"repos_url": "https://api.github.com/users/yaph/repos",
"events_url": "https://api.github.com/users/yaph/events{/privacy}",
"received_events_url": "https://api.github.com/users/yaph/received_events",
"type": "User",
"site_admin": false
},
"html_url": "https://github.com/yaph/ipython-notebooks",
"description": "A collection of Jupyter notebooks exploring different datasets.",
"fork": false,
"url": "https://api.github.com/repos/yaph/ipython-notebooks",
"forks_url": "https://api.github.com/repos/yaph/ipython-notebooks/forks",
"keys_url": "https://api.github.com/repos/yaph/ipython-notebooks/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/yaph/ipython-notebooks/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/yaph/ipython-notebooks/teams",
"hooks_url": "https://api.github.com/repos/yaph/ipython-notebooks/hooks",
"issue_events_url": "https://api.github.com/repos/yaph/ipython-notebooks/issues/events{/number}",
"events_url": "https://api.github.com/repos/yaph/ipython-notebooks/events",
"assignees_url": "https://api.github.com/repos/yaph/ipython-notebooks/assignees{/user}",
"branches_url": "https://api.github.com/repos/yaph/ipython-notebooks/branches{/branch}",
"tags_url": "https://api.github.com/repos/yaph/ipython-notebooks/tags",
"blobs_url": "https://api.github.com/repos/yaph/ipython-notebooks/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/yaph/ipython-notebooks/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/yaph/ipython-notebooks/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/yaph/ipython-notebooks/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/yaph/ipython-notebooks/statuses/{sha}",
"languages_url": "https://api.github.com/repos/yaph/ipython-notebooks/languages",
"stargazers_url": "https://api.github.com/repos/yaph/ipython-notebooks/stargazers",
"contributors_url": "https://api.github.com/repos/yaph/ipython-notebooks/contributors",
"subscribers_url": "https://api.github.com/repos/yaph/ipython-notebooks/subscribers",
"subscription_url": "https://api.github.com/repos/yaph/ipython-notebooks/subscription",
"commits_url": "https://api.github.com/repos/yaph/ipython-notebooks/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/yaph/ipython-notebooks/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/yaph/ipython-notebooks/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/yaph/ipython-notebooks/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/yaph/ipython-notebooks/contents/{+path}",
"compare_url": "https://api.github.com/repos/yaph/ipython-notebooks/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/yaph/ipython-notebooks/merges",
"archive_url": "https://api.github.com/repos/yaph/ipython-notebooks/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/yaph/ipython-notebooks/downloads",
"issues_url": "https://api.github.com/repos/yaph/ipython-notebooks/issues{/number}",
"pulls_url": "https://api.github.com/repos/yaph/ipython-notebooks/pulls{/number}",
"milestones_url": "https://api.github.com/repos/yaph/ipython-notebooks/milestones{/number}",
"notifications_url": "https://api.github.com/repos/yaph/ipython-notebooks/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/yaph/ipython-notebooks/labels{/name}",
"releases_url": "https://api.github.com/repos/yaph/ipython-notebooks/releases{/id}",
"deployments_url": "https://api.github.com/repos/yaph/ipython-notebooks/deployments",
"created_at": "2014-01-06T13:05:11Z",
"updated_at": "2019-05-25T09:51:47Z",
"pushed_at": "2019-05-25T09:51:45Z",
"git_url": "git://github.com/yaph/ipython-notebooks.git",
"ssh_url": "[email protected]:yaph/ipython-notebooks.git",
"clone_url": "https://github.com/yaph/ipython-notebooks.git",
"svn_url": "https://github.com/yaph/ipython-notebooks",
"homepage": "http://ramiro.org/notebooks/",
"size": 36457,
"stargazers_count": 31,
"watchers_count": 31,
"language": "Jupyter Notebook",
"has_issues": true,
"has_projects": true,
"has_downloads": true,
"has_wiki": false,
"has_pages": false,
"forks_count": 13,
"mirror_url": null,
"archived": false,
"disabled": false,
"open_issues_count": 0,
"license": null,
"forks": 13,
"open_issues": 0,
"watchers": 31,
"default_branch": "master"
},
{
"id": 42773228,
"node_id": "MDEwOlJlcG9zaXRvcnk0Mjc3MzIyOA==",
"name": "guitarstreams.com",
"full_name": "yaph/guitarstreams.com",
"private": false,
"owner": {
"login": "yaph",
"id": 60051,
"node_id": "MDQ6VXNlcjYwMDUx",
"avatar_url": "https://avatars3.githubusercontent.com/u/60051?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/yaph",
"html_url": "https://github.com/yaph",
"followers_url": "https://api.github.com/users/yaph/followers",
"following_url": "https://api.github.com/users/yaph/following{/other_user}",
"gists_url": "https://api.github.com/users/yaph/gists{/gist_id}",
"starred_url": "https://api.github.com/users/yaph/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/yaph/subscriptions",
"organizations_url": "https://api.github.com/users/yaph/orgs",
"repos_url": "https://api.github.com/users/yaph/repos",
"events_url": "https://api.github.com/users/yaph/events{/privacy}",
"received_events_url": "https://api.github.com/users/yaph/received_events",
"type": "User",
"site_admin": false
},
"html_url": "https://github.com/yaph/guitarstreams.com",
"description": "guitarstreams.com generated website code",
"fork": false,
"url": "https://api.github.com/repos/yaph/guitarstreams.com",
"forks_url": "https://api.github.com/repos/yaph/guitarstreams.com/forks",
"keys_url": "https://api.github.com/repos/yaph/guitarstreams.com/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/yaph/guitarstreams.com/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/yaph/guitarstreams.com/teams",
"hooks_url": "https://api.github.com/repos/yaph/guitarstreams.com/hooks",
"issue_events_url": "https://api.github.com/repos/yaph/guitarstreams.com/issues/events{/number}",
"events_url": "https://api.github.com/repos/yaph/guitarstreams.com/events",
"assignees_url": "https://api.github.com/repos/yaph/guitarstreams.com/assignees{/user}",
"branches_url": "https://api.github.com/repos/yaph/guitarstreams.com/branches{/branch}",
"tags_url": "https://api.github.com/repos/yaph/guitarstreams.com/tags",
"blobs_url": "https://api.github.com/repos/yaph/guitarstreams.com/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/yaph/guitarstreams.com/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/yaph/guitarstreams.com/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/yaph/guitarstreams.com/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/yaph/guitarstreams.com/statuses/{sha}",
"languages_url": "https://api.github.com/repos/yaph/guitarstreams.com/languages",
"stargazers_url": "https://api.github.com/repos/yaph/guitarstreams.com/stargazers",
"contributors_url": "https://api.github.com/repos/yaph/guitarstreams.com/contributors",
"subscribers_url": "https://api.github.com/repos/yaph/guitarstreams.com/subscribers",
"subscription_url": "https://api.github.com/repos/yaph/guitarstreams.com/subscription",
"commits_url": "https://api.github.com/repos/yaph/guitarstreams.com/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/yaph/guitarstreams.com/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/yaph/guitarstreams.com/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/yaph/guitarstreams.com/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/yaph/guitarstreams.com/contents/{+path}",
"compare_url": "https://api.github.com/repos/yaph/guitarstreams.com/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/yaph/guitarstreams.com/merges",
"archive_url": "https://api.github.com/repos/yaph/guitarstreams.com/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/yaph/guitarstreams.com/downloads",
"issues_url": "https://api.github.com/repos/yaph/guitarstreams.com/issues{/number}",
"pulls_url": "https://api.github.com/repos/yaph/guitarstreams.com/pulls{/number}",
"milestones_url": "https://api.github.com/repos/yaph/guitarstreams.com/milestones{/number}",
"notifications_url": "https://api.github.com/repos/yaph/guitarstreams.com/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/yaph/guitarstreams.com/labels{/name}",
"releases_url": "https://api.github.com/repos/yaph/guitarstreams.com/releases{/id}",
"deployments_url": "https://api.github.com/repos/yaph/guitarstreams.com/deployments",
"created_at": "2015-09-19T13:08:56Z",
"updated_at": "2019-05-23T12:52:39Z",
"pushed_at": "2019-05-23T12:52:37Z",
"git_url": "git://github.com/yaph/guitarstreams.com.git",
"ssh_url": "[email protected]:yaph/guitarstreams.com.git",
"clone_url": "https://github.com/yaph/guitarstreams.com.git",
"svn_url": "https://github.com/yaph/guitarstreams.com",
"homepage": "https://guitarstreams.com/",
"size": 17083,
"stargazers_count": 0,
"watchers_count": 0,
"language": "HTML",
"has_issues": true,
"has_projects": false,
"has_downloads": true,
"has_wiki": false,
"has_pages": true,
"forks_count": 0,
"mirror_url": null,
"archived": false,
"disabled": false,
"open_issues_count": 0,
"license": null,
"forks": 0,
"open_issues": 0,
"watchers": 0,
"default_branch": "gh-pages"
},
{
"id": 187846865,
"node_id": "MDEwOlJlcG9zaXRvcnkxODc4NDY4NjU=",
"name": "bullshit.js",
"full_name": "yaph/bullshit.js",
"private": false,
"owner": {
"login": "yaph",
"id": 60051,
"node_id": "MDQ6VXNlcjYwMDUx",
"avatar_url": "https://avatars3.githubusercontent.com/u/60051?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/yaph",
"html_url": "https://github.com/yaph",
"followers_url": "https://api.github.com/users/yaph/followers",
"following_url": "https://api.github.com/users/yaph/following{/other_user}",
"gists_url": "https://api.github.com/users/yaph/gists{/gist_id}",
"starred_url": "https://api.github.com/users/yaph/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/yaph/subscriptions",
"organizations_url": "https://api.github.com/users/yaph/orgs",
"repos_url": "https://api.github.com/users/yaph/repos",
"events_url": "https://api.github.com/users/yaph/events{/privacy}",
"received_events_url": "https://api.github.com/users/yaph/received_events",
"type": "User",
"site_admin": false
},
"html_url": "https://github.com/yaph/bullshit.js",
"description": "A bookmarklet for translating marketing speak into human-readable text. :poop:",
"fork": true,
"url": "https://api.github.com/repos/yaph/bullshit.js",
"forks_url": "https://api.github.com/repos/yaph/bullshit.js/forks",
"keys_url": "https://api.github.com/repos/yaph/bullshit.js/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/yaph/bullshit.js/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/yaph/bullshit.js/teams",
"hooks_url": "https://api.github.com/repos/yaph/bullshit.js/hooks",
"issue_events_url": "https://api.github.com/repos/yaph/bullshit.js/issues/events{/number}",
"events_url": "https://api.github.com/repos/yaph/bullshit.js/events",
"assignees_url": "https://api.github.com/repos/yaph/bullshit.js/assignees{/user}",
"branches_url": "https://api.github.com/repos/yaph/bullshit.js/branches{/branch}",
"tags_url": "https://api.github.com/repos/yaph/bullshit.js/tags",
"blobs_url": "https://api.github.com/repos/yaph/bullshit.js/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/yaph/bullshit.js/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/yaph/bullshit.js/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/yaph/bullshit.js/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/yaph/bullshit.js/statuses/{sha}",
"languages_url": "https://api.github.com/repos/yaph/bullshit.js/languages",
"stargazers_url": "https://api.github.com/repos/yaph/bullshit.js/stargazers",
"contributors_url": "https://api.github.com/repos/yaph/bullshit.js/contributors",
"subscribers_url": "https://api.github.com/repos/yaph/bullshit.js/subscribers",
"subscription_url": "https://api.github.com/repos/yaph/bullshit.js/subscription",
"commits_url": "https://api.github.com/repos/yaph/bullshit.js/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/yaph/bullshit.js/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/yaph/bullshit.js/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/yaph/bullshit.js/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/yaph/bullshit.js/contents/{+path}",
"compare_url": "https://api.github.com/repos/yaph/bullshit.js/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/yaph/bullshit.js/merges",
"archive_url": "https://api.github.com/repos/yaph/bullshit.js/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/yaph/bullshit.js/downloads",
"issues_url": "https://api.github.com/repos/yaph/bullshit.js/issues{/number}",
"pulls_url": "https://api.github.com/repos/yaph/bullshit.js/pulls{/number}",
"milestones_url": "https://api.github.com/repos/yaph/bullshit.js/milestones{/number}",
"notifications_url": "https://api.github.com/repos/yaph/bullshit.js/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/yaph/bullshit.js/labels{/name}",
"releases_url": "https://api.github.com/repos/yaph/bullshit.js/releases{/id}",
"deployments_url": "https://api.github.com/repos/yaph/bullshit.js/deployments",
"created_at": "2019-05-21T13:49:47Z",
"updated_at": "2019-05-21T13:49:50Z",
"pushed_at": "2019-05-21T13:51:09Z",
"git_url": "git://github.com/yaph/bullshit.js.git",
"ssh_url": "[email protected]:yaph/bullshit.js.git",
"clone_url": "https://github.com/yaph/bullshit.js.git",
"svn_url": "https://github.com/yaph/bullshit.js",
"homepage": "https://mourner.github.io/bullshit.js/",
"size": 82,
"stargazers_count": 0,
"watchers_count": 0,
"language": "JavaScript",
"has_issues": false,
"has_projects": true,
"has_downloads": true,
"has_wiki": false,
"has_pages": false,
"forks_count": 0,
"mirror_url": null,
"archived": false,
"disabled": false,
"open_issues_count": 0,
"license": {
"key": "mit",
"name": "MIT License",
"spdx_id": "MIT",
"url": "https://api.github.com/licenses/mit",
"node_id": "MDc6TGljZW5zZTEz"
},
"forks": 0,
"open_issues": 0,
"watchers": 0,
"default_branch": "master"
},
{
"id": 18795587,
"node_id": "MDEwOlJlcG9zaXRvcnkxODc5NTU4Nw==",
"name": "d3-geomap",
"full_name": "yaph/d3-geomap",
"private": false,
"owner": {
"login": "yaph",
"id": 60051,
"node_id": "MDQ6VXNlcjYwMDUx",
"avatar_url": "https://avatars3.githubusercontent.com/u/60051?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/yaph",
"html_url": "https://github.com/yaph",
"followers_url": "https://api.github.com/users/yaph/followers",
"following_url": "https://api.github.com/users/yaph/following{/other_user}",
"gists_url": "https://api.github.com/users/yaph/gists{/gist_id}",
"starred_url": "https://api.github.com/users/yaph/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/yaph/subscriptions",
"organizations_url": "https://api.github.com/users/yaph/orgs",
"repos_url": "https://api.github.com/users/yaph/repos",
"events_url": "https://api.github.com/users/yaph/events{/privacy}",
"received_events_url": "https://api.github.com/users/yaph/received_events",
"type": "User",
"site_admin": false
},
"html_url": "https://github.com/yaph/d3-geomap",
"description": "d3.geomap - a reusable geographic map for D3.js",
"fork": false,
"url": "https://api.github.com/repos/yaph/d3-geomap",
"forks_url": "https://api.github.com/repos/yaph/d3-geomap/forks",
"keys_url": "https://api.github.com/repos/yaph/d3-geomap/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/yaph/d3-geomap/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/yaph/d3-geomap/teams",
"hooks_url": "https://api.github.com/repos/yaph/d3-geomap/hooks",
"issue_events_url": "https://api.github.com/repos/yaph/d3-geomap/issues/events{/number}",
"events_url": "https://api.github.com/repos/yaph/d3-geomap/events",
"assignees_url": "https://api.github.com/repos/yaph/d3-geomap/assignees{/user}",
"branches_url": "https://api.github.com/repos/yaph/d3-geomap/branches{/branch}",
"tags_url": "https://api.github.com/repos/yaph/d3-geomap/tags",
"blobs_url": "https://api.github.com/repos/yaph/d3-geomap/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/yaph/d3-geomap/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/yaph/d3-geomap/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/yaph/d3-geomap/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/yaph/d3-geomap/statuses/{sha}",
"languages_url": "https://api.github.com/repos/yaph/d3-geomap/languages",
"stargazers_url": "https://api.github.com/repos/yaph/d3-geomap/stargazers",
"contributors_url": "https://api.github.com/repos/yaph/d3-geomap/contributors",
"subscribers_url": "https://api.github.com/repos/yaph/d3-geomap/subscribers",
"subscription_url": "https://api.github.com/repos/yaph/d3-geomap/subscription",
"commits_url": "https://api.github.com/repos/yaph/d3-geomap/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/yaph/d3-geomap/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/yaph/d3-geomap/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/yaph/d3-geomap/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/yaph/d3-geomap/contents/{+path}",
"compare_url": "https://api.github.com/repos/yaph/d3-geomap/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/yaph/d3-geomap/merges",
"archive_url": "https://api.github.com/repos/yaph/d3-geomap/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/yaph/d3-geomap/downloads",
"issues_url": "https://api.github.com/repos/yaph/d3-geomap/issues{/number}",
"pulls_url": "https://api.github.com/repos/yaph/d3-geomap/pulls{/number}",
"milestones_url": "https://api.github.com/repos/yaph/d3-geomap/milestones{/number}",
"notifications_url": "https://api.github.com/repos/yaph/d3-geomap/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/yaph/d3-geomap/labels{/name}",
"releases_url": "https://api.github.com/repos/yaph/d3-geomap/releases{/id}",
"deployments_url": "https://api.github.com/repos/yaph/d3-geomap/deployments",
"created_at": "2014-04-15T10:05:57Z",
"updated_at": "2019-05-14T09:02:31Z",
"pushed_at": "2019-05-06T21:22:25Z",
"git_url": "git://github.com/yaph/d3-geomap.git",
"ssh_url": "[email protected]:yaph/d3-geomap.git",
"clone_url": "https://github.com/yaph/d3-geomap.git",
"svn_url": "https://github.com/yaph/d3-geomap",
"homepage": "http://d3-geomap.github.io/",
"size": 7482,
"stargazers_count": 90,
"watchers_count": 90,
"language": "JavaScript",
"has_issues": true,
"has_projects": true,
"has_downloads": true,
"has_wiki": false,
"has_pages": false,
"forks_count": 40,
"mirror_url": null,
"archived": false,
"disabled": false,
"open_issues_count": 11,
"license": {
"key": "mit",
"name": "MIT License",
"spdx_id": "MIT",
"url": "https://api.github.com/licenses/mit",
"node_id": "MDc6TGljZW5zZTEz"
},
"forks": 40,
"open_issues": 11,
"watchers": 90,
"default_branch": "master"
},
{
"id": 184079661,
"node_id": "MDEwOlJlcG9zaXRvcnkxODQwNzk2NjE=",
"name": "spaCy",
"full_name": "yaph/spaCy",
"private": false,
"owner": {
"login": "yaph",
"id": 60051,
"node_id": "MDQ6VXNlcjYwMDUx",
"avatar_url": "https://avatars3.githubusercontent.com/u/60051?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/yaph",
"html_url": "https://github.com/yaph",
"followers_url": "https://api.github.com/users/yaph/followers",
"following_url": "https://api.github.com/users/yaph/following{/other_user}",
"gists_url": "https://api.github.com/users/yaph/gists{/gist_id}",
"starred_url": "https://api.github.com/users/yaph/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/yaph/subscriptions",
"organizations_url": "https://api.github.com/users/yaph/orgs",
"repos_url": "https://api.github.com/users/yaph/repos",
"events_url": "https://api.github.com/users/yaph/events{/privacy}",
"received_events_url": "https://api.github.com/users/yaph/received_events",
"type": "User",
"site_admin": false
},
"html_url": "https://github.com/yaph/spaCy",
"description": "💫 Industrial-strength Natural Language Processing (NLP) with Python and Cython",
"fork": true,
"url": "https://api.github.com/repos/yaph/spaCy",
"forks_url": "https://api.github.com/repos/yaph/spaCy/forks",
"keys_url": "https://api.github.com/repos/yaph/spaCy/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/yaph/spaCy/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/yaph/spaCy/teams",
"hooks_url": "https://api.github.com/repos/yaph/spaCy/hooks",
"issue_events_url": "https://api.github.com/repos/yaph/spaCy/issues/events{/number}",
"events_url": "https://api.github.com/repos/yaph/spaCy/events",
"assignees_url": "https://api.github.com/repos/yaph/spaCy/assignees{/user}",
"branches_url": "https://api.github.com/repos/yaph/spaCy/branches{/branch}",
"tags_url": "https://api.github.com/repos/yaph/spaCy/tags",
"blobs_url": "https://api.github.com/repos/yaph/spaCy/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/yaph/spaCy/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/yaph/spaCy/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/yaph/spaCy/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/yaph/spaCy/statuses/{sha}",
"languages_url": "https://api.github.com/repos/yaph/spaCy/languages",
"stargazers_url": "https://api.github.com/repos/yaph/spaCy/stargazers",
"contributors_url": "https://api.github.com/repos/yaph/spaCy/contributors",
"subscribers_url": "https://api.github.com/repos/yaph/spaCy/subscribers",
"subscription_url": "https://api.github.com/repos/yaph/spaCy/subscription",
"commits_url": "https://api.github.com/repos/yaph/spaCy/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/yaph/spaCy/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/yaph/spaCy/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/yaph/spaCy/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/yaph/spaCy/contents/{+path}",
"compare_url": "https://api.github.com/repos/yaph/spaCy/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/yaph/spaCy/merges",
"archive_url": "https://api.github.com/repos/yaph/spaCy/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/yaph/spaCy/downloads",
"issues_url": "https://api.github.com/repos/yaph/spaCy/issues{/number}",
"pulls_url": "https://api.github.com/repos/yaph/spaCy/pulls{/number}",
"milestones_url": "https://api.github.com/repos/yaph/spaCy/milestones{/number}",
"notifications_url": "https://api.github.com/repos/yaph/spaCy/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/yaph/spaCy/labels{/name}",
"releases_url": "https://api.github.com/repos/yaph/spaCy/releases{/id}",
"deployments_url": "https://api.github.com/repos/yaph/spaCy/deployments",
"created_at": "2019-04-29T13:48:07Z",
"updated_at": "2019-04-29T13:48:15Z",
"pushed_at": "2019-04-29T13:59:36Z",
"git_url": "git://github.com/yaph/spaCy.git",
"ssh_url": "[email protected]:yaph/spaCy.git",
"clone_url": "https://github.com/yaph/spaCy.git",
"svn_url": "https://github.com/yaph/spaCy",
"homepage": "https://spacy.io",
"size": 106301,
"stargazers_count": 0,
"watchers_count": 0,
"language": "Python",
"has_issues": false,
"has_projects": true,
"has_downloads": true,
"has_wiki": false,
"has_pages": false,
"forks_count": 0,
"mirror_url": null,
"archived": false,
"disabled": false,
"open_issues_count": 0,
"license": {
"key": "mit",
"name": "MIT License",
"spdx_id": "MIT",
"url": "https://api.github.com/licenses/mit",
"node_id": "MDc6TGljZW5zZTEz"
},
"forks": 0,
"open_issues": 0,
"watchers": 0,
"default_branch": "master"
},
{
"id": 2264945,
"node_id": "MDEwOlJlcG9zaXRvcnkyMjY0OTQ1",
"name": "logya",
"full_name": "yaph/logya",
"private": false,
"owner": {
"login": "yaph",
"id": 60051,
"node_id": "MDQ6VXNlcjYwMDUx",
"avatar_url": "https://avatars3.githubusercontent.com/u/60051?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/yaph",
"html_url": "https://github.com/yaph",
"followers_url": "https://api.github.com/users/yaph/followers",
"following_url": "https://api.github.com/users/yaph/following{/other_user}",
"gists_url": "https://api.github.com/users/yaph/gists{/gist_id}",
"starred_url": "https://api.github.com/users/yaph/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/yaph/subscriptions",
"organizations_url": "https://api.github.com/users/yaph/orgs",
"repos_url": "https://api.github.com/users/yaph/repos",
"events_url": "https://api.github.com/users/yaph/events{/privacy}",
"received_events_url": "https://api.github.com/users/yaph/received_events",
"type": "User",
"site_admin": false
},
"html_url": "https://github.com/yaph/logya",
"description": "Logya is a static Web site generator written in Python designed to be easy to use and flexible.",
"fork": false,
"url": "https://api.github.com/repos/yaph/logya",
"forks_url": "https://api.github.com/repos/yaph/logya/forks",
"keys_url": "https://api.github.com/repos/yaph/logya/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/yaph/logya/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/yaph/logya/teams",
"hooks_url": "https://api.github.com/repos/yaph/logya/hooks",
"issue_events_url": "https://api.github.com/repos/yaph/logya/issues/events{/number}",
"events_url": "https://api.github.com/repos/yaph/logya/events",
"assignees_url": "https://api.github.com/repos/yaph/logya/assignees{/user}",
"branches_url": "https://api.github.com/repos/yaph/logya/branches{/branch}",
"tags_url": "https://api.github.com/repos/yaph/logya/tags",
"blobs_url": "https://api.github.com/repos/yaph/logya/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/yaph/logya/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/yaph/logya/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/yaph/logya/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/yaph/logya/statuses/{sha}",
"languages_url": "https://api.github.com/repos/yaph/logya/languages",
"stargazers_url": "https://api.github.com/repos/yaph/logya/stargazers",
"contributors_url": "https://api.github.com/repos/yaph/logya/contributors",
"subscribers_url": "https://api.github.com/repos/yaph/logya/subscribers",
"subscription_url": "https://api.github.com/repos/yaph/logya/subscription",
"commits_url": "https://api.github.com/repos/yaph/logya/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/yaph/logya/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/yaph/logya/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/yaph/logya/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/yaph/logya/contents/{+path}",
"compare_url": "https://api.github.com/repos/yaph/logya/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/yaph/logya/merges",
"archive_url": "https://api.github.com/repos/yaph/logya/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/yaph/logya/downloads",
"issues_url": "https://api.github.com/repos/yaph/logya/issues{/number}",
"pulls_url": "https://api.github.com/repos/yaph/logya/pulls{/number}",
"milestones_url": "https://api.github.com/repos/yaph/logya/milestones{/number}",
"notifications_url": "https://api.github.com/repos/yaph/logya/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/yaph/logya/labels{/name}",
"releases_url": "https://api.github.com/repos/yaph/logya/releases{/id}",
"deployments_url": "https://api.github.com/repos/yaph/logya/deployments",
"created_at": "2011-08-24T23:30:26Z",
"updated_at": "2019-04-22T19:02:36Z",
"pushed_at": "2019-04-22T19:02:35Z",
"git_url": "git://github.com/yaph/logya.git",
"ssh_url": "[email protected]:yaph/logya.git",
"clone_url": "https://github.com/yaph/logya.git",
"svn_url": "https://github.com/yaph/logya",
"homepage": "http://ramiro.org/logya/",
"size": 768,
"stargazers_count": 15,
"watchers_count": 15,
"language": "Python",
"has_issues": true,
"has_projects": false,
"has_downloads": true,
"has_wiki": false,
"has_pages": false,
"forks_count": 5,
"mirror_url": null,
"archived": false,
"disabled": false,
"open_issues_count": 9,
"license": {
"key": "mit",
"name": "MIT License",
"spdx_id": "MIT",
"url": "https://api.github.com/licenses/mit",
"node_id": "MDc6TGljZW5zZTEz"
},
"forks": 5,
"open_issues": 9,
"watchers": 15,
"default_branch": "master"
},
{
"id": 4345524,
"node_id": "MDEwOlJlcG9zaXRvcnk0MzQ1NTI0",
"name": "geonamescache",
"full_name": "yaph/geonamescache",
"private": false,
"owner": {
"login": "yaph",
"id": 60051,
"node_id": "MDQ6VXNlcjYwMDUx",
"avatar_url": "https://avatars3.githubusercontent.com/u/60051?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/yaph",
"html_url": "https://github.com/yaph",
"followers_url": "https://api.github.com/users/yaph/followers",
"following_url": "https://api.github.com/users/yaph/following{/other_user}",
"gists_url": "https://api.github.com/users/yaph/gists{/gist_id}",
"starred_url": "https://api.github.com/users/yaph/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/yaph/subscriptions",
"organizations_url": "https://api.github.com/users/yaph/orgs",
"repos_url": "https://api.github.com/users/yaph/repos",
"events_url": "https://api.github.com/users/yaph/events{/privacy}",
"received_events_url": "https://api.github.com/users/yaph/received_events",
"type": "User",
"site_admin": false
},
"html_url": "https://github.com/yaph/geonamescache",
"description": "geonamescache - a Python library for quick access to a subset of GeoNames data.",
"fork": false,
"url": "https://api.github.com/repos/yaph/geonamescache",
"forks_url": "https://api.github.com/repos/yaph/geonamescache/forks",
"keys_url": "https://api.github.com/repos/yaph/geonamescache/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/yaph/geonamescache/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/yaph/geonamescache/teams",
"hooks_url": "https://api.github.com/repos/yaph/geonamescache/hooks",
"issue_events_url": "https://api.github.com/repos/yaph/geonamescache/issues/events{/number}",
"events_url": "https://api.github.com/repos/yaph/geonamescache/events",
"assignees_url": "https://api.github.com/repos/yaph/geonamescache/assignees{/user}",
"branches_url": "https://api.github.com/repos/yaph/geonamescache/branches{/branch}",
"tags_url": "https://api.github.com/repos/yaph/geonamescache/tags",
"blobs_url": "https://api.github.com/repos/yaph/geonamescache/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/yaph/geonamescache/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/yaph/geonamescache/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/yaph/geonamescache/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/yaph/geonamescache/statuses/{sha}",
"languages_url": "https://api.github.com/repos/yaph/geonamescache/languages",
"stargazers_url": "https://api.github.com/repos/yaph/geonamescache/stargazers",
"contributors_url": "https://api.github.com/repos/yaph/geonamescache/contributors",
"subscribers_url": "https://api.github.com/repos/yaph/geonamescache/subscribers",
"subscription_url": "https://api.github.com/repos/yaph/geonamescache/subscription",
"commits_url": "https://api.github.com/repos/yaph/geonamescache/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/yaph/geonamescache/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/yaph/geonamescache/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/yaph/geonamescache/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/yaph/geonamescache/contents/{+path}",
"compare_url": "https://api.github.com/repos/yaph/geonamescache/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/yaph/geonamescache/merges",
"archive_url": "https://api.github.com/repos/yaph/geonamescache/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/yaph/geonamescache/downloads",
"issues_url": "https://api.github.com/repos/yaph/geonamescache/issues{/number}",
"pulls_url": "https://api.github.com/repos/yaph/geonamescache/pulls{/number}",
"milestones_url": "https://api.github.com/repos/yaph/geonamescache/milestones{/number}",
"notifications_url": "https://api.github.com/repos/yaph/geonamescache/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/yaph/geonamescache/labels{/name}",
"releases_url": "https://api.github.com/repos/yaph/geonamescache/releases{/id}",
"deployments_url": "https://api.github.com/repos/yaph/geonamescache/deployments",
"created_at": "2012-05-16T09:49:21Z",
"updated_at": "2019-04-16T09:37:22Z",
"pushed_at": "2019-04-16T09:37:21Z",
"git_url": "git://github.com/yaph/geonamescache.git",
"ssh_url": "[email protected]:yaph/geonamescache.git",
"clone_url": "https://github.com/yaph/geonamescache.git",
"svn_url": "https://github.com/yaph/geonamescache",
"homepage": "https://pypi.org/project/geonamescache/",
"size": 7718,
"stargazers_count": 34,
"watchers_count": 34,
"language": "Python",
"has_issues": true,
"has_projects": true,
"has_downloads": true,
"has_wiki": true,
"has_pages": false,
"forks_count": 20,
"mirror_url": null,
"archived": false,
"disabled": false,
"open_issues_count": 5,
"license": {
"key": "mit",
"name": "MIT License",
"spdx_id": "MIT",
"url": "https://api.github.com/licenses/mit",
"node_id": "MDc6TGljZW5zZTEz"
},
"forks": 20,
"open_issues": 5,
"watchers": 34,
"default_branch": "master"
},
{
"id": 175491167,
"node_id": "MDEwOlJlcG9zaXRvcnkxNzU0OTExNjc=",
"name": "webpack.js.org",
"full_name": "yaph/webpack.js.org",
"private": false,
"owner": {
"login": "yaph",
"id": 60051,
"node_id": "MDQ6VXNlcjYwMDUx",
"avatar_url": "https://avatars3.githubusercontent.com/u/60051?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/yaph",
"html_url": "https://github.com/yaph",
"followers_url": "https://api.github.com/users/yaph/followers",
"following_url": "https://api.github.com/users/yaph/following{/other_user}",
"gists_url": "https://api.github.com/users/yaph/gists{/gist_id}",
"starred_url": "https://api.github.com/users/yaph/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/yaph/subscriptions",
"organizations_url": "https://api.github.com/users/yaph/orgs",
"repos_url": "https://api.github.com/users/yaph/repos",
"events_url": "https://api.github.com/users/yaph/events{/privacy}",
"received_events_url": "https://api.github.com/users/yaph/received_events",
"type": "User",
"site_admin": false
},
"html_url": "https://github.com/yaph/webpack.js.org",
"description": "Repository for webpack documentation and more!",
"fork": true,
"url": "https://api.github.com/repos/yaph/webpack.js.org",
"forks_url": "https://api.github.com/repos/yaph/webpack.js.org/forks",
"keys_url": "https://api.github.com/repos/yaph/webpack.js.org/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/yaph/webpack.js.org/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/yaph/webpack.js.org/teams",
"hooks_url": "https://api.github.com/repos/yaph/webpack.js.org/hooks",
"issue_events_url": "https://api.github.com/repos/yaph/webpack.js.org/issues/events{/number}",
"events_url": "https://api.github.com/repos/yaph/webpack.js.org/events",
"assignees_url": "https://api.github.com/repos/yaph/webpack.js.org/assignees{/user}",
"branches_url": "https://api.github.com/repos/yaph/webpack.js.org/branches{/branch}",
"tags_url": "https://api.github.com/repos/yaph/webpack.js.org/tags",
"blobs_url": "https://api.github.com/repos/yaph/webpack.js.org/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/yaph/webpack.js.org/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/yaph/webpack.js.org/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/yaph/webpack.js.org/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/yaph/webpack.js.org/statuses/{sha}",
"languages_url": "https://api.github.com/repos/yaph/webpack.js.org/languages",
"stargazers_url": "https://api.github.com/repos/yaph/webpack.js.org/stargazers",
"contributors_url": "https://api.github.com/repos/yaph/webpack.js.org/contributors",
"subscribers_url": "https://api.github.com/repos/yaph/webpack.js.org/subscribers",
"subscription_url": "https://api.github.com/repos/yaph/webpack.js.org/subscription",
"commits_url": "https://api.github.com/repos/yaph/webpack.js.org/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/yaph/webpack.js.org/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/yaph/webpack.js.org/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/yaph/webpack.js.org/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/yaph/webpack.js.org/contents/{+path}",
"compare_url": "https://api.github.com/repos/yaph/webpack.js.org/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/yaph/webpack.js.org/merges",
"archive_url": "https://api.github.com/repos/yaph/webpack.js.org/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/yaph/webpack.js.org/downloads",
"issues_url": "https://api.github.com/repos/yaph/webpack.js.org/issues{/number}",
"pulls_url": "https://api.github.com/repos/yaph/webpack.js.org/pulls{/number}",
"milestones_url": "https://api.github.com/repos/yaph/webpack.js.org/milestones{/number}",
"notifications_url": "https://api.github.com/repos/yaph/webpack.js.org/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/yaph/webpack.js.org/labels{/name}",
"releases_url": "https://api.github.com/repos/yaph/webpack.js.org/releases{/id}",
"deployments_url": "https://api.github.com/repos/yaph/webpack.js.org/deployments",
"created_at": "2019-03-13T20:07:56Z",
"updated_at": "2019-03-13T20:08:16Z",
"pushed_at": "2019-03-14T15:08:09Z",
"git_url": "git://github.com/yaph/webpack.js.org.git",
"ssh_url": "[email protected]:yaph/webpack.js.org.git",
"clone_url": "https://github.com/yaph/webpack.js.org.git",
"svn_url": "https://github.com/yaph/webpack.js.org",
"homepage": "https://webpack.js.org",
"size": 64522,
"stargazers_count": 0,
"watchers_count": 0,
"language": "JavaScript",
"has_issues": false,
"has_projects": true,
"has_downloads": true,
"has_wiki": false,
"has_pages": false,
"forks_count": 0,
"mirror_url": null,
"archived": false,
"disabled": false,
"open_issues_count": 0,
"license": {
"key": "cc-by-4.0",
"name": "Creative Commons Attribution 4.0 International",
"spdx_id": "CC-BY-4.0",
"url": "https://api.github.com/licenses/cc-by-4.0",
"node_id": "MDc6TGljZW5zZTI1"
},
"forks": 0,
"open_issues": 0,
"watchers": 0,
"default_branch": "master"
},
{
"id": 77450068,
"node_id": "MDEwOlJlcG9zaXRvcnk3NzQ1MDA2OA==",
"name": "spaghetti-western.de",
"full_name": "yaph/spaghetti-western.de",
"private": false,
"owner": {
"login": "yaph",
"id": 60051,
"node_id": "MDQ6VXNlcjYwMDUx",
"avatar_url": "https://avatars3.githubusercontent.com/u/60051?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/yaph",
"html_url": "https://github.com/yaph",
"followers_url": "https://api.github.com/users/yaph/followers",
"following_url": "https://api.github.com/users/yaph/following{/other_user}",
"gists_url": "https://api.github.com/users/yaph/gists{/gist_id}",
"starred_url": "https://api.github.com/users/yaph/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/yaph/subscriptions",
"organizations_url": "https://api.github.com/users/yaph/orgs",
"repos_url": "https://api.github.com/users/yaph/repos",
"events_url": "https://api.github.com/users/yaph/events{/privacy}",
"received_events_url": "https://api.github.com/users/yaph/received_events",
"type": "User",
"site_admin": false
},
"html_url": "https://github.com/yaph/spaghetti-western.de",
"description": null,
"fork": false,
"url": "https://api.github.com/repos/yaph/spaghetti-western.de",
"forks_url": "https://api.github.com/repos/yaph/spaghetti-western.de/forks",
"keys_url": "https://api.github.com/repos/yaph/spaghetti-western.de/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/yaph/spaghetti-western.de/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/yaph/spaghetti-western.de/teams",
"hooks_url": "https://api.github.com/repos/yaph/spaghetti-western.de/hooks",
"issue_events_url": "https://api.github.com/repos/yaph/spaghetti-western.de/issues/events{/number}",
"events_url": "https://api.github.com/repos/yaph/spaghetti-western.de/events",
"assignees_url": "https://api.github.com/repos/yaph/spaghetti-western.de/assignees{/user}",
"branches_url": "https://api.github.com/repos/yaph/spaghetti-western.de/branches{/branch}",
"tags_url": "https://api.github.com/repos/yaph/spaghetti-western.de/tags",
"blobs_url": "https://api.github.com/repos/yaph/spaghetti-western.de/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/yaph/spaghetti-western.de/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/yaph/spaghetti-western.de/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/yaph/spaghetti-western.de/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/yaph/spaghetti-western.de/statuses/{sha}",
"languages_url": "https://api.github.com/repos/yaph/spaghetti-western.de/languages",
"stargazers_url": "https://api.github.com/repos/yaph/spaghetti-western.de/stargazers",
"contributors_url": "https://api.github.com/repos/yaph/spaghetti-western.de/contributors",
"subscribers_url": "https://api.github.com/repos/yaph/spaghetti-western.de/subscribers",
"subscription_url": "https://api.github.com/repos/yaph/spaghetti-western.de/subscription",
"commits_url": "https://api.github.com/repos/yaph/spaghetti-western.de/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/yaph/spaghetti-western.de/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/yaph/spaghetti-western.de/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/yaph/spaghetti-western.de/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/yaph/spaghetti-western.de/contents/{+path}",
"compare_url": "https://api.github.com/repos/yaph/spaghetti-western.de/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/yaph/spaghetti-western.de/merges",
"archive_url": "https://api.github.com/repos/yaph/spaghetti-western.de/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/yaph/spaghetti-western.de/downloads",
"issues_url": "https://api.github.com/repos/yaph/spaghetti-western.de/issues{/number}",
"pulls_url": "https://api.github.com/repos/yaph/spaghetti-western.de/pulls{/number}",
"milestones_url": "https://api.github.com/repos/yaph/spaghetti-western.de/milestones{/number}",
"notifications_url": "https://api.github.com/repos/yaph/spaghetti-western.de/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/yaph/spaghetti-western.de/labels{/name}",
"releases_url": "https://api.github.com/repos/yaph/spaghetti-western.de/releases{/id}",
"deployments_url": "https://api.github.com/repos/yaph/spaghetti-western.de/deployments",
"created_at": "2016-12-27T11:21:05Z",
"updated_at": "2019-02-25T23:58:37Z",
"pushed_at": "2019-02-25T23:58:05Z",
"git_url": "git://github.com/yaph/spaghetti-western.de.git",
"ssh_url": "[email protected]:yaph/spaghetti-western.de.git",
"clone_url": "https://github.com/yaph/spaghetti-western.de.git",
"svn_url": "https://github.com/yaph/spaghetti-western.de",
"homepage": "https://www.spaghetti-western.de/",
"size": 8023,
"stargazers_count": 0,
"watchers_count": 0,
"language": "HTML",
"has_issues": false,
"has_projects": false,
"has_downloads": true,
"has_wiki": false,
"has_pages": true,
"forks_count": 0,
"mirror_url": null,
"archived": false,
"disabled": false,
"open_issues_count": 0,
"license": null,
"forks": 0,
"open_issues": 0,
"watchers": 0,
"default_branch": "master"
},
{
"id": 169475375,
"node_id": "MDEwOlJlcG9zaXRvcnkxNjk0NzUzNzU=",
"name": "free-programming-books",
"full_name": "yaph/free-programming-books",
"private": false,
"owner": {
"login": "yaph",
"id": 60051,
"node_id": "MDQ6VXNlcjYwMDUx",
"avatar_url": "https://avatars3.githubusercontent.com/u/60051?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/yaph",
"html_url": "https://github.com/yaph",
"followers_url": "https://api.github.com/users/yaph/followers",
"following_url": "https://api.github.com/users/yaph/following{/other_user}",
"gists_url": "https://api.github.com/users/yaph/gists{/gist_id}",
"starred_url": "https://api.github.com/users/yaph/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/yaph/subscriptions",
"organizations_url": "https://api.github.com/users/yaph/orgs",
"repos_url": "https://api.github.com/users/yaph/repos",
"events_url": "https://api.github.com/users/yaph/events{/privacy}",
"received_events_url": "https://api.github.com/users/yaph/received_events",
"type": "User",
"site_admin": false
},
"html_url": "https://github.com/yaph/free-programming-books",
"description": ":books: Freely available programming books",
"fork": true,
"url": "https://api.github.com/repos/yaph/free-programming-books",
"forks_url": "https://api.github.com/repos/yaph/free-programming-books/forks",
"keys_url": "https://api.github.com/repos/yaph/free-programming-books/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/yaph/free-programming-books/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/yaph/free-programming-books/teams",
"hooks_url": "https://api.github.com/repos/yaph/free-programming-books/hooks",
"issue_events_url": "https://api.github.com/repos/yaph/free-programming-books/issues/events{/number}",
"events_url": "https://api.github.com/repos/yaph/free-programming-books/events",
"assignees_url": "https://api.github.com/repos/yaph/free-programming-books/assignees{/user}",
"branches_url": "https://api.github.com/repos/yaph/free-programming-books/branches{/branch}",
"tags_url": "https://api.github.com/repos/yaph/free-programming-books/tags",
"blobs_url": "https://api.github.com/repos/yaph/free-programming-books/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/yaph/free-programming-books/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/yaph/free-programming-books/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/yaph/free-programming-books/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/yaph/free-programming-books/statuses/{sha}",
"languages_url": "https://api.github.com/repos/yaph/free-programming-books/languages",
"stargazers_url": "https://api.github.com/repos/yaph/free-programming-books/stargazers",
"contributors_url": "https://api.github.com/repos/yaph/free-programming-books/contributors",
"subscribers_url": "https://api.github.com/repos/yaph/free-programming-books/subscribers",
"subscription_url": "https://api.github.com/repos/yaph/free-programming-books/subscription",
"commits_url": "https://api.github.com/repos/yaph/free-programming-books/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/yaph/free-programming-books/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/yaph/free-programming-books/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/yaph/free-programming-books/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/yaph/free-programming-books/contents/{+path}",
"compare_url": "https://api.github.com/repos/yaph/free-programming-books/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/yaph/free-programming-books/merges",
"archive_url": "https://api.github.com/repos/yaph/free-programming-books/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/yaph/free-programming-books/downloads",
"issues_url": "https://api.github.com/repos/yaph/free-programming-books/issues{/number}",
"pulls_url": "https://api.github.com/repos/yaph/free-programming-books/pulls{/number}",
"milestones_url": "https://api.github.com/repos/yaph/free-programming-books/milestones{/number}",
"notifications_url": "https://api.github.com/repos/yaph/free-programming-books/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/yaph/free-programming-books/labels{/name}",
"releases_url": "https://api.github.com/repos/yaph/free-programming-books/releases{/id}",
"deployments_url": "https://api.github.com/repos/yaph/free-programming-books/deployments",
"created_at": "2019-02-06T20:55:47Z",
"updated_at": "2019-02-06T20:55:50Z",
"pushed_at": "2019-02-06T21:05:40Z",
"git_url": "git://github.com/yaph/free-programming-books.git",
"ssh_url": "[email protected]:yaph/free-programming-books.git",
"clone_url": "https://github.com/yaph/free-programming-books.git",
"svn_url": "https://github.com/yaph/free-programming-books",
"homepage": "https://ebookfoundation.github.io/free-programming-books/",
"size": 4696,
"stargazers_count": 0,
"watchers_count": 0,
"language": null,
"has_issues": false,
"has_projects": true,
"has_downloads": true,
"has_wiki": true,
"has_pages": false,
"forks_count": 0,
"mirror_url": null,
"archived": false,
"disabled": false,
"open_issues_count": 0,
"license": {
"key": "other",
"name": "Other",
"spdx_id": "NOASSERTION",
"url": null,
"node_id": "MDc6TGljZW5zZTA="
},
"forks": 0,
"open_issues": 0,
"watchers": 0,
"default_branch": "master"
},
{
"id": 4558647,
"node_id": "MDEwOlJlcG9zaXRvcnk0NTU4NjQ3",
"name": "git-tools",
"full_name": "yaph/git-tools",
"private": false,
"owner": {
"login": "yaph",
"id": 60051,
"node_id": "MDQ6VXNlcjYwMDUx",
"avatar_url": "https://avatars3.githubusercontent.com/u/60051?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/yaph",
"html_url": "https://github.com/yaph",
"followers_url": "https://api.github.com/users/yaph/followers",
"following_url": "https://api.github.com/users/yaph/following{/other_user}",
"gists_url": "https://api.github.com/users/yaph/gists{/gist_id}",