51学通信论坛2017新版

标题: 查询github的热门python项目的API调用方式 [打印本页]

作者: admin    时间: 2019-6-29 21:37
标题: 查询github的热门python项目的API调用方式
直接:https://api.github.com/search/repositories?q=language:python&sort=stars
就可以调用。这个就是github提供的API。
这个调用返回GitHub当前托管了多少个Python项目,还有有关最受欢迎的Python仓库的信息。
下面来仔细研究这个调用。第一部分(https://api.github.com/)将请求发送到GitHub网站中响应API调用的部分;接下来的一部分(search/repositories)让API搜索GitHub上的所有仓库。
repositories后面的问号指出我们要传递一个实参。q表示查询,而等号让我们能够开始指定查询(q=)。通过使用language:python,我们指出只想获取主要语言为Python的仓库的信息。最后一部分(&sort=stars)指定将项目按其获得的星级进行排序。

返回结果如下(20190629的结果):
  1. {
  2.   "total_count": 3955988,
  3.   "incomplete_results": false,
  4.   "items": [
  5.     {
  6.       "id": 21289110,
  7.       "node_id": "MDEwOlJlcG9zaXRvcnkyMTI4OTExMA==",
  8.       "name": "awesome-python",
  9.       "full_name": "vinta/awesome-python",
  10.       "private": false,
  11.       "owner": {
  12.         "login": "vinta",
  13.         "id": 652070,
  14.         "node_id": "MDQ6VXNlcjY1MjA3MA==",
  15.         "avatar_url": "https://avatars2.githubusercontent.com/u/652070?v=4",
  16.         "gravatar_id": "",
  17.         "url": "https://api.github.com/users/vinta",
  18.         "html_url": "https://github.com/vinta",
  19.         "followers_url": "https://api.github.com/users/vinta/followers",
  20.         "following_url": "https://api.github.com/users/vinta/following{/other_user}",
  21.         "gists_url": "https://api.github.com/users/vinta/gists{/gist_id}",
  22.         "starred_url": "https://api.github.com/users/vinta/starred{/owner}{/repo}",
  23.         "subscriptions_url": "https://api.github.com/users/vinta/subscriptions",
  24.         "organizations_url": "https://api.github.com/users/vinta/orgs",
  25.         "repos_url": "https://api.github.com/users/vinta/repos",
  26.         "events_url": "https://api.github.com/users/vinta/events{/privacy}",
  27.         "received_events_url": "https://api.github.com/users/vinta/received_events",
  28.         "type": "User",
  29.         "site_admin": false
  30.       },
  31.       "html_url": "https://github.com/vinta/awesome-python",
  32.       "description": "A curated list of awesome Python frameworks, libraries, software and resources",
  33.       "fork": false,
  34.       "url": "https://api.github.com/repos/vinta/awesome-python",
  35.       "forks_url": "https://api.github.com/repos/vinta/awesome-python/forks",
  36.       "keys_url": "https://api.github.com/repos/vinta/awesome-python/keys{/key_id}",
  37.       "collaborators_url": "https://api.github.com/repos/vinta/awesome-python/collaborators{/collaborator}",
  38.       "teams_url": "https://api.github.com/repos/vinta/awesome-python/teams",
  39.       "hooks_url": "https://api.github.com/repos/vinta/awesome-python/hooks",
  40.       "issue_events_url": "https://api.github.com/repos/vinta/awesome-python/issues/events{/number}",
  41.       "events_url": "https://api.github.com/repos/vinta/awesome-python/events",
  42.       "assignees_url": "https://api.github.com/repos/vinta/awesome-python/assignees{/user}",
  43.       "branches_url": "https://api.github.com/repos/vinta/awesome-python/branches{/branch}",
  44.       "tags_url": "https://api.github.com/repos/vinta/awesome-python/tags",
  45.       "blobs_url": "https://api.github.com/repos/vinta/awesome-python/git/blobs{/sha}",
  46.       "git_tags_url": "https://api.github.com/repos/vinta/awesome-python/git/tags{/sha}",
  47.       "git_refs_url": "https://api.github.com/repos/vinta/awesome-python/git/refs{/sha}",
  48.       "trees_url": "https://api.github.com/repos/vinta/awesome-python/git/trees{/sha}",
  49.       "statuses_url": "https://api.github.com/repos/vinta/awesome-python/statuses/{sha}",
  50.       "languages_url": "https://api.github.com/repos/vinta/awesome-python/languages",
  51.       "stargazers_url": "https://api.github.com/repos/vinta/awesome-python/stargazers",
  52.       "contributors_url": "https://api.github.com/repos/vinta/awesome-python/contributors",
  53.       "subscribers_url": "https://api.github.com/repos/vinta/awesome-python/subscribers",
  54.       "subscription_url": "https://api.github.com/repos/vinta/awesome-python/subscription",
  55.       "commits_url": "https://api.github.com/repos/vinta/awesome-python/commits{/sha}",
  56.       "git_commits_url": "https://api.github.com/repos/vinta/awesome-python/git/commits{/sha}",
  57.       "comments_url": "https://api.github.com/repos/vinta/awesome-python/comments{/number}",
  58.       "issue_comment_url": "https://api.github.com/repos/vinta/awesome-python/issues/comments{/number}",
  59.       "contents_url": "https://api.github.com/repos/vinta/awesome-python/contents/{+path}",
  60.       "compare_url": "https://api.github.com/repos/vinta/awesome-python/compare/{base}...{head}",
  61.       "merges_url": "https://api.github.com/repos/vinta/awesome-python/merges",
  62.       "archive_url": "https://api.github.com/repos/vinta/awesome-python/{archive_format}{/ref}",
  63.       "downloads_url": "https://api.github.com/repos/vinta/awesome-python/downloads",
  64.       "issues_url": "https://api.github.com/repos/vinta/awesome-python/issues{/number}",
  65.       "pulls_url": "https://api.github.com/repos/vinta/awesome-python/pulls{/number}",
  66.       "milestones_url": "https://api.github.com/repos/vinta/awesome-python/milestones{/number}",
  67.       "notifications_url": "https://api.github.com/repos/vinta/awesome-python/notifications{?since,all,participating}",
  68.       "labels_url": "https://api.github.com/repos/vinta/awesome-python/labels{/name}",
  69.       "releases_url": "https://api.github.com/repos/vinta/awesome-python/releases{/id}",
  70.       "deployments_url": "https://api.github.com/repos/vinta/awesome-python/deployments",
  71.       "created_at": "2014-06-27T21:00:06Z",
  72.       "updated_at": "2019-06-29T13:33:36Z",
  73.       "pushed_at": "2019-06-28T10:34:52Z",
  74.       "git_url": "git://github.com/vinta/awesome-python.git",
  75.       "ssh_url": "git@github.com:vinta/awesome-python.git",
  76.       "clone_url": "https://github.com/vinta/awesome-python.git",
  77.       "svn_url": "https://github.com/vinta/awesome-python",
  78.       "homepage": "https://awesome-python.com/",
  79.       "size": 4914,
  80.       "stargazers_count": 69308,
  81.       "watchers_count": 69308,
  82.       "language": "Python",
  83.       "has_issues": true,
  84.       "has_projects": false,
  85.       "has_downloads": true,
  86.       "has_wiki": false,
  87.       "has_pages": true,
  88.       "forks_count": 13500,
  89.       "mirror_url": null,
  90.       "archived": false,
  91.       "disabled": false,
  92.       "open_issues_count": 461,
  93.       "license": {
  94.         "key": "other",
  95.         "name": "Other",
  96.         "spdx_id": "NOASSERTION",
  97.         "url": null,
  98.         "node_id": "MDc6TGljZW5zZTA="
  99.       },
  100.       "forks": 13500,
  101.       "open_issues": 461,
  102.       "watchers": 69308,
  103.       "default_branch": "master",
  104.       "score": 1.0
  105.     },
  106.     {
  107.       "id": 83222441,
  108.       "node_id": "MDEwOlJlcG9zaXRvcnk4MzIyMjQ0MQ==",
  109.       "name": "system-design-primer",
  110.       "full_name": "donnemartin/system-design-primer",
  111.       "private": false,
  112.       "owner": {
  113.         "login": "donnemartin",
  114.         "id": 5458997,
  115.         "node_id": "MDQ6VXNlcjU0NTg5OTc=",
  116.         "avatar_url": "https://avatars2.githubusercontent.com/u/5458997?v=4",
  117.         "gravatar_id": "",
  118.         "url": "https://api.github.com/users/donnemartin",
  119.         "html_url": "https://github.com/donnemartin",
  120.         "followers_url": "https://api.github.com/users/donnemartin/followers",
  121.         "following_url": "https://api.github.com/users/donnemartin/following{/other_user}",
  122.         "gists_url": "https://api.github.com/users/donnemartin/gists{/gist_id}",
  123.         "starred_url": "https://api.github.com/users/donnemartin/starred{/owner}{/repo}",
  124.         "subscriptions_url": "https://api.github.com/users/donnemartin/subscriptions",
  125.         "organizations_url": "https://api.github.com/users/donnemartin/orgs",
  126.         "repos_url": "https://api.github.com/users/donnemartin/repos",
  127.         "events_url": "https://api.github.com/users/donnemartin/events{/privacy}",
  128.         "received_events_url": "https://api.github.com/users/donnemartin/received_events",
  129.         "type": "User",
  130.         "site_admin": false
  131.       },
  132.       "html_url": "https://github.com/donnemartin/system-design-primer",
  133.       "description": "Learn how to design large-scale systems. Prep for the system design interview.  Includes Anki flashcards.",
  134.       "fork": false,
  135.       "url": "https://api.github.com/repos/donnemartin/system-design-primer",
  136.       "forks_url": "https://api.github.com/repos/donnemartin/system-design-primer/forks",
  137.       "keys_url": "https://api.github.com/repos/donnemartin/system-design-primer/keys{/key_id}",
  138.       "collaborators_url": "https://api.github.com/repos/donnemartin/system-design-primer/collaborators{/collaborator}",
  139.       "teams_url": "https://api.github.com/repos/donnemartin/system-design-primer/teams",
  140.       "hooks_url": "https://api.github.com/repos/donnemartin/system-design-primer/hooks",
  141.       "issue_events_url": "https://api.github.com/repos/donnemartin/system-design-primer/issues/events{/number}",
  142.       "events_url": "https://api.github.com/repos/donnemartin/system-design-primer/events",
  143.       "assignees_url": "https://api.github.com/repos/donnemartin/system-design-primer/assignees{/user}",
  144.       "branches_url": "https://api.github.com/repos/donnemartin/system-design-primer/branches{/branch}",
  145.       "tags_url": "https://api.github.com/repos/donnemartin/system-design-primer/tags",
  146.       "blobs_url": "https://api.github.com/repos/donnemartin/system-design-primer/git/blobs{/sha}",
  147.       "git_tags_url": "https://api.github.com/repos/donnemartin/system-design-primer/git/tags{/sha}",
  148.       "git_refs_url": "https://api.github.com/repos/donnemartin/system-design-primer/git/refs{/sha}",
  149.       "trees_url": "https://api.github.com/repos/donnemartin/system-design-primer/git/trees{/sha}",
  150.       "statuses_url": "https://api.github.com/repos/donnemartin/system-design-primer/statuses/{sha}",
  151.       "languages_url": "https://api.github.com/repos/donnemartin/system-design-primer/languages",
  152.       "stargazers_url": "https://api.github.com/repos/donnemartin/system-design-primer/stargazers",
  153.       "contributors_url": "https://api.github.com/repos/donnemartin/system-design-primer/contributors",
  154.       "subscribers_url": "https://api.github.com/repos/donnemartin/system-design-primer/subscribers",
  155.       "subscription_url": "https://api.github.com/repos/donnemartin/system-design-primer/subscription",
  156.       "commits_url": "https://api.github.com/repos/donnemartin/system-design-primer/commits{/sha}",
  157.       "git_commits_url": "https://api.github.com/repos/donnemartin/system-design-primer/git/commits{/sha}",
  158.       "comments_url": "https://api.github.com/repos/donnemartin/system-design-primer/comments{/number}",
  159.       "issue_comment_url": "https://api.github.com/repos/donnemartin/system-design-primer/issues/comments{/number}",
  160.       "contents_url": "https://api.github.com/repos/donnemartin/system-design-primer/contents/{+path}",
  161.       "compare_url": "https://api.github.com/repos/donnemartin/system-design-primer/compare/{base}...{head}",
  162.       "merges_url": "https://api.github.com/repos/donnemartin/system-design-primer/merges",
  163.       "archive_url": "https://api.github.com/repos/donnemartin/system-design-primer/{archive_format}{/ref}",
  164.       "downloads_url": "https://api.github.com/repos/donnemartin/system-design-primer/downloads",
  165.       "issues_url": "https://api.github.com/repos/donnemartin/system-design-primer/issues{/number}",
  166.       "pulls_url": "https://api.github.com/repos/donnemartin/system-design-primer/pulls{/number}",
  167.       "milestones_url": "https://api.github.com/repos/donnemartin/system-design-primer/milestones{/number}",
  168.       "notifications_url": "https://api.github.com/repos/donnemartin/system-design-primer/notifications{?since,all,participating}",
  169.       "labels_url": "https://api.github.com/repos/donnemartin/system-design-primer/labels{/name}",
  170.       "releases_url": "https://api.github.com/repos/donnemartin/system-design-primer/releases{/id}",
  171.       "deployments_url": "https://api.github.com/repos/donnemartin/system-design-primer/deployments",
  172.       "created_at": "2017-02-26T16:15:28Z",
  173.       "updated_at": "2019-06-29T13:35:15Z",
  174.       "pushed_at": "2019-06-26T17:57:47Z",
  175.       "git_url": "git://github.com/donnemartin/system-design-primer.git",
  176.       "ssh_url": "git@github.com:donnemartin/system-design-primer.git",
  177.       "clone_url": "https://github.com/donnemartin/system-design-primer.git",
  178.       "svn_url": "https://github.com/donnemartin/system-design-primer",
  179.       "homepage": "",
  180.       "size": 4233,
  181.       "stargazers_count": 68226,
  182.       "watchers_count": 68226,
  183.       "language": "Python",
  184.       "has_issues": true,
  185.       "has_projects": true,
  186.       "has_downloads": true,
  187.       "has_wiki": true,
  188.       "has_pages": false,
  189.       "forks_count": 10499,
  190.       "mirror_url": null,
  191.       "archived": false,
  192.       "disabled": false,
  193.       "open_issues_count": 93,
  194.       "license": {
  195.         "key": "other",
  196.         "name": "Other",
  197.         "spdx_id": "NOASSERTION",
  198.         "url": null,
  199.         "node_id": "MDc6TGljZW5zZTA="
  200.       },
  201.       "forks": 10499,
  202.       "open_issues": 93,
  203.       "watchers": 68226,
  204.       "default_branch": "master",
  205.       "score": 1.0
  206.     },
  207.     {
  208.       "id": 54346799,
  209.       "node_id": "MDEwOlJlcG9zaXRvcnk1NDM0Njc5OQ==",
  210.       "name": "public-apis",
  211.       "full_name": "public-apis/public-apis",
  212.       "private": false,
  213.       "owner": {
  214.         "login": "public-apis",
  215.         "id": 51121562,
  216.         "node_id": "MDEyOk9yZ2FuaXphdGlvbjUxMTIxNTYy",
  217.         "avatar_url": "https://avatars0.githubusercontent.com/u/51121562?v=4",
  218.         "gravatar_id": "",
  219.         "url": "https://api.github.com/users/public-apis",
  220.         "html_url": "https://github.com/public-apis",
  221.         "followers_url": "https://api.github.com/users/public-apis/followers",
  222.         "following_url": "https://api.github.com/users/public-apis/following{/other_user}",
  223.         "gists_url": "https://api.github.com/users/public-apis/gists{/gist_id}",
  224.         "starred_url": "https://api.github.com/users/public-apis/starred{/owner}{/repo}",
  225.         "subscriptions_url": "https://api.github.com/users/public-apis/subscriptions",
  226.         "organizations_url": "https://api.github.com/users/public-apis/orgs",
  227.         "repos_url": "https://api.github.com/users/public-apis/repos",
  228.         "events_url": "https://api.github.com/users/public-apis/events{/privacy}",
  229.         "received_events_url": "https://api.github.com/users/public-apis/received_events",
  230.         "type": "Organization",
  231.         "site_admin": false
  232.       },
  233.       "html_url": "https://github.com/public-apis/public-apis",
  234.       "description": "A collective list of free APIs for use in software and web development.",
  235.       "fork": false,
  236.       "url": "https://api.github.com/repos/public-apis/public-apis",
  237.       "forks_url": "https://api.github.com/repos/public-apis/public-apis/forks",
  238.       "keys_url": "https://api.github.com/repos/public-apis/public-apis/keys{/key_id}",
  239.       "collaborators_url": "https://api.github.com/repos/public-apis/public-apis/collaborators{/collaborator}",
  240.       "teams_url": "https://api.github.com/repos/public-apis/public-apis/teams",
  241.       "hooks_url": "https://api.github.com/repos/public-apis/public-apis/hooks",
  242.       "issue_events_url": "https://api.github.com/repos/public-apis/public-apis/issues/events{/number}",
  243.       "events_url": "https://api.github.com/repos/public-apis/public-apis/events",
  244.       "assignees_url": "https://api.github.com/repos/public-apis/public-apis/assignees{/user}",
  245.       "branches_url": "https://api.github.com/repos/public-apis/public-apis/branches{/branch}",
  246.       "tags_url": "https://api.github.com/repos/public-apis/public-apis/tags",
  247.       "blobs_url": "https://api.github.com/repos/public-apis/public-apis/git/blobs{/sha}",
  248.       "git_tags_url": "https://api.github.com/repos/public-apis/public-apis/git/tags{/sha}",
  249.       "git_refs_url": "https://api.github.com/repos/public-apis/public-apis/git/refs{/sha}",
  250.       "trees_url": "https://api.github.com/repos/public-apis/public-apis/git/trees{/sha}",
  251.       "statuses_url": "https://api.github.com/repos/public-apis/public-apis/statuses/{sha}",
  252.       "languages_url": "https://api.github.com/repos/public-apis/public-apis/languages",
  253.       "stargazers_url": "https://api.github.com/repos/public-apis/public-apis/stargazers",
  254.       "contributors_url": "https://api.github.com/repos/public-apis/public-apis/contributors",
  255.       "subscribers_url": "https://api.github.com/repos/public-apis/public-apis/subscribers",
  256.       "subscription_url": "https://api.github.com/repos/public-apis/public-apis/subscription",
  257.       "commits_url": "https://api.github.com/repos/public-apis/public-apis/commits{/sha}",
  258.       "git_commits_url": "https://api.github.com/repos/public-apis/public-apis/git/commits{/sha}",
  259.       "comments_url": "https://api.github.com/repos/public-apis/public-apis/comments{/number}",
  260.       "issue_comment_url": "https://api.github.com/repos/public-apis/public-apis/issues/comments{/number}",
  261.       "contents_url": "https://api.github.com/repos/public-apis/public-apis/contents/{+path}",
  262.       "compare_url": "https://api.github.com/repos/public-apis/public-apis/compare/{base}...{head}",
  263.       "merges_url": "https://api.github.com/repos/public-apis/public-apis/merges",
  264.       "archive_url": "https://api.github.com/repos/public-apis/public-apis/{archive_format}{/ref}",
  265.       "downloads_url": "https://api.github.com/repos/public-apis/public-apis/downloads",
  266.       "issues_url": "https://api.github.com/repos/public-apis/public-apis/issues{/number}",
  267.       "pulls_url": "https://api.github.com/repos/public-apis/public-apis/pulls{/number}",
  268.       "milestones_url": "https://api.github.com/repos/public-apis/public-apis/milestones{/number}",
  269.       "notifications_url": "https://api.github.com/repos/public-apis/public-apis/notifications{?since,all,participating}",
  270.       "labels_url": "https://api.github.com/repos/public-apis/public-apis/labels{/name}",
  271.       "releases_url": "https://api.github.com/repos/public-apis/public-apis/releases{/id}",
  272.       "deployments_url": "https://api.github.com/repos/public-apis/public-apis/deployments",
  273.       "created_at": "2016-03-20T23:49:42Z",
  274.       "updated_at": "2019-06-29T13:12:24Z",
  275.       "pushed_at": "2019-06-20T13:53:24Z",
  276.       "git_url": "git://github.com/public-apis/public-apis.git",
  277.       "ssh_url": "git@github.com:public-apis/public-apis.git",
  278.       "clone_url": "https://github.com/public-apis/public-apis.git",
  279.       "svn_url": "https://github.com/public-apis/public-apis",
  280.       "homepage": "https://ultimatecourses.com",
  281.       "size": 2504,
  282.       "stargazers_count": 58507,
  283.       "watchers_count": 58507,
  284.       "language": "Python",
  285.       "has_issues": true,
  286.       "has_projects": true,
  287.       "has_downloads": true,
  288.       "has_wiki": true,
  289.       "has_pages": false,
  290.       "forks_count": 6136,
  291.       "mirror_url": null,
  292.       "archived": false,
  293.       "disabled": false,
  294.       "open_issues_count": 72,
  295.       "license": null,
  296.       "forks": 6136,
  297.       "open_issues": 72,
  298.       "watchers": 58507,
  299.       "default_branch": "master",
  300.       "score": 1.0
  301.     },
  302.     {
  303.       "id": 51117837,
  304.       "node_id": "MDEwOlJlcG9zaXRvcnk1MTExNzgzNw==",
  305.       "name": "models",
  306.       "full_name": "tensorflow/models",
  307.       "private": false,
  308.       "owner": {
  309.         "login": "tensorflow",
  310.         "id": 15658638,
  311.         "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU4NjM4",
  312.         "avatar_url": "https://avatars1.githubusercontent.com/u/15658638?v=4",
  313.         "gravatar_id": "",
  314.         "url": "https://api.github.com/users/tensorflow",
  315.         "html_url": "https://github.com/tensorflow",
  316.         "followers_url": "https://api.github.com/users/tensorflow/followers",
  317.         "following_url": "https://api.github.com/users/tensorflow/following{/other_user}",
  318.         "gists_url": "https://api.github.com/users/tensorflow/gists{/gist_id}",
  319.         "starred_url": "https://api.github.com/users/tensorflow/starred{/owner}{/repo}",
  320.         "subscriptions_url": "https://api.github.com/users/tensorflow/subscriptions",
  321.         "organizations_url": "https://api.github.com/users/tensorflow/orgs",
  322.         "repos_url": "https://api.github.com/users/tensorflow/repos",
  323.         "events_url": "https://api.github.com/users/tensorflow/events{/privacy}",
  324.         "received_events_url": "https://api.github.com/users/tensorflow/received_events",
  325.         "type": "Organization",
  326.         "site_admin": false
  327.       },
  328.       "html_url": "https://github.com/tensorflow/models",
  329.       "description": "Models and examples built with TensorFlow",
  330.       "fork": false,
  331.       "url": "https://api.github.com/repos/tensorflow/models",
  332.       "forks_url": "https://api.github.com/repos/tensorflow/models/forks",
  333.       "keys_url": "https://api.github.com/repos/tensorflow/models/keys{/key_id}",
  334.       "collaborators_url": "https://api.github.com/repos/tensorflow/models/collaborators{/collaborator}",
  335.       "teams_url": "https://api.github.com/repos/tensorflow/models/teams",
  336.       "hooks_url": "https://api.github.com/repos/tensorflow/models/hooks",
  337.       "issue_events_url": "https://api.github.com/repos/tensorflow/models/issues/events{/number}",
  338.       "events_url": "https://api.github.com/repos/tensorflow/models/events",
  339.       "assignees_url": "https://api.github.com/repos/tensorflow/models/assignees{/user}",
  340.       "branches_url": "https://api.github.com/repos/tensorflow/models/branches{/branch}",
  341.       "tags_url": "https://api.github.com/repos/tensorflow/models/tags",
  342.       "blobs_url": "https://api.github.com/repos/tensorflow/models/git/blobs{/sha}",
  343.       "git_tags_url": "https://api.github.com/repos/tensorflow/models/git/tags{/sha}",
  344.       "git_refs_url": "https://api.github.com/repos/tensorflow/models/git/refs{/sha}",
  345.       "trees_url": "https://api.github.com/repos/tensorflow/models/git/trees{/sha}",
  346.       "statuses_url": "https://api.github.com/repos/tensorflow/models/statuses/{sha}",
  347.       "languages_url": "https://api.github.com/repos/tensorflow/models/languages",
  348.       "stargazers_url": "https://api.github.com/repos/tensorflow/models/stargazers",
  349.       "contributors_url": "https://api.github.com/repos/tensorflow/models/contributors",
  350.       "subscribers_url": "https://api.github.com/repos/tensorflow/models/subscribers",
  351.       "subscription_url": "https://api.github.com/repos/tensorflow/models/subscription",
  352.       "commits_url": "https://api.github.com/repos/tensorflow/models/commits{/sha}",
  353.       "git_commits_url": "https://api.github.com/repos/tensorflow/models/git/commits{/sha}",
  354.       "comments_url": "https://api.github.com/repos/tensorflow/models/comments{/number}",
  355.       "issue_comment_url": "https://api.github.com/repos/tensorflow/models/issues/comments{/number}",
  356.       "contents_url": "https://api.github.com/repos/tensorflow/models/contents/{+path}",
  357.       "compare_url": "https://api.github.com/repos/tensorflow/models/compare/{base}...{head}",
  358.       "merges_url": "https://api.github.com/repos/tensorflow/models/merges",
  359.       "archive_url": "https://api.github.com/repos/tensorflow/models/{archive_format}{/ref}",
  360.       "downloads_url": "https://api.github.com/repos/tensorflow/models/downloads",
  361.       "issues_url": "https://api.github.com/repos/tensorflow/models/issues{/number}",
  362.       "pulls_url": "https://api.github.com/repos/tensorflow/models/pulls{/number}",
  363.       "milestones_url": "https://api.github.com/repos/tensorflow/models/milestones{/number}",
  364.       "notifications_url": "https://api.github.com/repos/tensorflow/models/notifications{?since,all,participating}",
  365.       "labels_url": "https://api.github.com/repos/tensorflow/models/labels{/name}",
  366.       "releases_url": "https://api.github.com/repos/tensorflow/models/releases{/id}",
  367.       "deployments_url": "https://api.github.com/repos/tensorflow/models/deployments",
  368.       "created_at": "2016-02-05T01:15:20Z",
  369.       "updated_at": "2019-06-29T13:28:38Z",
  370.       "pushed_at": "2019-06-29T03:47:31Z",
  371.       "git_url": "git://github.com/tensorflow/models.git",
  372.       "ssh_url": "git@github.com:tensorflow/models.git",
  373.       "clone_url": "https://github.com/tensorflow/models.git",
  374.       "svn_url": "https://github.com/tensorflow/models",
  375.       "homepage": "",
  376.       "size": 521568,
  377.       "stargazers_count": 54635,
  378.       "watchers_count": 54635,
  379.       "language": "Python",
  380.       "has_issues": true,
  381.       "has_projects": true,
  382.       "has_downloads": true,
  383.       "has_wiki": true,
  384.       "has_pages": false,
  385.       "forks_count": 33978,
  386.       "mirror_url": null,
  387.       "archived": false,
  388.       "disabled": false,
  389.       "open_issues_count": 1698,
  390.       "license": {
  391.         "key": "apache-2.0",
  392.         "name": "Apache License 2.0",
  393.         "spdx_id": "Apache-2.0",
  394.         "url": "https://api.github.com/licenses/apache-2.0",
  395.         "node_id": "MDc6TGljZW5zZTI="
  396.       },
  397.       "forks": 33978,
  398.       "open_issues": 1698,
  399.       "watchers": 54635,
  400.       "default_branch": "master",
  401.       "score": 1.0
  402.     },
  403.     {
  404.       "id": 1039520,
  405.       "node_id": "MDEwOlJlcG9zaXRvcnkxMDM5NTIw",
  406.       "name": "youtube-dl",
  407.       "full_name": "ytdl-org/youtube-dl",
  408.       "private": false,
  409.       "owner": {
  410.         "login": "ytdl-org",
  411.         "id": 48381040,
  412.         "node_id": "MDEyOk9yZ2FuaXphdGlvbjQ4MzgxMDQw",
  413.         "avatar_url": "https://avatars1.githubusercontent.com/u/48381040?v=4",
  414.         "gravatar_id": "",
  415.         "url": "https://api.github.com/users/ytdl-org",
  416.         "html_url": "https://github.com/ytdl-org",
  417.         "followers_url": "https://api.github.com/users/ytdl-org/followers",
  418.         "following_url": "https://api.github.com/users/ytdl-org/following{/other_user}",
  419.         "gists_url": "https://api.github.com/users/ytdl-org/gists{/gist_id}",
  420.         "starred_url": "https://api.github.com/users/ytdl-org/starred{/owner}{/repo}",
  421.         "subscriptions_url": "https://api.github.com/users/ytdl-org/subscriptions",
  422.         "organizations_url": "https://api.github.com/users/ytdl-org/orgs",
  423.         "repos_url": "https://api.github.com/users/ytdl-org/repos",
  424.         "events_url": "https://api.github.com/users/ytdl-org/events{/privacy}",
  425.         "received_events_url": "https://api.github.com/users/ytdl-org/received_events",
  426.         "type": "Organization",
  427.         "site_admin": false
  428.       },
  429.       "html_url": "https://github.com/ytdl-org/youtube-dl",
  430.       "description": "Command-line program to download videos from YouTube.com and other video sites",
  431.       "fork": false,
  432.       "url": "https://api.github.com/repos/ytdl-org/youtube-dl",
  433.       "forks_url": "https://api.github.com/repos/ytdl-org/youtube-dl/forks",
  434.       "keys_url": "https://api.github.com/repos/ytdl-org/youtube-dl/keys{/key_id}",
  435.       "collaborators_url": "https://api.github.com/repos/ytdl-org/youtube-dl/collaborators{/collaborator}",
  436.       "teams_url": "https://api.github.com/repos/ytdl-org/youtube-dl/teams",
  437.       "hooks_url": "https://api.github.com/repos/ytdl-org/youtube-dl/hooks",
  438.       "issue_events_url": "https://api.github.com/repos/ytdl-org/youtube-dl/issues/events{/number}",
  439.       "events_url": "https://api.github.com/repos/ytdl-org/youtube-dl/events",
  440.       "assignees_url": "https://api.github.com/repos/ytdl-org/youtube-dl/assignees{/user}",
  441.       "branches_url": "https://api.github.com/repos/ytdl-org/youtube-dl/branches{/branch}",
  442.       "tags_url": "https://api.github.com/repos/ytdl-org/youtube-dl/tags",
  443.       "blobs_url": "https://api.github.com/repos/ytdl-org/youtube-dl/git/blobs{/sha}",
  444.       "git_tags_url": "https://api.github.com/repos/ytdl-org/youtube-dl/git/tags{/sha}",
  445.       "git_refs_url": "https://api.github.com/repos/ytdl-org/youtube-dl/git/refs{/sha}",
  446.       "trees_url": "https://api.github.com/repos/ytdl-org/youtube-dl/git/trees{/sha}",
  447.       "statuses_url": "https://api.github.com/repos/ytdl-org/youtube-dl/statuses/{sha}",
  448.       "languages_url": "https://api.github.com/repos/ytdl-org/youtube-dl/languages",
  449.       "stargazers_url": "https://api.github.com/repos/ytdl-org/youtube-dl/stargazers",
  450.       "contributors_url": "https://api.github.com/repos/ytdl-org/youtube-dl/contributors",
  451.       "subscribers_url": "https://api.github.com/repos/ytdl-org/youtube-dl/subscribers",
  452.       "subscription_url": "https://api.github.com/repos/ytdl-org/youtube-dl/subscription",
  453.       "commits_url": "https://api.github.com/repos/ytdl-org/youtube-dl/commits{/sha}",
  454.       "git_commits_url": "https://api.github.com/repos/ytdl-org/youtube-dl/git/commits{/sha}",
  455.       "comments_url": "https://api.github.com/repos/ytdl-org/youtube-dl/comments{/number}",
  456.       "issue_comment_url": "https://api.github.com/repos/ytdl-org/youtube-dl/issues/comments{/number}",
  457.       "contents_url": "https://api.github.com/repos/ytdl-org/youtube-dl/contents/{+path}",
  458.       "compare_url": "https://api.github.com/repos/ytdl-org/youtube-dl/compare/{base}...{head}",
  459.       "merges_url": "https://api.github.com/repos/ytdl-org/youtube-dl/merges",
  460.       "archive_url": "https://api.github.com/repos/ytdl-org/youtube-dl/{archive_format}{/ref}",
  461.       "downloads_url": "https://api.github.com/repos/ytdl-org/youtube-dl/downloads",
  462.       "issues_url": "https://api.github.com/repos/ytdl-org/youtube-dl/issues{/number}",
  463.       "pulls_url": "https://api.github.com/repos/ytdl-org/youtube-dl/pulls{/number}",
  464.       "milestones_url": "https://api.github.com/repos/ytdl-org/youtube-dl/milestones{/number}",
  465.       "notifications_url": "https://api.github.com/repos/ytdl-org/youtube-dl/notifications{?since,all,participating}",
  466.       "labels_url": "https://api.github.com/repos/ytdl-org/youtube-dl/labels{/name}",
  467.       "releases_url": "https://api.github.com/repos/ytdl-org/youtube-dl/releases{/id}",
  468.       "deployments_url": "https://api.github.com/repos/ytdl-org/youtube-dl/deployments",
  469.       "created_at": "2010-10-31T14:35:07Z",
  470.       "updated_at": "2019-06-29T13:29:01Z",
  471.       "pushed_at": "2019-06-29T11:15:55Z",
  472.       "git_url": "git://github.com/ytdl-org/youtube-dl.git",
  473.       "ssh_url": "git@github.com:ytdl-org/youtube-dl.git",
  474.       "clone_url": "https://github.com/ytdl-org/youtube-dl.git",
  475.       "svn_url": "https://github.com/ytdl-org/youtube-dl",
  476.       "homepage": "http://ytdl-org.github.io/youtube-dl/",
  477.       "size": 56102,
  478.       "stargazers_count": 52019,
  479.       "watchers_count": 52019,
  480.       "language": "Python",
  481.       "has_issues": true,
  482.       "has_projects": false,
  483.       "has_downloads": true,
  484.       "has_wiki": false,
  485.       "has_pages": true,
  486.       "forks_count": 9057,
  487.       "mirror_url": null,
  488.       "archived": false,
  489.       "disabled": false,
  490.       "open_issues_count": 2904,
  491.       "license": {
  492.         "key": "unlicense",
  493.         "name": "The Unlicense",
  494.         "spdx_id": "Unlicense",
  495.         "url": "https://api.github.com/licenses/unlicense",
  496.         "node_id": "MDc6TGljZW5zZTE1"
  497.       },
  498.       "forks": 9057,
  499.       "open_issues": 2904,
  500.       "watchers": 52019,
  501.       "default_branch": "master",
  502.       "score": 1.0
  503.     },
  504.     {
  505.       "id": 63476337,
  506.       "node_id": "MDEwOlJlcG9zaXRvcnk2MzQ3NjMzNw==",
  507.       "name": "Python",
  508.       "full_name": "TheAlgorithms/Python",
  509.       "private": false,
  510.       "owner": {
  511.         "login": "TheAlgorithms",
  512.         "id": 20487725,
  513.         "node_id": "MDEyOk9yZ2FuaXphdGlvbjIwNDg3NzI1",
  514.         "avatar_url": "https://avatars1.githubusercontent.com/u/20487725?v=4",
  515.         "gravatar_id": "",
  516.         "url": "https://api.github.com/users/TheAlgorithms",
  517.         "html_url": "https://github.com/TheAlgorithms",
  518.         "followers_url": "https://api.github.com/users/TheAlgorithms/followers",
  519.         "following_url": "https://api.github.com/users/TheAlgorithms/following{/other_user}",
  520.         "gists_url": "https://api.github.com/users/TheAlgorithms/gists{/gist_id}",
  521.         "starred_url": "https://api.github.com/users/TheAlgorithms/starred{/owner}{/repo}",
  522.         "subscriptions_url": "https://api.github.com/users/TheAlgorithms/subscriptions",
  523.         "organizations_url": "https://api.github.com/users/TheAlgorithms/orgs",
  524.         "repos_url": "https://api.github.com/users/TheAlgorithms/repos",
  525.         "events_url": "https://api.github.com/users/TheAlgorithms/events{/privacy}",
  526.         "received_events_url": "https://api.github.com/users/TheAlgorithms/received_events",
  527.         "type": "Organization",
  528.         "site_admin": false
  529.       },
  530.       "html_url": "https://github.com/TheAlgorithms/Python",
  531.       "description": "All Algorithms implemented in Python",
  532.       "fork": false,
  533.       "url": "https://api.github.com/repos/TheAlgorithms/Python",
  534.       "forks_url": "https://api.github.com/repos/TheAlgorithms/Python/forks",
  535.       "keys_url": "https://api.github.com/repos/TheAlgorithms/Python/keys{/key_id}",
  536.       "collaborators_url": "https://api.github.com/repos/TheAlgorithms/Python/collaborators{/collaborator}",
  537.       "teams_url": "https://api.github.com/repos/TheAlgorithms/Python/teams",
  538.       "hooks_url": "https://api.github.com/repos/TheAlgorithms/Python/hooks",
  539.       "issue_events_url": "https://api.github.com/repos/TheAlgorithms/Python/issues/events{/number}",
  540.       "events_url": "https://api.github.com/repos/TheAlgorithms/Python/events",
  541.       "assignees_url": "https://api.github.com/repos/TheAlgorithms/Python/assignees{/user}",
  542.       "branches_url": "https://api.github.com/repos/TheAlgorithms/Python/branches{/branch}",
  543.       "tags_url": "https://api.github.com/repos/TheAlgorithms/Python/tags",
  544.       "blobs_url": "https://api.github.com/repos/TheAlgorithms/Python/git/blobs{/sha}",
  545.       "git_tags_url": "https://api.github.com/repos/TheAlgorithms/Python/git/tags{/sha}",
  546.       "git_refs_url": "https://api.github.com/repos/TheAlgorithms/Python/git/refs{/sha}",
  547.       "trees_url": "https://api.github.com/repos/TheAlgorithms/Python/git/trees{/sha}",
  548.       "statuses_url": "https://api.github.com/repos/TheAlgorithms/Python/statuses/{sha}",
  549.       "languages_url": "https://api.github.com/repos/TheAlgorithms/Python/languages",
  550.       "stargazers_url": "https://api.github.com/repos/TheAlgorithms/Python/stargazers",
  551.       "contributors_url": "https://api.github.com/repos/TheAlgorithms/Python/contributors",
  552.       "subscribers_url": "https://api.github.com/repos/TheAlgorithms/Python/subscribers",
  553.       "subscription_url": "https://api.github.com/repos/TheAlgorithms/Python/subscription",
  554.       "commits_url": "https://api.github.com/repos/TheAlgorithms/Python/commits{/sha}",
  555.       "git_commits_url": "https://api.github.com/repos/TheAlgorithms/Python/git/commits{/sha}",
  556.       "comments_url": "https://api.github.com/repos/TheAlgorithms/Python/comments{/number}",
  557.       "issue_comment_url": "https://api.github.com/repos/TheAlgorithms/Python/issues/comments{/number}",
  558.       "contents_url": "https://api.github.com/repos/TheAlgorithms/Python/contents/{+path}",
  559.       "compare_url": "https://api.github.com/repos/TheAlgorithms/Python/compare/{base}...{head}",
  560.       "merges_url": "https://api.github.com/repos/TheAlgorithms/Python/merges",
  561.       "archive_url": "https://api.github.com/repos/TheAlgorithms/Python/{archive_format}{/ref}",
  562.       "downloads_url": "https://api.github.com/repos/TheAlgorithms/Python/downloads",
  563.       "issues_url": "https://api.github.com/repos/TheAlgorithms/Python/issues{/number}",
  564.       "pulls_url": "https://api.github.com/repos/TheAlgorithms/Python/pulls{/number}",
  565.       "milestones_url": "https://api.github.com/repos/TheAlgorithms/Python/milestones{/number}",
  566.       "notifications_url": "https://api.github.com/repos/TheAlgorithms/Python/notifications{?since,all,participating}",
  567.       "labels_url": "https://api.github.com/repos/TheAlgorithms/Python/labels{/name}",
  568.       "releases_url": "https://api.github.com/repos/TheAlgorithms/Python/releases{/id}",
  569.       "deployments_url": "https://api.github.com/repos/TheAlgorithms/Python/deployments",
  570.       "created_at": "2016-07-16T09:44:01Z",
  571.       "updated_at": "2019-06-29T13:34:23Z",
  572.       "pushed_at": "2019-06-29T10:23:38Z",
  573.       "git_url": "git://github.com/TheAlgorithms/Python.git",
  574.       "ssh_url": "git@github.com:TheAlgorithms/Python.git",
  575.       "clone_url": "https://github.com/TheAlgorithms/Python.git",
  576.       "svn_url": "https://github.com/TheAlgorithms/Python",
  577.       "homepage": null,
  578.       "size": 7449,
  579.       "stargazers_count": 47820,
  580.       "watchers_count": 47820,
  581.       "language": "Python",
  582.       "has_issues": true,
  583.       "has_projects": true,
  584.       "has_downloads": true,
  585.       "has_wiki": true,
  586.       "has_pages": false,
  587.       "forks_count": 13852,
  588.       "mirror_url": null,
  589.       "archived": false,
  590.       "disabled": false,
  591.       "open_issues_count": 201,
  592.       "license": {
  593.         "key": "mit",
  594.         "name": "MIT License",
  595.         "spdx_id": "MIT",
  596.         "url": "https://api.github.com/licenses/mit",
  597.         "node_id": "MDc6TGljZW5zZTEz"
  598.       },
  599.       "forks": 13852,
  600.       "open_issues": 201,
  601.       "watchers": 47820,
  602.       "default_branch": "master",
  603.       "score": 1.0
  604.     },
  605.     {
  606.       "id": 596892,
  607.       "node_id": "MDEwOlJlcG9zaXRvcnk1OTY4OTI=",
  608.       "name": "flask",
  609.       "full_name": "pallets/flask",
  610.       "private": false,
  611.       "owner": {
  612.         "login": "pallets",
  613.         "id": 16748505,
  614.         "node_id": "MDEyOk9yZ2FuaXphdGlvbjE2NzQ4NTA1",
  615.         "avatar_url": "https://avatars3.githubusercontent.com/u/16748505?v=4",
  616.         "gravatar_id": "",
  617.         "url": "https://api.github.com/users/pallets",
  618.         "html_url": "https://github.com/pallets",
  619.         "followers_url": "https://api.github.com/users/pallets/followers",
  620.         "following_url": "https://api.github.com/users/pallets/following{/other_user}",
  621.         "gists_url": "https://api.github.com/users/pallets/gists{/gist_id}",
  622.         "starred_url": "https://api.github.com/users/pallets/starred{/owner}{/repo}",
  623.         "subscriptions_url": "https://api.github.com/users/pallets/subscriptions",
  624.         "organizations_url": "https://api.github.com/users/pallets/orgs",
  625.         "repos_url": "https://api.github.com/users/pallets/repos",
  626.         "events_url": "https://api.github.com/users/pallets/events{/privacy}",
  627.         "received_events_url": "https://api.github.com/users/pallets/received_events",
  628.         "type": "Organization",
  629.         "site_admin": false
  630.       },
  631.       "html_url": "https://github.com/pallets/flask",
  632.       "description": "The Python micro framework for building web applications.",
  633.       "fork": false,
  634.       "url": "https://api.github.com/repos/pallets/flask",
  635.       "forks_url": "https://api.github.com/repos/pallets/flask/forks",
  636.       "keys_url": "https://api.github.com/repos/pallets/flask/keys{/key_id}",
  637.       "collaborators_url": "https://api.github.com/repos/pallets/flask/collaborators{/collaborator}",
  638.       "teams_url": "https://api.github.com/repos/pallets/flask/teams",
  639.       "hooks_url": "https://api.github.com/repos/pallets/flask/hooks",
  640.       "issue_events_url": "https://api.github.com/repos/pallets/flask/issues/events{/number}",
  641.       "events_url": "https://api.github.com/repos/pallets/flask/events",
  642.       "assignees_url": "https://api.github.com/repos/pallets/flask/assignees{/user}",
  643.       "branches_url": "https://api.github.com/repos/pallets/flask/branches{/branch}",
  644.       "tags_url": "https://api.github.com/repos/pallets/flask/tags",
  645.       "blobs_url": "https://api.github.com/repos/pallets/flask/git/blobs{/sha}",
  646.       "git_tags_url": "https://api.github.com/repos/pallets/flask/git/tags{/sha}",
  647.       "git_refs_url": "https://api.github.com/repos/pallets/flask/git/refs{/sha}",
  648.       "trees_url": "https://api.github.com/repos/pallets/flask/git/trees{/sha}",
  649.       "statuses_url": "https://api.github.com/repos/pallets/flask/statuses/{sha}",
  650.       "languages_url": "https://api.github.com/repos/pallets/flask/languages",
  651.       "stargazers_url": "https://api.github.com/repos/pallets/flask/stargazers",
  652.       "contributors_url": "https://api.github.com/repos/pallets/flask/contributors",
  653.       "subscribers_url": "https://api.github.com/repos/pallets/flask/subscribers",
  654.       "subscription_url": "https://api.github.com/repos/pallets/flask/subscription",
  655.       "commits_url": "https://api.github.com/repos/pallets/flask/commits{/sha}",
  656.       "git_commits_url": "https://api.github.com/repos/pallets/flask/git/commits{/sha}",
  657.       "comments_url": "https://api.github.com/repos/pallets/flask/comments{/number}",
  658.       "issue_comment_url": "https://api.github.com/repos/pallets/flask/issues/comments{/number}",
  659.       "contents_url": "https://api.github.com/repos/pallets/flask/contents/{+path}",
  660.       "compare_url": "https://api.github.com/repos/pallets/flask/compare/{base}...{head}",
  661.       "merges_url": "https://api.github.com/repos/pallets/flask/merges",
  662.       "archive_url": "https://api.github.com/repos/pallets/flask/{archive_format}{/ref}",
  663.       "downloads_url": "https://api.github.com/repos/pallets/flask/downloads",
  664.       "issues_url": "https://api.github.com/repos/pallets/flask/issues{/number}",
  665.       "pulls_url": "https://api.github.com/repos/pallets/flask/pulls{/number}",
  666.       "milestones_url": "https://api.github.com/repos/pallets/flask/milestones{/number}",
  667.       "notifications_url": "https://api.github.com/repos/pallets/flask/notifications{?since,all,participating}",
  668.       "labels_url": "https://api.github.com/repos/pallets/flask/labels{/name}",
  669.       "releases_url": "https://api.github.com/repos/pallets/flask/releases{/id}",
  670.       "deployments_url": "https://api.github.com/repos/pallets/flask/deployments",
  671.       "created_at": "2010-04-06T11:11:59Z",
  672.       "updated_at": "2019-06-29T13:22:21Z",
  673.       "pushed_at": "2019-06-27T15:04:36Z",
  674.       "git_url": "git://github.com/pallets/flask.git",
  675.       "ssh_url": "git@github.com:pallets/flask.git",
  676.       "clone_url": "https://github.com/pallets/flask.git",
  677.       "svn_url": "https://github.com/pallets/flask",
  678.       "homepage": "https://www.palletsprojects.com/p/flask/",
  679.       "size": 7211,
  680.       "stargazers_count": 45022,
  681.       "watchers_count": 45022,
  682.       "language": "Python",
  683.       "has_issues": true,
  684.       "has_projects": false,
  685.       "has_downloads": true,
  686.       "has_wiki": false,
  687.       "has_pages": false,
  688.       "forks_count": 12642,
  689.       "mirror_url": null,
  690.       "archived": false,
  691.       "disabled": false,
  692.       "open_issues_count": 17,
  693.       "license": {
  694.         "key": "bsd-3-clause",
  695.         "name": "BSD 3-Clause \"New\" or \"Revised\" License",
  696.         "spdx_id": "BSD-3-Clause",
  697.         "url": "https://api.github.com/licenses/bsd-3-clause",
  698.         "node_id": "MDc6TGljZW5zZTU="
  699.       },
  700.       "forks": 12642,
  701.       "open_issues": 17,
  702.       "watchers": 45022,
  703.       "default_branch": "master",
  704.       "score": 1.0
  705.     },
  706.     {
  707.       "id": 33614304,
  708.       "node_id": "MDEwOlJlcG9zaXRvcnkzMzYxNDMwNA==",
  709.       "name": "thefuck",
  710.       "full_name": "nvbn/thefuck",
  711.       "private": false,
  712.       "owner": {
  713.         "login": "nvbn",
  714.         "id": 1114542,
  715.         "node_id": "MDQ6VXNlcjExMTQ1NDI=",
  716.         "avatar_url": "https://avatars1.githubusercontent.com/u/1114542?v=4",
  717.         "gravatar_id": "",
  718.         "url": "https://api.github.com/users/nvbn",
  719.         "html_url": "https://github.com/nvbn",
  720.         "followers_url": "https://api.github.com/users/nvbn/followers",
  721.         "following_url": "https://api.github.com/users/nvbn/following{/other_user}",
  722.         "gists_url": "https://api.github.com/users/nvbn/gists{/gist_id}",
  723.         "starred_url": "https://api.github.com/users/nvbn/starred{/owner}{/repo}",
  724.         "subscriptions_url": "https://api.github.com/users/nvbn/subscriptions",
  725.         "organizations_url": "https://api.github.com/users/nvbn/orgs",
  726.         "repos_url": "https://api.github.com/users/nvbn/repos",
  727.         "events_url": "https://api.github.com/users/nvbn/events{/privacy}",
  728.         "received_events_url": "https://api.github.com/users/nvbn/received_events",
  729.         "type": "User",
  730.         "site_admin": false
  731.       },
  732.       "html_url": "https://github.com/nvbn/thefuck",
  733.       "description": "Magnificent app which corrects your previous console command.",
  734.       "fork": false,
  735.       "url": "https://api.github.com/repos/nvbn/thefuck",
  736.       "forks_url": "https://api.github.com/repos/nvbn/thefuck/forks",
  737.       "keys_url": "https://api.github.com/repos/nvbn/thefuck/keys{/key_id}",
  738.       "collaborators_url": "https://api.github.com/repos/nvbn/thefuck/collaborators{/collaborator}",
  739.       "teams_url": "https://api.github.com/repos/nvbn/thefuck/teams",
  740.       "hooks_url": "https://api.github.com/repos/nvbn/thefuck/hooks",
  741.       "issue_events_url": "https://api.github.com/repos/nvbn/thefuck/issues/events{/number}",
  742.       "events_url": "https://api.github.com/repos/nvbn/thefuck/events",
  743.       "assignees_url": "https://api.github.com/repos/nvbn/thefuck/assignees{/user}",
  744.       "branches_url": "https://api.github.com/repos/nvbn/thefuck/branches{/branch}",
  745.       "tags_url": "https://api.github.com/repos/nvbn/thefuck/tags",
  746.       "blobs_url": "https://api.github.com/repos/nvbn/thefuck/git/blobs{/sha}",
  747.       "git_tags_url": "https://api.github.com/repos/nvbn/thefuck/git/tags{/sha}",
  748.       "git_refs_url": "https://api.github.com/repos/nvbn/thefuck/git/refs{/sha}",
  749.       "trees_url": "https://api.github.com/repos/nvbn/thefuck/git/trees{/sha}",
  750.       "statuses_url": "https://api.github.com/repos/nvbn/thefuck/statuses/{sha}",
  751.       "languages_url": "https://api.github.com/repos/nvbn/thefuck/languages",
  752.       "stargazers_url": "https://api.github.com/repos/nvbn/thefuck/stargazers",
  753.       "contributors_url": "https://api.github.com/repos/nvbn/thefuck/contributors",
  754.       "subscribers_url": "https://api.github.com/repos/nvbn/thefuck/subscribers",
  755.       "subscription_url": "https://api.github.com/repos/nvbn/thefuck/subscription",
  756.       "commits_url": "https://api.github.com/repos/nvbn/thefuck/commits{/sha}",
  757.       "git_commits_url": "https://api.github.com/repos/nvbn/thefuck/git/commits{/sha}",
  758.       "comments_url": "https://api.github.com/repos/nvbn/thefuck/comments{/number}",
  759.       "issue_comment_url": "https://api.github.com/repos/nvbn/thefuck/issues/comments{/number}",
  760.       "contents_url": "https://api.github.com/repos/nvbn/thefuck/contents/{+path}",
  761.       "compare_url": "https://api.github.com/repos/nvbn/thefuck/compare/{base}...{head}",
  762.       "merges_url": "https://api.github.com/repos/nvbn/thefuck/merges",
  763.       "archive_url": "https://api.github.com/repos/nvbn/thefuck/{archive_format}{/ref}",
  764.       "downloads_url": "https://api.github.com/repos/nvbn/thefuck/downloads",
  765.       "issues_url": "https://api.github.com/repos/nvbn/thefuck/issues{/number}",
  766.       "pulls_url": "https://api.github.com/repos/nvbn/thefuck/pulls{/number}",
  767.       "milestones_url": "https://api.github.com/repos/nvbn/thefuck/milestones{/number}",
  768.       "notifications_url": "https://api.github.com/repos/nvbn/thefuck/notifications{?since,all,participating}",
  769.       "labels_url": "https://api.github.com/repos/nvbn/thefuck/labels{/name}",
  770.       "releases_url": "https://api.github.com/repos/nvbn/thefuck/releases{/id}",
  771.       "deployments_url": "https://api.github.com/repos/nvbn/thefuck/deployments",
  772.       "created_at": "2015-04-08T15:08:04Z",
  773.       "updated_at": "2019-06-29T10:11:04Z",
  774.       "pushed_at": "2019-06-26T18:38:50Z",
  775.       "git_url": "git://github.com/nvbn/thefuck.git",
  776.       "ssh_url": "git@github.com:nvbn/thefuck.git",
  777.       "clone_url": "https://github.com/nvbn/thefuck.git",
  778.       "svn_url": "https://github.com/nvbn/thefuck",
  779.       "homepage": "",
  780.       "size": 2742,
  781.       "stargazers_count": 44520,
  782.       "watchers_count": 44520,
  783.       "language": "Python",
  784.       "has_issues": true,
  785.       "has_projects": true,
  786.       "has_downloads": true,
  787.       "has_wiki": true,
  788.       "has_pages": false,
  789.       "forks_count": 2220,
  790.       "mirror_url": null,
  791.       "archived": false,
  792.       "disabled": false,
  793.       "open_issues_count": 161,
  794.       "license": {
  795.         "key": "mit",
  796.         "name": "MIT License",
  797.         "spdx_id": "MIT",
  798.         "url": "https://api.github.com/licenses/mit",
  799.         "node_id": "MDc6TGljZW5zZTEz"
  800.       },
  801.       "forks": 2220,
  802.       "open_issues": 161,
  803.       "watchers": 44520,
  804.       "default_branch": "master",
  805.       "score": 1.0
  806.     },
  807.     {
  808.       "id": 4164482,
  809.       "node_id": "MDEwOlJlcG9zaXRvcnk0MTY0NDgy",
  810.       "name": "django",
  811.       "full_name": "django/django",
  812.       "private": false,
  813.       "owner": {
  814.         "login": "django",
  815.         "id": 27804,
  816.         "node_id": "MDEyOk9yZ2FuaXphdGlvbjI3ODA0",
  817.         "avatar_url": "https://avatars2.githubusercontent.com/u/27804?v=4",
  818.         "gravatar_id": "",
  819.         "url": "https://api.github.com/users/django",
  820.         "html_url": "https://github.com/django",
  821.         "followers_url": "https://api.github.com/users/django/followers",
  822.         "following_url": "https://api.github.com/users/django/following{/other_user}",
  823.         "gists_url": "https://api.github.com/users/django/gists{/gist_id}",
  824.         "starred_url": "https://api.github.com/users/django/starred{/owner}{/repo}",
  825.         "subscriptions_url": "https://api.github.com/users/django/subscriptions",
  826.         "organizations_url": "https://api.github.com/users/django/orgs",
  827.         "repos_url": "https://api.github.com/users/django/repos",
  828.         "events_url": "https://api.github.com/users/django/events{/privacy}",
  829.         "received_events_url": "https://api.github.com/users/django/received_events",
  830.         "type": "Organization",
  831.         "site_admin": false
  832.       },
  833.       "html_url": "https://github.com/django/django",
  834.       "description": "The Web framework for perfectionists with deadlines.",
  835.       "fork": false,
  836.       "url": "https://api.github.com/repos/django/django",
  837.       "forks_url": "https://api.github.com/repos/django/django/forks",
  838.       "keys_url": "https://api.github.com/repos/django/django/keys{/key_id}",
  839.       "collaborators_url": "https://api.github.com/repos/django/django/collaborators{/collaborator}",
  840.       "teams_url": "https://api.github.com/repos/django/django/teams",
  841.       "hooks_url": "https://api.github.com/repos/django/django/hooks",
  842.       "issue_events_url": "https://api.github.com/repos/django/django/issues/events{/number}",
  843.       "events_url": "https://api.github.com/repos/django/django/events",
  844.       "assignees_url": "https://api.github.com/repos/django/django/assignees{/user}",
  845.       "branches_url": "https://api.github.com/repos/django/django/branches{/branch}",
  846.       "tags_url": "https://api.github.com/repos/django/django/tags",
  847.       "blobs_url": "https://api.github.com/repos/django/django/git/blobs{/sha}",
  848.       "git_tags_url": "https://api.github.com/repos/django/django/git/tags{/sha}",
  849.       "git_refs_url": "https://api.github.com/repos/django/django/git/refs{/sha}",
  850.       "trees_url": "https://api.github.com/repos/django/django/git/trees{/sha}",
  851.       "statuses_url": "https://api.github.com/repos/django/django/statuses/{sha}",
  852.       "languages_url": "https://api.github.com/repos/django/django/languages",
  853.       "stargazers_url": "https://api.github.com/repos/django/django/stargazers",
  854.       "contributors_url": "https://api.github.com/repos/django/django/contributors",
  855.       "subscribers_url": "https://api.github.com/repos/django/django/subscribers",
  856.       "subscription_url": "https://api.github.com/repos/django/django/subscription",
  857.       "commits_url": "https://api.github.com/repos/django/django/commits{/sha}",
  858.       "git_commits_url": "https://api.github.com/repos/django/django/git/commits{/sha}",
  859.       "comments_url": "https://api.github.com/repos/django/django/comments{/number}",
  860.       "issue_comment_url": "https://api.github.com/repos/django/django/issues/comments{/number}",
  861.       "contents_url": "https://api.github.com/repos/django/django/contents/{+path}",
  862.       "compare_url": "https://api.github.com/repos/django/django/compare/{base}...{head}",
  863.       "merges_url": "https://api.github.com/repos/django/django/merges",
  864.       "archive_url": "https://api.github.com/repos/django/django/{archive_format}{/ref}",
  865.       "downloads_url": "https://api.github.com/repos/django/django/downloads",
  866.       "issues_url": "https://api.github.com/repos/django/django/issues{/number}",
  867.       "pulls_url": "https://api.github.com/repos/django/django/pulls{/number}",
  868.       "milestones_url": "https://api.github.com/repos/django/django/milestones{/number}",
  869.       "notifications_url": "https://api.github.com/repos/django/django/notifications{?since,all,participating}",
  870.       "labels_url": "https://api.github.com/repos/django/django/labels{/name}",
  871.       "releases_url": "https://api.github.com/repos/django/django/releases{/id}",
  872.       "deployments_url": "https://api.github.com/repos/django/django/deployments",
  873.       "created_at": "2012-04-28T02:47:18Z",
  874.       "updated_at": "2019-06-29T13:22:31Z",
  875.       "pushed_at": "2019-06-29T09:34:04Z",
  876.       "git_url": "git://github.com/django/django.git",
  877.       "ssh_url": "git@github.com:django/django.git",
  878.       "clone_url": "https://github.com/django/django.git",
  879.       "svn_url": "https://github.com/django/django",
  880.       "homepage": "https://www.djangoproject.com/",
  881.       "size": 188634,
  882.       "stargazers_count": 42453,
  883.       "watchers_count": 42453,
  884.       "language": "Python",
  885.       "has_issues": false,
  886.       "has_projects": false,
  887.       "has_downloads": true,
  888.       "has_wiki": false,
  889.       "has_pages": false,
  890.       "forks_count": 18262,
  891.       "mirror_url": null,
  892.       "archived": false,
  893.       "disabled": false,
  894.       "open_issues_count": 229,
  895.       "license": {
  896.         "key": "other",
  897.         "name": "Other",
  898.         "spdx_id": "NOASSERTION",
  899.         "url": null,
  900.         "node_id": "MDc6TGljZW5zZTA="
  901.       },
  902.       "forks": 18262,
  903.       "open_issues": 229,
  904.       "watchers": 42453,
  905.       "default_branch": "master",
  906.       "score": 1.0
  907.     },
  908.     {
  909.       "id": 33015583,
  910.       "node_id": "MDEwOlJlcG9zaXRvcnkzMzAxNTU4Mw==",
  911.       "name": "keras",
  912.       "full_name": "keras-team/keras",
  913.       "private": false,
  914.       "owner": {
  915.         "login": "keras-team",
  916.         "id": 34455048,
  917.         "node_id": "MDEyOk9yZ2FuaXphdGlvbjM0NDU1MDQ4",
  918.         "avatar_url": "https://avatars0.githubusercontent.com/u/34455048?v=4",
  919.         "gravatar_id": "",
  920.         "url": "https://api.github.com/users/keras-team",
  921.         "html_url": "https://github.com/keras-team",
  922.         "followers_url": "https://api.github.com/users/keras-team/followers",
  923.         "following_url": "https://api.github.com/users/keras-team/following{/other_user}",
  924.         "gists_url": "https://api.github.com/users/keras-team/gists{/gist_id}",
  925.         "starred_url": "https://api.github.com/users/keras-team/starred{/owner}{/repo}",
  926.         "subscriptions_url": "https://api.github.com/users/keras-team/subscriptions",
  927.         "organizations_url": "https://api.github.com/users/keras-team/orgs",
  928.         "repos_url": "https://api.github.com/users/keras-team/repos",
  929.         "events_url": "https://api.github.com/users/keras-team/events{/privacy}",
  930.         "received_events_url": "https://api.github.com/users/keras-team/received_events",
  931.         "type": "Organization",
  932.         "site_admin": false
  933.       },
  934.       "html_url": "https://github.com/keras-team/keras",
  935.       "description": "Deep Learning for humans",
  936.       "fork": false,
  937.       "url": "https://api.github.com/repos/keras-team/keras",
  938.       "forks_url": "https://api.github.com/repos/keras-team/keras/forks",
  939.       "keys_url": "https://api.github.com/repos/keras-team/keras/keys{/key_id}",
  940.       "collaborators_url": "https://api.github.com/repos/keras-team/keras/collaborators{/collaborator}",
  941.       "teams_url": "https://api.github.com/repos/keras-team/keras/teams",
  942.       "hooks_url": "https://api.github.com/repos/keras-team/keras/hooks",
  943.       "issue_events_url": "https://api.github.com/repos/keras-team/keras/issues/events{/number}",
  944.       "events_url": "https://api.github.com/repos/keras-team/keras/events",
  945.       "assignees_url": "https://api.github.com/repos/keras-team/keras/assignees{/user}",
  946.       "branches_url": "https://api.github.com/repos/keras-team/keras/branches{/branch}",
  947.       "tags_url": "https://api.github.com/repos/keras-team/keras/tags",
  948.       "blobs_url": "https://api.github.com/repos/keras-team/keras/git/blobs{/sha}",
  949.       "git_tags_url": "https://api.github.com/repos/keras-team/keras/git/tags{/sha}",
  950.       "git_refs_url": "https://api.github.com/repos/keras-team/keras/git/refs{/sha}",
  951.       "trees_url": "https://api.github.com/repos/keras-team/keras/git/trees{/sha}",
  952.       "statuses_url": "https://api.github.com/repos/keras-team/keras/statuses/{sha}",
  953.       "languages_url": "https://api.github.com/repos/keras-team/keras/languages",
  954.       "stargazers_url": "https://api.github.com/repos/keras-team/keras/stargazers",
  955.       "contributors_url": "https://api.github.com/repos/keras-team/keras/contributors",
  956.       "subscribers_url": "https://api.github.com/repos/keras-team/keras/subscribers",
  957.       "subscription_url": "https://api.github.com/repos/keras-team/keras/subscription",
  958.       "commits_url": "https://api.github.com/repos/keras-team/keras/commits{/sha}",
  959.       "git_commits_url": "https://api.github.com/repos/keras-team/keras/git/commits{/sha}",
  960.       "comments_url": "https://api.github.com/repos/keras-team/keras/comments{/number}",
  961.       "issue_comment_url": "https://api.github.com/repos/keras-team/keras/issues/comments{/number}",
  962.       "contents_url": "https://api.github.com/repos/keras-team/keras/contents/{+path}",
  963.       "compare_url": "https://api.github.com/repos/keras-team/keras/compare/{base}...{head}",
  964.       "merges_url": "https://api.github.com/repos/keras-team/keras/merges",
  965.       "archive_url": "https://api.github.com/repos/keras-team/keras/{archive_format}{/ref}",
  966.       "downloads_url": "https://api.github.com/repos/keras-team/keras/downloads",
  967.       "issues_url": "https://api.github.com/repos/keras-team/keras/issues{/number}",
  968.       "pulls_url": "https://api.github.com/repos/keras-team/keras/pulls{/number}",
  969.       "milestones_url": "https://api.github.com/repos/keras-team/keras/milestones{/number}",
  970.       "notifications_url": "https://api.github.com/repos/keras-team/keras/notifications{?since,all,participating}",
  971.       "labels_url": "https://api.github.com/repos/keras-team/keras/labels{/name}",
  972.       "releases_url": "https://api.github.com/repos/keras-team/keras/releases{/id}",
  973.       "deployments_url": "https://api.github.com/repos/keras-team/keras/deployments",
  974.       "created_at": "2015-03-28T00:35:42Z",
  975.       "updated_at": "2019-06-29T13:34:43Z",
  976.       "pushed_at": "2019-06-29T09:46:48Z",
  977.       "git_url": "git://github.com/keras-team/keras.git",
  978.       "ssh_url": "git@github.com:keras-team/keras.git",
  979.       "clone_url": "https://github.com/keras-team/keras.git",
  980.       "svn_url": "https://github.com/keras-team/keras",
  981.       "homepage": "http://keras.io/",
  982.       "size": 12829,
  983.       "stargazers_count": 42291,
  984.       "watchers_count": 42291,
  985.       "language": "Python",
  986.       "has_issues": true,
  987.       "has_projects": true,
  988.       "has_downloads": true,
  989.       "has_wiki": true,
  990.       "has_pages": false,
  991.       "forks_count": 16123,
  992.       "mirror_url": null,
  993.       "archived": false,
  994.       "disabled": false,
  995.       "open_issues_count": 2441,
  996.       "license": {
  997.         "key": "other",
  998.         "name": "Other",
  999.         "spdx_id": "NOASSERTION",
  1000.         "url": null,
  1001.         "node_id": "MDc6TGljZW5zZTA="
  1002.       },
  1003.       "forks": 16123,
  1004.       "open_issues": 2441,
  1005.       "watchers": 42291,
  1006.       "default_branch": "master",
  1007.       "score": 1.0
  1008.     },
  1009.     {
  1010.       "id": 3544424,
  1011.       "node_id": "MDEwOlJlcG9zaXRvcnkzNTQ0NDI0",
  1012.       "name": "httpie",
  1013.       "full_name": "jakubroztocil/httpie",
  1014.       "private": false,
  1015.       "owner": {
  1016.         "login": "jakubroztocil",
  1017.         "id": 326885,
  1018.         "node_id": "MDQ6VXNlcjMyNjg4NQ==",
  1019.         "avatar_url": "https://avatars3.githubusercontent.com/u/326885?v=4",
  1020.         "gravatar_id": "",
  1021.         "url": "https://api.github.com/users/jakubroztocil",
  1022.         "html_url": "https://github.com/jakubroztocil",
  1023.         "followers_url": "https://api.github.com/users/jakubroztocil/followers",
  1024.         "following_url": "https://api.github.com/users/jakubroztocil/following{/other_user}",
  1025.         "gists_url": "https://api.github.com/users/jakubroztocil/gists{/gist_id}",
  1026.         "starred_url": "https://api.github.com/users/jakubroztocil/starred{/owner}{/repo}",
  1027.         "subscriptions_url": "https://api.github.com/users/jakubroztocil/subscriptions",
  1028.         "organizations_url": "https://api.github.com/users/jakubroztocil/orgs",
  1029.         "repos_url": "https://api.github.com/users/jakubroztocil/repos",
  1030.         "events_url": "https://api.github.com/users/jakubroztocil/events{/privacy}",
  1031.         "received_events_url": "https://api.github.com/users/jakubroztocil/received_events",
  1032.         "type": "User",
  1033.         "site_admin": false
  1034.       },
  1035.       "html_url": "https://github.com/jakubroztocil/httpie",
  1036.       "description": "As easy as httpie /aitch-tee-tee-pie/ 🥧 Modern command line HTTP client – user-friendly curl alternative with intuitive UI, JSON support, syntax highlighting, wget-like downloads, extensions, etc.  https://twitter.com/clihttp",
  1037.       "fork": false,
  1038.       "url": "https://api.github.com/repos/jakubroztocil/httpie",
  1039.       "forks_url": "https://api.github.com/repos/jakubroztocil/httpie/forks",
  1040.       "keys_url": "https://api.github.com/repos/jakubroztocil/httpie/keys{/key_id}",
  1041.       "collaborators_url": "https://api.github.com/repos/jakubroztocil/httpie/collaborators{/collaborator}",
  1042.       "teams_url": "https://api.github.com/repos/jakubroztocil/httpie/teams",
  1043.       "hooks_url": "https://api.github.com/repos/jakubroztocil/httpie/hooks",
  1044.       "issue_events_url": "https://api.github.com/repos/jakubroztocil/httpie/issues/events{/number}",
  1045.       "events_url": "https://api.github.com/repos/jakubroztocil/httpie/events",
  1046.       "assignees_url": "https://api.github.com/repos/jakubroztocil/httpie/assignees{/user}",
  1047.       "branches_url": "https://api.github.com/repos/jakubroztocil/httpie/branches{/branch}",
  1048.       "tags_url": "https://api.github.com/repos/jakubroztocil/httpie/tags",
  1049.       "blobs_url": "https://api.github.com/repos/jakubroztocil/httpie/git/blobs{/sha}",
  1050.       "git_tags_url": "https://api.github.com/repos/jakubroztocil/httpie/git/tags{/sha}",
  1051.       "git_refs_url": "https://api.github.com/repos/jakubroztocil/httpie/git/refs{/sha}",
  1052.       "trees_url": "https://api.github.com/repos/jakubroztocil/httpie/git/trees{/sha}",
  1053.       "statuses_url": "https://api.github.com/repos/jakubroztocil/httpie/statuses/{sha}",
  1054.       "languages_url": "https://api.github.com/repos/jakubroztocil/httpie/languages",
  1055.       "stargazers_url": "https://api.github.com/repos/jakubroztocil/httpie/stargazers",
  1056.       "contributors_url": "https://api.github.com/repos/jakubroztocil/httpie/contributors",
  1057.       "subscribers_url": "https://api.github.com/repos/jakubroztocil/httpie/subscribers",
  1058.       "subscription_url": "https://api.github.com/repos/jakubroztocil/httpie/subscription",
  1059.       "commits_url": "https://api.github.com/repos/jakubroztocil/httpie/commits{/sha}",
  1060.       "git_commits_url": "https://api.github.com/repos/jakubroztocil/httpie/git/commits{/sha}",
  1061.       "comments_url": "https://api.github.com/repos/jakubroztocil/httpie/comments{/number}",
  1062.       "issue_comment_url": "https://api.github.com/repos/jakubroztocil/httpie/issues/comments{/number}",
  1063.       "contents_url": "https://api.github.com/repos/jakubroztocil/httpie/contents/{+path}",
  1064.       "compare_url": "https://api.github.com/repos/jakubroztocil/httpie/compare/{base}...{head}",
  1065.       "merges_url": "https://api.github.com/repos/jakubroztocil/httpie/merges",
  1066.       "archive_url": "https://api.github.com/repos/jakubroztocil/httpie/{archive_format}{/ref}",
  1067.       "downloads_url": "https://api.github.com/repos/jakubroztocil/httpie/downloads",
  1068.       "issues_url": "https://api.github.com/repos/jakubroztocil/httpie/issues{/number}",
  1069.       "pulls_url": "https://api.github.com/repos/jakubroztocil/httpie/pulls{/number}",
  1070.       "milestones_url": "https://api.github.com/repos/jakubroztocil/httpie/milestones{/number}",
  1071.       "notifications_url": "https://api.github.com/repos/jakubroztocil/httpie/notifications{?since,all,participating}",
  1072.       "labels_url": "https://api.github.com/repos/jakubroztocil/httpie/labels{/name}",
  1073.       "releases_url": "https://api.github.com/repos/jakubroztocil/httpie/releases{/id}",
  1074.       "deployments_url": "https://api.github.com/repos/jakubroztocil/httpie/deployments",
  1075.       "created_at": "2012-02-25T12:39:13Z",
  1076.       "updated_at": "2019-06-29T12:43:22Z",
  1077.       "pushed_at": "2019-06-24T10:36:17Z",
  1078.       "git_url": "git://github.com/jakubroztocil/httpie.git",
  1079.       "ssh_url": "git@github.com:jakubroztocil/httpie.git",
  1080.       "clone_url": "https://github.com/jakubroztocil/httpie.git",
  1081.       "svn_url": "https://github.com/jakubroztocil/httpie",
  1082.       "homepage": "https://httpie.org",
  1083.       "size": 5389,
  1084.       "stargazers_count": 42122,
  1085.       "watchers_count": 42122,
  1086.       "language": "Python",
  1087.       "has_issues": true,
  1088.       "has_projects": true,
  1089.       "has_downloads": true,
  1090.       "has_wiki": false,
  1091.       "has_pages": false,
  1092.       "forks_count": 2768,
  1093.       "mirror_url": null,
  1094.       "archived": false,
  1095.       "disabled": false,
  1096.       "open_issues_count": 158,
  1097.       "license": {
  1098.         "key": "other",
  1099.         "name": "Other",
  1100.         "spdx_id": "NOASSERTION",
  1101.         "url": null,
  1102.         "node_id": "MDc6TGljZW5zZTA="
  1103.       },
  1104.       "forks": 2768,
  1105.       "open_issues": 158,
  1106.       "watchers": 42122,
  1107.       "default_branch": "master",
  1108.       "score": 1.0
  1109.     },
  1110.     {
  1111.       "id": 21872392,
  1112.       "node_id": "MDEwOlJlcG9zaXRvcnkyMTg3MjM5Mg==",
  1113.       "name": "awesome-machine-learning",
  1114.       "full_name": "josephmisiti/awesome-machine-learning",
  1115.       "private": false,
  1116.       "owner": {
  1117.         "login": "josephmisiti",
  1118.         "id": 246302,
  1119.         "node_id": "MDQ6VXNlcjI0NjMwMg==",
  1120.         "avatar_url": "https://avatars0.githubusercontent.com/u/246302?v=4",
  1121.         "gravatar_id": "",
  1122.         "url": "https://api.github.com/users/josephmisiti",
  1123.         "html_url": "https://github.com/josephmisiti",
  1124.         "followers_url": "https://api.github.com/users/josephmisiti/followers",
  1125.         "following_url": "https://api.github.com/users/josephmisiti/following{/other_user}",
  1126.         "gists_url": "https://api.github.com/users/josephmisiti/gists{/gist_id}",
  1127.         "starred_url": "https://api.github.com/users/josephmisiti/starred{/owner}{/repo}",
  1128.         "subscriptions_url": "https://api.github.com/users/josephmisiti/subscriptions",
  1129.         "organizations_url": "https://api.github.com/users/josephmisiti/orgs",
  1130.         "repos_url": "https://api.github.com/users/josephmisiti/repos",
  1131.         "events_url": "https://api.github.com/users/josephmisiti/events{/privacy}",
  1132.         "received_events_url": "https://api.github.com/users/josephmisiti/received_events",
  1133.         "type": "User",
  1134.         "site_admin": false
  1135.       },
  1136.       "html_url": "https://github.com/josephmisiti/awesome-machine-learning",
  1137.       "description": "A curated list of awesome Machine Learning frameworks, libraries and software.",
  1138.       "fork": false,
  1139.       "url": "https://api.github.com/repos/josephmisiti/awesome-machine-learning",
  1140.       "forks_url": "https://api.github.com/repos/josephmisiti/awesome-machine-learning/forks",
  1141.       "keys_url": "https://api.github.com/repos/josephmisiti/awesome-machine-learning/keys{/key_id}",
  1142.       "collaborators_url": "https://api.github.com/repos/josephmisiti/awesome-machine-learning/collaborators{/collaborator}",
  1143.       "teams_url": "https://api.github.com/repos/josephmisiti/awesome-machine-learning/teams",
  1144.       "hooks_url": "https://api.github.com/repos/josephmisiti/awesome-machine-learning/hooks",
  1145.       "issue_events_url": "https://api.github.com/repos/josephmisiti/awesome-machine-learning/issues/events{/number}",
  1146.       "events_url": "https://api.github.com/repos/josephmisiti/awesome-machine-learning/events",
  1147.       "assignees_url": "https://api.github.com/repos/josephmisiti/awesome-machine-learning/assignees{/user}",
  1148.       "branches_url": "https://api.github.com/repos/josephmisiti/awesome-machine-learning/branches{/branch}",
  1149.       "tags_url": "https://api.github.com/repos/josephmisiti/awesome-machine-learning/tags",
  1150.       "blobs_url": "https://api.github.com/repos/josephmisiti/awesome-machine-learning/git/blobs{/sha}",
  1151.       "git_tags_url": "https://api.github.com/repos/josephmisiti/awesome-machine-learning/git/tags{/sha}",
  1152.       "git_refs_url": "https://api.github.com/repos/josephmisiti/awesome-machine-learning/git/refs{/sha}",
  1153.       "trees_url": "https://api.github.com/repos/josephmisiti/awesome-machine-learning/git/trees{/sha}",
  1154.       "statuses_url": "https://api.github.com/repos/josephmisiti/awesome-machine-learning/statuses/{sha}",
  1155.       "languages_url": "https://api.github.com/repos/josephmisiti/awesome-machine-learning/languages",
  1156.       "stargazers_url": "https://api.github.com/repos/josephmisiti/awesome-machine-learning/stargazers",
  1157.       "contributors_url": "https://api.github.com/repos/josephmisiti/awesome-machine-learning/contributors",
  1158.       "subscribers_url": "https://api.github.com/repos/josephmisiti/awesome-machine-learning/subscribers",
  1159.       "subscription_url": "https://api.github.com/repos/josephmisiti/awesome-machine-learning/subscription",
  1160.       "commits_url": "https://api.github.com/repos/josephmisiti/awesome-machine-learning/commits{/sha}",
  1161.       "git_commits_url": "https://api.github.com/repos/josephmisiti/awesome-machine-learning/git/commits{/sha}",
  1162.       "comments_url": "https://api.github.com/repos/josephmisiti/awesome-machine-learning/comments{/number}",
  1163.       "issue_comment_url": "https://api.github.com/repos/josephmisiti/awesome-machine-learning/issues/comments{/number}",
  1164.       "contents_url": "https://api.github.com/repos/josephmisiti/awesome-machine-learning/contents/{+path}",
  1165.       "compare_url": "https://api.github.com/repos/josephmisiti/awesome-machine-learning/compare/{base}...{head}",
  1166.       "merges_url": "https://api.github.com/repos/josephmisiti/awesome-machine-learning/merges",
  1167.       "archive_url": "https://api.github.com/repos/josephmisiti/awesome-machine-learning/{archive_format}{/ref}",
  1168.       "downloads_url": "https://api.github.com/repos/josephmisiti/awesome-machine-learning/downloads",
  1169.       "issues_url": "https://api.github.com/repos/josephmisiti/awesome-machine-learning/issues{/number}",
  1170.       "pulls_url": "https://api.github.com/repos/josephmisiti/awesome-machine-learning/pulls{/number}",
  1171.       "milestones_url": "https://api.github.com/repos/josephmisiti/awesome-machine-learning/milestones{/number}",
  1172.       "notifications_url": "https://api.github.com/repos/josephmisiti/awesome-machine-learning/notifications{?since,all,participating}",
  1173.       "labels_url": "https://api.github.com/repos/josephmisiti/awesome-machine-learning/labels{/name}",
  1174.       "releases_url": "https://api.github.com/repos/josephmisiti/awesome-machine-learning/releases{/id}",
  1175.       "deployments_url": "https://api.github.com/repos/josephmisiti/awesome-machine-learning/deployments",
  1176.       "created_at": "2014-07-15T19:11:19Z",
  1177.       "updated_at": "2019-06-29T13:30:07Z",
  1178.       "pushed_at": "2019-06-25T14:25:26Z",
  1179.       "git_url": "git://github.com/josephmisiti/awesome-machine-learning.git",
  1180.       "ssh_url": "git@github.com:josephmisiti/awesome-machine-learning.git",
  1181.       "clone_url": "https://github.com/josephmisiti/awesome-machine-learning.git",
  1182.       "svn_url": "https://github.com/josephmisiti/awesome-machine-learning",
  1183.       "homepage": null,
  1184.       "size": 1797,
  1185.       "stargazers_count": 40543,
  1186.       "watchers_count": 40543,
  1187.       "language": "Python",
  1188.       "has_issues": true,
  1189.       "has_projects": false,
  1190.       "has_downloads": true,
  1191.       "has_wiki": false,
  1192.       "has_pages": true,
  1193.       "forks_count": 10184,
  1194.       "mirror_url": null,
  1195.       "archived": false,
  1196.       "disabled": false,
  1197.       "open_issues_count": 2,
  1198.       "license": {
  1199.         "key": "other",
  1200.         "name": "Other",
  1201.         "spdx_id": "NOASSERTION",
  1202.         "url": null,
  1203.         "node_id": "MDc6TGljZW5zZTA="
  1204.       },
  1205.       "forks": 10184,
  1206.       "open_issues": 2,
  1207.       "watchers": 40543,
  1208.       "default_branch": "master",
  1209.       "score": 1.0
  1210.     },
  1211.     {
  1212.       "id": 1362490,
  1213.       "node_id": "MDEwOlJlcG9zaXRvcnkxMzYyNDkw",
  1214.       "name": "requests",
  1215.       "full_name": "kennethreitz/requests",
  1216.       "private": false,
  1217.       "owner": {
  1218.         "login": "kennethreitz",
  1219.         "id": 47496974,
  1220.         "node_id": "MDEyOk9yZ2FuaXphdGlvbjQ3NDk2OTc0",
  1221.         "avatar_url": "https://avatars1.githubusercontent.com/u/47496974?v=4",
  1222.         "gravatar_id": "",
  1223.         "url": "https://api.github.com/users/kennethreitz",
  1224.         "html_url": "https://github.com/kennethreitz",
  1225.         "followers_url": "https://api.github.com/users/kennethreitz/followers",
  1226.         "following_url": "https://api.github.com/users/kennethreitz/following{/other_user}",
  1227.         "gists_url": "https://api.github.com/users/kennethreitz/gists{/gist_id}",
  1228.         "starred_url": "https://api.github.com/users/kennethreitz/starred{/owner}{/repo}",
  1229.         "subscriptions_url": "https://api.github.com/users/kennethreitz/subscriptions",
  1230.         "organizations_url": "https://api.github.com/users/kennethreitz/orgs",
  1231.         "repos_url": "https://api.github.com/users/kennethreitz/repos",
  1232.         "events_url": "https://api.github.com/users/kennethreitz/events{/privacy}",
  1233.         "received_events_url": "https://api.github.com/users/kennethreitz/received_events",
  1234.         "type": "Organization",
  1235.         "site_admin": false
  1236.       },
  1237.       "html_url": "https://github.com/kennethreitz/requests",
  1238.       "description": "Python HTTP Requests for Humans™ ✨🍰✨",
  1239.       "fork": false,
  1240.       "url": "https://api.github.com/repos/kennethreitz/requests",
  1241.       "forks_url": "https://api.github.com/repos/kennethreitz/requests/forks",
  1242.       "keys_url": "https://api.github.com/repos/kennethreitz/requests/keys{/key_id}",
  1243.       "collaborators_url": "https://api.github.com/repos/kennethreitz/requests/collaborators{/collaborator}",
  1244.       "teams_url": "https://api.github.com/repos/kennethreitz/requests/teams",
  1245.       "hooks_url": "https://api.github.com/repos/kennethreitz/requests/hooks",
  1246.       "issue_events_url": "https://api.github.com/repos/kennethreitz/requests/issues/events{/number}",
  1247.       "events_url": "https://api.github.com/repos/kennethreitz/requests/events",
  1248.       "assignees_url": "https://api.github.com/repos/kennethreitz/requests/assignees{/user}",
  1249.       "branches_url": "https://api.github.com/repos/kennethreitz/requests/branches{/branch}",
  1250.       "tags_url": "https://api.github.com/repos/kennethreitz/requests/tags",
  1251.       "blobs_url": "https://api.github.com/repos/kennethreitz/requests/git/blobs{/sha}",
  1252.       "git_tags_url": "https://api.github.com/repos/kennethreitz/requests/git/tags{/sha}",
  1253.       "git_refs_url": "https://api.github.com/repos/kennethreitz/requests/git/refs{/sha}",
  1254.       "trees_url": "https://api.github.com/repos/kennethreitz/requests/git/trees{/sha}",
  1255.       "statuses_url": "https://api.github.com/repos/kennethreitz/requests/statuses/{sha}",
  1256.       "languages_url": "https://api.github.com/repos/kennethreitz/requests/languages",
  1257.       "stargazers_url": "https://api.github.com/repos/kennethreitz/requests/stargazers",
  1258.       "contributors_url": "https://api.github.com/repos/kennethreitz/requests/contributors",
  1259.       "subscribers_url": "https://api.github.com/repos/kennethreitz/requests/subscribers",
  1260.       "subscription_url": "https://api.github.com/repos/kennethreitz/requests/subscription",
  1261.       "commits_url": "https://api.github.com/repos/kennethreitz/requests/commits{/sha}",
  1262.       "git_commits_url": "https://api.github.com/repos/kennethreitz/requests/git/commits{/sha}",
  1263.       "comments_url": "https://api.github.com/repos/kennethreitz/requests/comments{/number}",
  1264.       "issue_comment_url": "https://api.github.com/repos/kennethreitz/requests/issues/comments{/number}",
  1265.       "contents_url": "https://api.github.com/repos/kennethreitz/requests/contents/{+path}",
  1266.       "compare_url": "https://api.github.com/repos/kennethreitz/requests/compare/{base}...{head}",
  1267.       "merges_url": "https://api.github.com/repos/kennethreitz/requests/merges",
  1268.       "archive_url": "https://api.github.com/repos/kennethreitz/requests/{archive_format}{/ref}",
  1269.       "downloads_url": "https://api.github.com/repos/kennethreitz/requests/downloads",
  1270.       "issues_url": "https://api.github.com/repos/kennethreitz/requests/issues{/number}",
  1271.       "pulls_url": "https://api.github.com/repos/kennethreitz/requests/pulls{/number}",
  1272.       "milestones_url": "https://api.github.com/repos/kennethreitz/requests/milestones{/number}",
  1273.       "notifications_url": "https://api.github.com/repos/kennethreitz/requests/notifications{?since,all,participating}",
  1274.       "labels_url": "https://api.github.com/repos/kennethreitz/requests/labels{/name}",
  1275.       "releases_url": "https://api.github.com/repos/kennethreitz/requests/releases{/id}",
  1276.       "deployments_url": "https://api.github.com/repos/kennethreitz/requests/deployments",
  1277.       "created_at": "2011-02-13T18:38:17Z",
  1278.       "updated_at": "2019-06-29T12:20:47Z",
  1279.       "pushed_at": "2019-06-26T19:21:20Z",
  1280.       "git_url": "git://github.com/kennethreitz/requests.git",
  1281.       "ssh_url": "git@github.com:kennethreitz/requests.git",
  1282.       "clone_url": "https://github.com/kennethreitz/requests.git",
  1283.       "svn_url": "https://github.com/kennethreitz/requests",
  1284.       "homepage": "http://python-requests.org",
  1285.       "size": 9985,
  1286.       "stargazers_count": 39162,
  1287.       "watchers_count": 39162,
  1288.       "language": "Python",
  1289.       "has_issues": true,
  1290.       "has_projects": false,
  1291.       "has_downloads": true,
  1292.       "has_wiki": true,
  1293.       "has_pages": false,
  1294.       "forks_count": 7142,
  1295.       "mirror_url": null,
  1296.       "archived": false,
  1297.       "disabled": false,
  1298.       "open_issues_count": 240,
  1299.       "license": {
  1300.         "key": "other",
  1301.         "name": "Other",
  1302.         "spdx_id": "NOASSERTION",
  1303.         "url": null,
  1304.         "node_id": "MDc6TGljZW5zZTA="
  1305.       },
  1306.       "forks": 7142,
  1307.       "open_issues": 240,
  1308.       "watchers": 39162,
  1309.       "default_branch": "master",
  1310.       "score": 1.0
  1311.     },
  1312.     {
  1313.       "id": 3638964,
  1314.       "node_id": "MDEwOlJlcG9zaXRvcnkzNjM4OTY0",
  1315.       "name": "ansible",
  1316.       "full_name": "ansible/ansible",
  1317.       "private": false,
  1318.       "owner": {
  1319.         "login": "ansible",
  1320.         "id": 1507452,
  1321.         "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1MDc0NTI=",
  1322.         "avatar_url": "https://avatars2.githubusercontent.com/u/1507452?v=4",
  1323.         "gravatar_id": "",
  1324.         "url": "https://api.github.com/users/ansible",
  1325.         "html_url": "https://github.com/ansible",
  1326.         "followers_url": "https://api.github.com/users/ansible/followers",
  1327.         "following_url": "https://api.github.com/users/ansible/following{/other_user}",
  1328.         "gists_url": "https://api.github.com/users/ansible/gists{/gist_id}",
  1329.         "starred_url": "https://api.github.com/users/ansible/starred{/owner}{/repo}",
  1330.         "subscriptions_url": "https://api.github.com/users/ansible/subscriptions",
  1331.         "organizations_url": "https://api.github.com/users/ansible/orgs",
  1332.         "repos_url": "https://api.github.com/users/ansible/repos",
  1333.         "events_url": "https://api.github.com/users/ansible/events{/privacy}",
  1334.         "received_events_url": "https://api.github.com/users/ansible/received_events",
  1335.         "type": "Organization",
  1336.         "site_admin": false
  1337.       },
  1338.       "html_url": "https://github.com/ansible/ansible",
  1339.       "description": "Ansible is a radically simple IT automation platform that makes your applications and systems easier to deploy. Avoid writing scripts or custom code to deploy and update your applications — automate in a language that approaches plain English, using SSH, with no agents to install on remote systems. https://docs.ansible.com/ansible/",
  1340.       "fork": false,
  1341.       "url": "https://api.github.com/repos/ansible/ansible",
  1342.       "forks_url": "https://api.github.com/repos/ansible/ansible/forks",
  1343.       "keys_url": "https://api.github.com/repos/ansible/ansible/keys{/key_id}",
  1344.       "collaborators_url": "https://api.github.com/repos/ansible/ansible/collaborators{/collaborator}",
  1345.       "teams_url": "https://api.github.com/repos/ansible/ansible/teams",
  1346.       "hooks_url": "https://api.github.com/repos/ansible/ansible/hooks",
  1347.       "issue_events_url": "https://api.github.com/repos/ansible/ansible/issues/events{/number}",
  1348.       "events_url": "https://api.github.com/repos/ansible/ansible/events",
  1349.       "assignees_url": "https://api.github.com/repos/ansible/ansible/assignees{/user}",
  1350.       "branches_url": "https://api.github.com/repos/ansible/ansible/branches{/branch}",
  1351.       "tags_url": "https://api.github.com/repos/ansible/ansible/tags",
  1352.       "blobs_url": "https://api.github.com/repos/ansible/ansible/git/blobs{/sha}",
  1353.       "git_tags_url": "https://api.github.com/repos/ansible/ansible/git/tags{/sha}",
  1354.       "git_refs_url": "https://api.github.com/repos/ansible/ansible/git/refs{/sha}",
  1355.       "trees_url": "https://api.github.com/repos/ansible/ansible/git/trees{/sha}",
  1356.       "statuses_url": "https://api.github.com/repos/ansible/ansible/statuses/{sha}",
  1357.       "languages_url": "https://api.github.com/repos/ansible/ansible/languages",
  1358.       "stargazers_url": "https://api.github.com/repos/ansible/ansible/stargazers",
  1359.       "contributors_url": "https://api.github.com/repos/ansible/ansible/contributors",
  1360.       "subscribers_url": "https://api.github.com/repos/ansible/ansible/subscribers",
  1361.       "subscription_url": "https://api.github.com/repos/ansible/ansible/subscription",
  1362.       "commits_url": "https://api.github.com/repos/ansible/ansible/commits{/sha}",
  1363.       "git_commits_url": "https://api.github.com/repos/ansible/ansible/git/commits{/sha}",
  1364.       "comments_url": "https://api.github.com/repos/ansible/ansible/comments{/number}",
  1365.       "issue_comment_url": "https://api.github.com/repos/ansible/ansible/issues/comments{/number}",
  1366.       "contents_url": "https://api.github.com/repos/ansible/ansible/contents/{+path}",
  1367.       "compare_url": "https://api.github.com/repos/ansible/ansible/compare/{base}...{head}",
  1368.       "merges_url": "https://api.github.com/repos/ansible/ansible/merges",
  1369.       "archive_url": "https://api.github.com/repos/ansible/ansible/{archive_format}{/ref}",
  1370.       "downloads_url": "https://api.github.com/repos/ansible/ansible/downloads",
  1371.       "issues_url": "https://api.github.com/repos/ansible/ansible/issues{/number}",
  1372.       "pulls_url": "https://api.github.com/repos/ansible/ansible/pulls{/number}",
  1373.       "milestones_url": "https://api.github.com/repos/ansible/ansible/milestones{/number}",
  1374.       "notifications_url": "https://api.github.com/repos/ansible/ansible/notifications{?since,all,participating}",
  1375.       "labels_url": "https://api.github.com/repos/ansible/ansible/labels{/name}",
  1376.       "releases_url": "https://api.github.com/repos/ansible/ansible/releases{/id}",
  1377.       "deployments_url": "https://api.github.com/repos/ansible/ansible/deployments",
  1378.       "created_at": "2012-03-06T14:58:02Z",
  1379.       "updated_at": "2019-06-29T13:06:54Z",
  1380.       "pushed_at": "2019-06-29T13:15:39Z",
  1381.       "git_url": "git://github.com/ansible/ansible.git",
  1382.       "ssh_url": "git@github.com:ansible/ansible.git",
  1383.       "clone_url": "https://github.com/ansible/ansible.git",
  1384.       "svn_url": "https://github.com/ansible/ansible",
  1385.       "homepage": "https://www.ansible.com/",
  1386.       "size": 171450,
  1387.       "stargazers_count": 37984,
  1388.       "watchers_count": 37984,
  1389.       "language": "Python",
  1390.       "has_issues": true,
  1391.       "has_projects": true,
  1392.       "has_downloads": true,
  1393.       "has_wiki": false,
  1394.       "has_pages": false,
  1395.       "forks_count": 15930,
  1396.       "mirror_url": null,
  1397.       "archived": false,
  1398.       "disabled": false,
  1399.       "open_issues_count": 5773,
  1400.       "license": {
  1401.         "key": "gpl-3.0",
  1402.         "name": "GNU General Public License v3.0",
  1403.         "spdx_id": "GPL-3.0",
  1404.         "url": "https://api.github.com/licenses/gpl-3.0",
  1405.         "node_id": "MDc6TGljZW5zZTk="
  1406.       },
  1407.       "forks": 15930,
  1408.       "open_issues": 5773,
  1409.       "watchers": 37984,
  1410.       "default_branch": "devel",
  1411.       "score": 1.0
  1412.     },
  1413.     {
  1414.       "id": 843222,
  1415.       "node_id": "MDEwOlJlcG9zaXRvcnk4NDMyMjI=",
  1416.       "name": "scikit-learn",
  1417.       "full_name": "scikit-learn/scikit-learn",
  1418.       "private": false,
  1419.       "owner": {
  1420.         "login": "scikit-learn",
  1421.         "id": 365630,
  1422.         "node_id": "MDEyOk9yZ2FuaXphdGlvbjM2NTYzMA==",
  1423.         "avatar_url": "https://avatars2.githubusercontent.com/u/365630?v=4",
  1424.         "gravatar_id": "",
  1425.         "url": "https://api.github.com/users/scikit-learn",
  1426.         "html_url": "https://github.com/scikit-learn",
  1427.         "followers_url": "https://api.github.com/users/scikit-learn/followers",
  1428.         "following_url": "https://api.github.com/users/scikit-learn/following{/other_user}",
  1429.         "gists_url": "https://api.github.com/users/scikit-learn/gists{/gist_id}",
  1430.         "starred_url": "https://api.github.com/users/scikit-learn/starred{/owner}{/repo}",
  1431.         "subscriptions_url": "https://api.github.com/users/scikit-learn/subscriptions",
  1432.         "organizations_url": "https://api.github.com/users/scikit-learn/orgs",
  1433.         "repos_url": "https://api.github.com/users/scikit-learn/repos",
  1434.         "events_url": "https://api.github.com/users/scikit-learn/events{/privacy}",
  1435.         "received_events_url": "https://api.github.com/users/scikit-learn/received_events",
  1436.         "type": "Organization",
  1437.         "site_admin": false
  1438.       },
  1439.       "html_url": "https://github.com/scikit-learn/scikit-learn",
  1440.       "description": "scikit-learn: machine learning in Python",
  1441.       "fork": false,
  1442.       "url": "https://api.github.com/repos/scikit-learn/scikit-learn",
  1443.       "forks_url": "https://api.github.com/repos/scikit-learn/scikit-learn/forks",
  1444.       "keys_url": "https://api.github.com/repos/scikit-learn/scikit-learn/keys{/key_id}",
  1445.       "collaborators_url": "https://api.github.com/repos/scikit-learn/scikit-learn/collaborators{/collaborator}",
  1446.       "teams_url": "https://api.github.com/repos/scikit-learn/scikit-learn/teams",
  1447.       "hooks_url": "https://api.github.com/repos/scikit-learn/scikit-learn/hooks",
  1448.       "issue_events_url": "https://api.github.com/repos/scikit-learn/scikit-learn/issues/events{/number}",
  1449.       "events_url": "https://api.github.com/repos/scikit-learn/scikit-learn/events",
  1450.       "assignees_url": "https://api.github.com/repos/scikit-learn/scikit-learn/assignees{/user}",
  1451.       "branches_url": "https://api.github.com/repos/scikit-learn/scikit-learn/branches{/branch}",
  1452.       "tags_url": "https://api.github.com/repos/scikit-learn/scikit-learn/tags",
  1453.       "blobs_url": "https://api.github.com/repos/scikit-learn/scikit-learn/git/blobs{/sha}",
  1454.       "git_tags_url": "https://api.github.com/repos/scikit-learn/scikit-learn/git/tags{/sha}",
  1455.       "git_refs_url": "https://api.github.com/repos/scikit-learn/scikit-learn/git/refs{/sha}",
  1456.       "trees_url": "https://api.github.com/repos/scikit-learn/scikit-learn/git/trees{/sha}",
  1457.       "statuses_url": "https://api.github.com/repos/scikit-learn/scikit-learn/statuses/{sha}",
  1458.       "languages_url": "https://api.github.com/repos/scikit-learn/scikit-learn/languages",
  1459.       "stargazers_url": "https://api.github.com/repos/scikit-learn/scikit-learn/stargazers",
  1460.       "contributors_url": "https://api.github.com/repos/scikit-learn/scikit-learn/contributors",
  1461.       "subscribers_url": "https://api.github.com/repos/scikit-learn/scikit-learn/subscribers",
  1462.       "subscription_url": "https://api.github.com/repos/scikit-learn/scikit-learn/subscription",
  1463.       "commits_url": "https://api.github.com/repos/scikit-learn/scikit-learn/commits{/sha}",
  1464.       "git_commits_url": "https://api.github.com/repos/scikit-learn/scikit-learn/git/commits{/sha}",
  1465.       "comments_url": "https://api.github.com/repos/scikit-learn/scikit-learn/comments{/number}",
  1466.       "issue_comment_url": "https://api.github.com/repos/scikit-learn/scikit-learn/issues/comments{/number}",
  1467.       "contents_url": "https://api.github.com/repos/scikit-learn/scikit-learn/contents/{+path}",
  1468.       "compare_url": "https://api.github.com/repos/scikit-learn/scikit-learn/compare/{base}...{head}",
  1469.       "merges_url": "https://api.github.com/repos/scikit-learn/scikit-learn/merges",
  1470.       "archive_url": "https://api.github.com/repos/scikit-learn/scikit-learn/{archive_format}{/ref}",
  1471.       "downloads_url": "https://api.github.com/repos/scikit-learn/scikit-learn/downloads",
  1472.       "issues_url": "https://api.github.com/repos/scikit-learn/scikit-learn/issues{/number}",
  1473.       "pulls_url": "https://api.github.com/repos/scikit-learn/scikit-learn/pulls{/number}",
  1474.       "milestones_url": "https://api.github.com/repos/scikit-learn/scikit-learn/milestones{/number}",
  1475.       "notifications_url": "https://api.github.com/repos/scikit-learn/scikit-learn/notifications{?since,all,participating}",
  1476.       "labels_url": "https://api.github.com/repos/scikit-learn/scikit-learn/labels{/name}",
  1477.       "releases_url": "https://api.github.com/repos/scikit-learn/scikit-learn/releases{/id}",
  1478.       "deployments_url": "https://api.github.com/repos/scikit-learn/scikit-learn/deployments",
  1479.       "created_at": "2010-08-17T09:43:38Z",
  1480.       "updated_at": "2019-06-29T12:40:29Z",
  1481.       "pushed_at": "2019-06-29T10:42:14Z",
  1482.       "git_url": "git://github.com/scikit-learn/scikit-learn.git",
  1483.       "ssh_url": "git@github.com:scikit-learn/scikit-learn.git",
  1484.       "clone_url": "https://github.com/scikit-learn/scikit-learn.git",
  1485.       "svn_url": "https://github.com/scikit-learn/scikit-learn",
  1486.       "homepage": "https://scikit-learn.org",
  1487.       "size": 105071,
  1488.       "stargazers_count": 35847,
  1489.       "watchers_count": 35847,
  1490.       "language": "Python",
  1491.       "has_issues": true,
  1492.       "has_projects": true,
  1493.       "has_downloads": true,
  1494.       "has_wiki": true,
  1495.       "has_pages": false,
  1496.       "forks_count": 17539,
  1497.       "mirror_url": null,
  1498.       "archived": false,
  1499.       "disabled": false,
  1500.       "open_issues_count": 1936,
  1501.       "license": {
  1502.         "key": "other",
  1503.         "name": "Other",
  1504.         "spdx_id": "NOASSERTION",
  1505.         "url": null,
  1506.         "node_id": "MDc6TGljZW5zZTA="
  1507.       },
  1508.       "forks": 17539,
  1509.       "open_issues": 1936,
  1510.       "watchers": 35847,
  1511.       "default_branch": "master",
  1512.       "score": 1.0
  1513.     },
  1514.     {
  1515.       "id": 529502,
  1516.       "node_id": "MDEwOlJlcG9zaXRvcnk1Mjk1MDI=",
  1517.       "name": "scrapy",
  1518.       "full_name": "scrapy/scrapy",
  1519.       "private": false,
  1520.       "owner": {
  1521.         "login": "scrapy",
  1522.         "id": 733635,
  1523.         "node_id": "MDEyOk9yZ2FuaXphdGlvbjczMzYzNQ==",
  1524.         "avatar_url": "https://avatars0.githubusercontent.com/u/733635?v=4",
  1525.         "gravatar_id": "",
  1526.         "url": "https://api.github.com/users/scrapy",
  1527.         "html_url": "https://github.com/scrapy",
  1528.         "followers_url": "https://api.github.com/users/scrapy/followers",
  1529.         "following_url": "https://api.github.com/users/scrapy/following{/other_user}",
  1530.         "gists_url": "https://api.github.com/users/scrapy/gists{/gist_id}",
  1531.         "starred_url": "https://api.github.com/users/scrapy/starred{/owner}{/repo}",
  1532.         "subscriptions_url": "https://api.github.com/users/scrapy/subscriptions",
  1533.         "organizations_url": "https://api.github.com/users/scrapy/orgs",
  1534.         "repos_url": "https://api.github.com/users/scrapy/repos",
  1535.         "events_url": "https://api.github.com/users/scrapy/events{/privacy}",
  1536.         "received_events_url": "https://api.github.com/users/scrapy/received_events",
  1537.         "type": "Organization",
  1538.         "site_admin": false
  1539.       },
  1540.       "html_url": "https://github.com/scrapy/scrapy",
  1541.       "description": "Scrapy, a fast high-level web crawling & scraping framework for Python.",
  1542.       "fork": false,
  1543.       "url": "https://api.github.com/repos/scrapy/scrapy",
  1544.       "forks_url": "https://api.github.com/repos/scrapy/scrapy/forks",
  1545.       "keys_url": "https://api.github.com/repos/scrapy/scrapy/keys{/key_id}",
  1546.       "collaborators_url": "https://api.github.com/repos/scrapy/scrapy/collaborators{/collaborator}",
  1547.       "teams_url": "https://api.github.com/repos/scrapy/scrapy/teams",
  1548.       "hooks_url": "https://api.github.com/repos/scrapy/scrapy/hooks",
  1549.       "issue_events_url": "https://api.github.com/repos/scrapy/scrapy/issues/events{/number}",
  1550.       "events_url": "https://api.github.com/repos/scrapy/scrapy/events",
  1551.       "assignees_url": "https://api.github.com/repos/scrapy/scrapy/assignees{/user}",
  1552.       "branches_url": "https://api.github.com/repos/scrapy/scrapy/branches{/branch}",
  1553.       "tags_url": "https://api.github.com/repos/scrapy/scrapy/tags",
  1554.       "blobs_url": "https://api.github.com/repos/scrapy/scrapy/git/blobs{/sha}",
  1555.       "git_tags_url": "https://api.github.com/repos/scrapy/scrapy/git/tags{/sha}",
  1556.       "git_refs_url": "https://api.github.com/repos/scrapy/scrapy/git/refs{/sha}",
  1557.       "trees_url": "https://api.github.com/repos/scrapy/scrapy/git/trees{/sha}",
  1558.       "statuses_url": "https://api.github.com/repos/scrapy/scrapy/statuses/{sha}",
  1559.       "languages_url": "https://api.github.com/repos/scrapy/scrapy/languages",
  1560.       "stargazers_url": "https://api.github.com/repos/scrapy/scrapy/stargazers",
  1561.       "contributors_url": "https://api.github.com/repos/scrapy/scrapy/contributors",
  1562.       "subscribers_url": "https://api.github.com/repos/scrapy/scrapy/subscribers",
  1563.       "subscription_url": "https://api.github.com/repos/scrapy/scrapy/subscription",
  1564.       "commits_url": "https://api.github.com/repos/scrapy/scrapy/commits{/sha}",
  1565.       "git_commits_url": "https://api.github.com/repos/scrapy/scrapy/git/commits{/sha}",
  1566.       "comments_url": "https://api.github.com/repos/scrapy/scrapy/comments{/number}",
  1567.       "issue_comment_url": "https://api.github.com/repos/scrapy/scrapy/issues/comments{/number}",
  1568.       "contents_url": "https://api.github.com/repos/scrapy/scrapy/contents/{+path}",
  1569.       "compare_url": "https://api.github.com/repos/scrapy/scrapy/compare/{base}...{head}",
  1570.       "merges_url": "https://api.github.com/repos/scrapy/scrapy/merges",
  1571.       "archive_url": "https://api.github.com/repos/scrapy/scrapy/{archive_format}{/ref}",
  1572.       "downloads_url": "https://api.github.com/repos/scrapy/scrapy/downloads",
  1573.       "issues_url": "https://api.github.com/repos/scrapy/scrapy/issues{/number}",
  1574.       "pulls_url": "https://api.github.com/repos/scrapy/scrapy/pulls{/number}",
  1575.       "milestones_url": "https://api.github.com/repos/scrapy/scrapy/milestones{/number}",
  1576.       "notifications_url": "https://api.github.com/repos/scrapy/scrapy/notifications{?since,all,participating}",
  1577.       "labels_url": "https://api.github.com/repos/scrapy/scrapy/labels{/name}",
  1578.       "releases_url": "https://api.github.com/repos/scrapy/scrapy/releases{/id}",
  1579.       "deployments_url": "https://api.github.com/repos/scrapy/scrapy/deployments",
  1580.       "created_at": "2010-02-22T02:01:14Z",
  1581.       "updated_at": "2019-06-29T13:28:42Z",
  1582.       "pushed_at": "2019-06-27T13:59:56Z",
  1583.       "git_url": "git://github.com/scrapy/scrapy.git",
  1584.       "ssh_url": "git@github.com:scrapy/scrapy.git",
  1585.       "clone_url": "https://github.com/scrapy/scrapy.git",
  1586.       "svn_url": "https://github.com/scrapy/scrapy",
  1587.       "homepage": "https://scrapy.org",
  1588.       "size": 17092,
  1589.       "stargazers_count": 33410,
  1590.       "watchers_count": 33410,
  1591.       "language": "Python",
  1592.       "has_issues": true,
  1593.       "has_projects": true,
  1594.       "has_downloads": false,
  1595.       "has_wiki": true,
  1596.       "has_pages": false,
  1597.       "forks_count": 7858,
  1598.       "mirror_url": null,
  1599.       "archived": false,
  1600.       "disabled": false,
  1601.       "open_issues_count": 814,
  1602.       "license": {
  1603.         "key": "other",
  1604.         "name": "Other",
  1605.         "spdx_id": "NOASSERTION",
  1606.         "url": null,
  1607.         "node_id": "MDc6TGljZW5zZTA="
  1608.       },
  1609.       "forks": 7858,
  1610.       "open_issues": 814,
  1611.       "watchers": 33410,
  1612.       "default_branch": "master",
  1613.       "score": 1.0
  1614.     },
  1615.     {
  1616.       "id": 40416236,
  1617.       "node_id": "MDEwOlJlcG9zaXRvcnk0MDQxNjIzNg==",
  1618.       "name": "big-list-of-naughty-strings",
  1619.       "full_name": "minimaxir/big-list-of-naughty-strings",
  1620.       "private": false,
  1621.       "owner": {
  1622.         "login": "minimaxir",
  1623.         "id": 2179708,
  1624.         "node_id": "MDQ6VXNlcjIxNzk3MDg=",
  1625.         "avatar_url": "https://avatars1.githubusercontent.com/u/2179708?v=4",
  1626.         "gravatar_id": "",
  1627.         "url": "https://api.github.com/users/minimaxir",
  1628.         "html_url": "https://github.com/minimaxir",
  1629.         "followers_url": "https://api.github.com/users/minimaxir/followers",
  1630.         "following_url": "https://api.github.com/users/minimaxir/following{/other_user}",
  1631.         "gists_url": "https://api.github.com/users/minimaxir/gists{/gist_id}",
  1632.         "starred_url": "https://api.github.com/users/minimaxir/starred{/owner}{/repo}",
  1633.         "subscriptions_url": "https://api.github.com/users/minimaxir/subscriptions",
  1634.         "organizations_url": "https://api.github.com/users/minimaxir/orgs",
  1635.         "repos_url": "https://api.github.com/users/minimaxir/repos",
  1636.         "events_url": "https://api.github.com/users/minimaxir/events{/privacy}",
  1637.         "received_events_url": "https://api.github.com/users/minimaxir/received_events",
  1638.         "type": "User",
  1639.         "site_admin": false
  1640.       },
  1641.       "html_url": "https://github.com/minimaxir/big-list-of-naughty-strings",
  1642.       "description": "The Big List of Naughty Strings is a list of strings which have a high probability of causing issues when used as user-input data.",
  1643.       "fork": false,
  1644.       "url": "https://api.github.com/repos/minimaxir/big-list-of-naughty-strings",
  1645.       "forks_url": "https://api.github.com/repos/minimaxir/big-list-of-naughty-strings/forks",
  1646.       "keys_url": "https://api.github.com/repos/minimaxir/big-list-of-naughty-strings/keys{/key_id}",
  1647.       "collaborators_url": "https://api.github.com/repos/minimaxir/big-list-of-naughty-strings/collaborators{/collaborator}",
  1648.       "teams_url": "https://api.github.com/repos/minimaxir/big-list-of-naughty-strings/teams",
  1649.       "hooks_url": "https://api.github.com/repos/minimaxir/big-list-of-naughty-strings/hooks",
  1650.       "issue_events_url": "https://api.github.com/repos/minimaxir/big-list-of-naughty-strings/issues/events{/number}",
  1651.       "events_url": "https://api.github.com/repos/minimaxir/big-list-of-naughty-strings/events",
  1652.       "assignees_url": "https://api.github.com/repos/minimaxir/big-list-of-naughty-strings/assignees{/user}",
  1653.       "branches_url": "https://api.github.com/repos/minimaxir/big-list-of-naughty-strings/branches{/branch}",
  1654.       "tags_url": "https://api.github.com/repos/minimaxir/big-list-of-naughty-strings/tags",
  1655.       "blobs_url": "https://api.github.com/repos/minimaxir/big-list-of-naughty-strings/git/blobs{/sha}",
  1656.       "git_tags_url": "https://api.github.com/repos/minimaxir/big-list-of-naughty-strings/git/tags{/sha}",
  1657.       "git_refs_url": "https://api.github.com/repos/minimaxir/big-list-of-naughty-strings/git/refs{/sha}",
  1658.       "trees_url": "https://api.github.com/repos/minimaxir/big-list-of-naughty-strings/git/trees{/sha}",
  1659.       "statuses_url": "https://api.github.com/repos/minimaxir/big-list-of-naughty-strings/statuses/{sha}",
  1660.       "languages_url": "https://api.github.com/repos/minimaxir/big-list-of-naughty-strings/languages",
  1661.       "stargazers_url": "https://api.github.com/repos/minimaxir/big-list-of-naughty-strings/stargazers",
  1662.       "contributors_url": "https://api.github.com/repos/minimaxir/big-list-of-naughty-strings/contributors",
  1663.       "subscribers_url": "https://api.github.com/repos/minimaxir/big-list-of-naughty-strings/subscribers",
  1664.       "subscription_url": "https://api.github.com/repos/minimaxir/big-list-of-naughty-strings/subscription",
  1665.       "commits_url": "https://api.github.com/repos/minimaxir/big-list-of-naughty-strings/commits{/sha}",
  1666.       "git_commits_url": "https://api.github.com/repos/minimaxir/big-list-of-naughty-strings/git/commits{/sha}",
  1667.       "comments_url": "https://api.github.com/repos/minimaxir/big-list-of-naughty-strings/comments{/number}",
  1668.       "issue_comment_url": "https://api.github.com/repos/minimaxir/big-list-of-naughty-strings/issues/comments{/number}",
  1669.       "contents_url": "https://api.github.com/repos/minimaxir/big-list-of-naughty-strings/contents/{+path}",
  1670.       "compare_url": "https://api.github.com/repos/minimaxir/big-list-of-naughty-strings/compare/{base}...{head}",
  1671.       "merges_url": "https://api.github.com/repos/minimaxir/big-list-of-naughty-strings/merges",
  1672.       "archive_url": "https://api.github.com/repos/minimaxir/big-list-of-naughty-strings/{archive_format}{/ref}",
  1673.       "downloads_url": "https://api.github.com/repos/minimaxir/big-list-of-naughty-strings/downloads",
  1674.       "issues_url": "https://api.github.com/repos/minimaxir/big-list-of-naughty-strings/issues{/number}",
  1675.       "pulls_url": "https://api.github.com/repos/minimaxir/big-list-of-naughty-strings/pulls{/number}",
  1676.       "milestones_url": "https://api.github.com/repos/minimaxir/big-list-of-naughty-strings/milestones{/number}",
  1677.       "notifications_url": "https://api.github.com/repos/minimaxir/big-list-of-naughty-strings/notifications{?since,all,participating}",
  1678.       "labels_url": "https://api.github.com/repos/minimaxir/big-list-of-naughty-strings/labels{/name}",
  1679.       "releases_url": "https://api.github.com/repos/minimaxir/big-list-of-naughty-strings/releases{/id}",
  1680.       "deployments_url": "https://api.github.com/repos/minimaxir/big-list-of-naughty-strings/deployments",
  1681.       "created_at": "2015-08-08T20:57:20Z",
  1682.       "updated_at": "2019-06-28T23:27:07Z",
  1683.       "pushed_at": "2019-03-03T04:08:47Z",
  1684.       "git_url": "git://github.com/minimaxir/big-list-of-naughty-strings.git",
  1685.       "ssh_url": "git@github.com:minimaxir/big-list-of-naughty-strings.git",
  1686.       "clone_url": "https://github.com/minimaxir/big-list-of-naughty-strings.git",
  1687.       "svn_url": "https://github.com/minimaxir/big-list-of-naughty-strings",
  1688.       "homepage": null,
  1689.       "size": 229,
  1690.       "stargazers_count": 32581,
  1691.       "watchers_count": 32581,
  1692.       "language": "Python",
  1693.       "has_issues": true,
  1694.       "has_projects": true,
  1695.       "has_downloads": true,
  1696.       "has_wiki": true,
  1697.       "has_pages": false,
  1698.       "forks_count": 1381,
  1699.       "mirror_url": null,
  1700.       "archived": false,
  1701.       "disabled": false,
  1702.       "open_issues_count": 72,
  1703.       "license": {
  1704.         "key": "mit",
  1705.         "name": "MIT License",
  1706.         "spdx_id": "MIT",
  1707.         "url": "https://api.github.com/licenses/mit",
  1708.         "node_id": "MDc6TGljZW5zZTEz"
  1709.       },
  1710.       "forks": 1381,
  1711.       "open_issues": 72,
  1712.       "watchers": 32581,
  1713.       "default_branch": "master",
  1714.       "score": 1.0
  1715.     },
  1716.     {
  1717.       "id": 4086616,
  1718.       "node_id": "MDEwOlJlcG9zaXRvcnk0MDg2NjE2",
  1719.       "name": "shadowsocks",
  1720.       "full_name": "shadowsocks/shadowsocks",
  1721.       "private": false,
  1722.       "owner": {
  1723.         "login": "shadowsocks",
  1724.         "id": 3006190,
  1725.         "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMDYxOTA=",
  1726.         "avatar_url": "https://avatars1.githubusercontent.com/u/3006190?v=4",
  1727.         "gravatar_id": "",
  1728.         "url": "https://api.github.com/users/shadowsocks",
  1729.         "html_url": "https://github.com/shadowsocks",
  1730.         "followers_url": "https://api.github.com/users/shadowsocks/followers",
  1731.         "following_url": "https://api.github.com/users/shadowsocks/following{/other_user}",
  1732.         "gists_url": "https://api.github.com/users/shadowsocks/gists{/gist_id}",
  1733.         "starred_url": "https://api.github.com/users/shadowsocks/starred{/owner}{/repo}",
  1734.         "subscriptions_url": "https://api.github.com/users/shadowsocks/subscriptions",
  1735.         "organizations_url": "https://api.github.com/users/shadowsocks/orgs",
  1736.         "repos_url": "https://api.github.com/users/shadowsocks/repos",
  1737.         "events_url": "https://api.github.com/users/shadowsocks/events{/privacy}",
  1738.         "received_events_url": "https://api.github.com/users/shadowsocks/received_events",
  1739.         "type": "Organization",
  1740.         "site_admin": false
  1741.       },
  1742.       "html_url": "https://github.com/shadowsocks/shadowsocks",
  1743.       "description": null,
  1744.       "fork": false,
  1745.       "url": "https://api.github.com/repos/shadowsocks/shadowsocks",
  1746.       "forks_url": "https://api.github.com/repos/shadowsocks/shadowsocks/forks",
  1747.       "keys_url": "https://api.github.com/repos/shadowsocks/shadowsocks/keys{/key_id}",
  1748.       "collaborators_url": "https://api.github.com/repos/shadowsocks/shadowsocks/collaborators{/collaborator}",
  1749.       "teams_url": "https://api.github.com/repos/shadowsocks/shadowsocks/teams",
  1750.       "hooks_url": "https://api.github.com/repos/shadowsocks/shadowsocks/hooks",
  1751.       "issue_events_url": "https://api.github.com/repos/shadowsocks/shadowsocks/issues/events{/number}",
  1752.       "events_url": "https://api.github.com/repos/shadowsocks/shadowsocks/events",
  1753.       "assignees_url": "https://api.github.com/repos/shadowsocks/shadowsocks/assignees{/user}",
  1754.       "branches_url": "https://api.github.com/repos/shadowsocks/shadowsocks/branches{/branch}",
  1755.       "tags_url": "https://api.github.com/repos/shadowsocks/shadowsocks/tags",
  1756.       "blobs_url": "https://api.github.com/repos/shadowsocks/shadowsocks/git/blobs{/sha}",
  1757.       "git_tags_url": "https://api.github.com/repos/shadowsocks/shadowsocks/git/tags{/sha}",
  1758.       "git_refs_url": "https://api.github.com/repos/shadowsocks/shadowsocks/git/refs{/sha}",
  1759.       "trees_url": "https://api.github.com/repos/shadowsocks/shadowsocks/git/trees{/sha}",
  1760.       "statuses_url": "https://api.github.com/repos/shadowsocks/shadowsocks/statuses/{sha}",
  1761.       "languages_url": "https://api.github.com/repos/shadowsocks/shadowsocks/languages",
  1762.       "stargazers_url": "https://api.github.com/repos/shadowsocks/shadowsocks/stargazers",
  1763.       "contributors_url": "https://api.github.com/repos/shadowsocks/shadowsocks/contributors",
  1764.       "subscribers_url": "https://api.github.com/repos/shadowsocks/shadowsocks/subscribers",
  1765.       "subscription_url": "https://api.github.com/repos/shadowsocks/shadowsocks/subscription",
  1766.       "commits_url": "https://api.github.com/repos/shadowsocks/shadowsocks/commits{/sha}",
  1767.       "git_commits_url": "https://api.github.com/repos/shadowsocks/shadowsocks/git/commits{/sha}",
  1768.       "comments_url": "https://api.github.com/repos/shadowsocks/shadowsocks/comments{/number}",
  1769.       "issue_comment_url": "https://api.github.com/repos/shadowsocks/shadowsocks/issues/comments{/number}",
  1770.       "contents_url": "https://api.github.com/repos/shadowsocks/shadowsocks/contents/{+path}",
  1771.       "compare_url": "https://api.github.com/repos/shadowsocks/shadowsocks/compare/{base}...{head}",
  1772.       "merges_url": "https://api.github.com/repos/shadowsocks/shadowsocks/merges",
  1773.       "archive_url": "https://api.github.com/repos/shadowsocks/shadowsocks/{archive_format}{/ref}",
  1774.       "downloads_url": "https://api.github.com/repos/shadowsocks/shadowsocks/downloads",
  1775.       "issues_url": "https://api.github.com/repos/shadowsocks/shadowsocks/issues{/number}",
  1776.       "pulls_url": "https://api.github.com/repos/shadowsocks/shadowsocks/pulls{/number}",
  1777.       "milestones_url": "https://api.github.com/repos/shadowsocks/shadowsocks/milestones{/number}",
  1778.       "notifications_url": "https://api.github.com/repos/shadowsocks/shadowsocks/notifications{?since,all,participating}",
  1779.       "labels_url": "https://api.github.com/repos/shadowsocks/shadowsocks/labels{/name}",
  1780.       "releases_url": "https://api.github.com/repos/shadowsocks/shadowsocks/releases{/id}",
  1781.       "deployments_url": "https://api.github.com/repos/shadowsocks/shadowsocks/deployments",
  1782.       "created_at": "2012-04-20T13:10:49Z",
  1783.       "updated_at": "2019-06-29T12:06:48Z",
  1784.       "pushed_at": "2019-06-14T03:17:23Z",
  1785.       "git_url": "git://github.com/shadowsocks/shadowsocks.git",
  1786.       "ssh_url": "git@github.com:shadowsocks/shadowsocks.git",
  1787.       "clone_url": "https://github.com/shadowsocks/shadowsocks.git",
  1788.       "svn_url": "https://github.com/shadowsocks/shadowsocks",
  1789.       "homepage": "",
  1790.       "size": 891,
  1791.       "stargazers_count": 30647,
  1792.       "watchers_count": 30647,
  1793.       "language": "Python",
  1794.       "has_issues": false,
  1795.       "has_projects": true,
  1796.       "has_downloads": true,
  1797.       "has_wiki": true,
  1798.       "has_pages": false,
  1799.       "forks_count": 18682,
  1800.       "mirror_url": null,
  1801.       "archived": false,
  1802.       "disabled": false,
  1803.       "open_issues_count": 448,
  1804.       "license": null,
  1805.       "forks": 18682,
  1806.       "open_issues": 448,
  1807.       "watchers": 30647,
  1808.       "default_branch": "rm",
  1809.       "score": 1.0
  1810.     },
  1811.     {
  1812.       "id": 29290473,
  1813.       "node_id": "MDEwOlJlcG9zaXRvcnkyOTI5MDQ3Mw==",
  1814.       "name": "XX-Net",
  1815.       "full_name": "XX-net/XX-Net",
  1816.       "private": false,
  1817.       "owner": {
  1818.         "login": "XX-net",
  1819.         "id": 10395542,
  1820.         "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwMzk1NTQy",
  1821.         "avatar_url": "https://avatars2.githubusercontent.com/u/10395542?v=4",
  1822.         "gravatar_id": "",
  1823.         "url": "https://api.github.com/users/XX-net",
  1824.         "html_url": "https://github.com/XX-net",
  1825.         "followers_url": "https://api.github.com/users/XX-net/followers",
  1826.         "following_url": "https://api.github.com/users/XX-net/following{/other_user}",
  1827.         "gists_url": "https://api.github.com/users/XX-net/gists{/gist_id}",
  1828.         "starred_url": "https://api.github.com/users/XX-net/starred{/owner}{/repo}",
  1829.         "subscriptions_url": "https://api.github.com/users/XX-net/subscriptions",
  1830.         "organizations_url": "https://api.github.com/users/XX-net/orgs",
  1831.         "repos_url": "https://api.github.com/users/XX-net/repos",
  1832.         "events_url": "https://api.github.com/users/XX-net/events{/privacy}",
  1833.         "received_events_url": "https://api.github.com/users/XX-net/received_events",
  1834.         "type": "Organization",
  1835.         "site_admin": false
  1836.       },
  1837.       "html_url": "https://github.com/XX-net/XX-Net",
  1838.       "description": "a web proxy tool",
  1839.       "fork": false,
  1840.       "url": "https://api.github.com/repos/XX-net/XX-Net",
  1841.       "forks_url": "https://api.github.com/repos/XX-net/XX-Net/forks",
  1842.       "keys_url": "https://api.github.com/repos/XX-net/XX-Net/keys{/key_id}",
  1843.       "collaborators_url": "https://api.github.com/repos/XX-net/XX-Net/collaborators{/collaborator}",
  1844.       "teams_url": "https://api.github.com/repos/XX-net/XX-Net/teams",
  1845.       "hooks_url": "https://api.github.com/repos/XX-net/XX-Net/hooks",
  1846.       "issue_events_url": "https://api.github.com/repos/XX-net/XX-Net/issues/events{/number}",
  1847.       "events_url": "https://api.github.com/repos/XX-net/XX-Net/events",
  1848.       "assignees_url": "https://api.github.com/repos/XX-net/XX-Net/assignees{/user}",
  1849.       "branches_url": "https://api.github.com/repos/XX-net/XX-Net/branches{/branch}",
  1850.       "tags_url": "https://api.github.com/repos/XX-net/XX-Net/tags",
  1851.       "blobs_url": "https://api.github.com/repos/XX-net/XX-Net/git/blobs{/sha}",
  1852.       "git_tags_url": "https://api.github.com/repos/XX-net/XX-Net/git/tags{/sha}",
  1853.       "git_refs_url": "https://api.github.com/repos/XX-net/XX-Net/git/refs{/sha}",
  1854.       "trees_url": "https://api.github.com/repos/XX-net/XX-Net/git/trees{/sha}",
  1855.       "statuses_url": "https://api.github.com/repos/XX-net/XX-Net/statuses/{sha}",
  1856.       "languages_url": "https://api.github.com/repos/XX-net/XX-Net/languages",
  1857.       "stargazers_url": "https://api.github.com/repos/XX-net/XX-Net/stargazers",
  1858.       "contributors_url": "https://api.github.com/repos/XX-net/XX-Net/contributors",
  1859.       "subscribers_url": "https://api.github.com/repos/XX-net/XX-Net/subscribers",
  1860.       "subscription_url": "https://api.github.com/repos/XX-net/XX-Net/subscription",
  1861.       "commits_url": "https://api.github.com/repos/XX-net/XX-Net/commits{/sha}",
  1862.       "git_commits_url": "https://api.github.com/repos/XX-net/XX-Net/git/commits{/sha}",
  1863.       "comments_url": "https://api.github.com/repos/XX-net/XX-Net/comments{/number}",
  1864.       "issue_comment_url": "https://api.github.com/repos/XX-net/XX-Net/issues/comments{/number}",
  1865.       "contents_url": "https://api.github.com/repos/XX-net/XX-Net/contents/{+path}",
  1866.       "compare_url": "https://api.github.com/repos/XX-net/XX-Net/compare/{base}...{head}",
  1867.       "merges_url": "https://api.github.com/repos/XX-net/XX-Net/merges",
  1868.       "archive_url": "https://api.github.com/repos/XX-net/XX-Net/{archive_format}{/ref}",
  1869.       "downloads_url": "https://api.github.com/repos/XX-net/XX-Net/downloads",
  1870.       "issues_url": "https://api.github.com/repos/XX-net/XX-Net/issues{/number}",
  1871.       "pulls_url": "https://api.github.com/repos/XX-net/XX-Net/pulls{/number}",
  1872.       "milestones_url": "https://api.github.com/repos/XX-net/XX-Net/milestones{/number}",
  1873.       "notifications_url": "https://api.github.com/repos/XX-net/XX-Net/notifications{?since,all,participating}",
  1874.       "labels_url": "https://api.github.com/repos/XX-net/XX-Net/labels{/name}",
  1875.       "releases_url": "https://api.github.com/repos/XX-net/XX-Net/releases{/id}",
  1876.       "deployments_url": "https://api.github.com/repos/XX-net/XX-Net/deployments",
  1877.       "created_at": "2015-01-15T09:35:51Z",
  1878.       "updated_at": "2019-06-29T09:48:08Z",
  1879.       "pushed_at": "2019-06-19T08:09:48Z",
  1880.       "git_url": "git://github.com/XX-net/XX-Net.git",
  1881.       "ssh_url": "git@github.com:XX-net/XX-Net.git",
  1882.       "clone_url": "https://github.com/XX-net/XX-Net.git",
  1883.       "svn_url": "https://github.com/XX-net/XX-Net",
  1884.       "homepage": "",
  1885.       "size": 38923,
  1886.       "stargazers_count": 28096,
  1887.       "watchers_count": 28096,
  1888.       "language": "Python",
  1889.       "has_issues": true,
  1890.       "has_projects": true,
  1891.       "has_downloads": true,
  1892.       "has_wiki": true,
  1893.       "has_pages": false,
  1894.       "forks_count": 7604,
  1895.       "mirror_url": null,
  1896.       "archived": false,
  1897.       "disabled": false,
  1898.       "open_issues_count": 7795,
  1899.       "license": null,
  1900.       "forks": 7604,
  1901.       "open_issues": 7795,
  1902.       "watchers": 28096,
  1903.       "default_branch": "master",
  1904.       "score": 1.0
  1905.     },
  1906.     {
  1907.       "id": 5483330,
  1908.       "node_id": "MDEwOlJlcG9zaXRvcnk1NDgzMzMw",
  1909.       "name": "you-get",
  1910.       "full_name": "soimort/you-get",
  1911.       "private": false,
  1912.       "owner": {
  1913.         "login": "soimort",
  1914.         "id": 342945,
  1915.         "node_id": "MDQ6VXNlcjM0Mjk0NQ==",
  1916.         "avatar_url": "https://avatars0.githubusercontent.com/u/342945?v=4",
  1917.         "gravatar_id": "",
  1918.         "url": "https://api.github.com/users/soimort",
  1919.         "html_url": "https://github.com/soimort",
  1920.         "followers_url": "https://api.github.com/users/soimort/followers",
  1921.         "following_url": "https://api.github.com/users/soimort/following{/other_user}",
  1922.         "gists_url": "https://api.github.com/users/soimort/gists{/gist_id}",
  1923.         "starred_url": "https://api.github.com/users/soimort/starred{/owner}{/repo}",
  1924.         "subscriptions_url": "https://api.github.com/users/soimort/subscriptions",
  1925.         "organizations_url": "https://api.github.com/users/soimort/orgs",
  1926.         "repos_url": "https://api.github.com/users/soimort/repos",
  1927.         "events_url": "https://api.github.com/users/soimort/events{/privacy}",
  1928.         "received_events_url": "https://api.github.com/users/soimort/received_events",
  1929.         "type": "User",
  1930.         "site_admin": false
  1931.       },
  1932.       "html_url": "https://github.com/soimort/you-get",
  1933.       "description": ":arrow_double_down: Dumb downloader that scrapes the web",
  1934.       "fork": false,
  1935.       "url": "https://api.github.com/repos/soimort/you-get",
  1936.       "forks_url": "https://api.github.com/repos/soimort/you-get/forks",
  1937.       "keys_url": "https://api.github.com/repos/soimort/you-get/keys{/key_id}",
  1938.       "collaborators_url": "https://api.github.com/repos/soimort/you-get/collaborators{/collaborator}",
  1939.       "teams_url": "https://api.github.com/repos/soimort/you-get/teams",
  1940.       "hooks_url": "https://api.github.com/repos/soimort/you-get/hooks",
  1941.       "issue_events_url": "https://api.github.com/repos/soimort/you-get/issues/events{/number}",
  1942.       "events_url": "https://api.github.com/repos/soimort/you-get/events",
  1943.       "assignees_url": "https://api.github.com/repos/soimort/you-get/assignees{/user}",
  1944.       "branches_url": "https://api.github.com/repos/soimort/you-get/branches{/branch}",
  1945.       "tags_url": "https://api.github.com/repos/soimort/you-get/tags",
  1946.       "blobs_url": "https://api.github.com/repos/soimort/you-get/git/blobs{/sha}",
  1947.       "git_tags_url": "https://api.github.com/repos/soimort/you-get/git/tags{/sha}",
  1948.       "git_refs_url": "https://api.github.com/repos/soimort/you-get/git/refs{/sha}",
  1949.       "trees_url": "https://api.github.com/repos/soimort/you-get/git/trees{/sha}",
  1950.       "statuses_url": "https://api.github.com/repos/soimort/you-get/statuses/{sha}",
  1951.       "languages_url": "https://api.github.com/repos/soimort/you-get/languages",
  1952.       "stargazers_url": "https://api.github.com/repos/soimort/you-get/stargazers",
  1953.       "contributors_url": "https://api.github.com/repos/soimort/you-get/contributors",
  1954.       "subscribers_url": "https://api.github.com/repos/soimort/you-get/subscribers",
  1955.       "subscription_url": "https://api.github.com/repos/soimort/you-get/subscription",
  1956.       "commits_url": "https://api.github.com/repos/soimort/you-get/commits{/sha}",
  1957.       "git_commits_url": "https://api.github.com/repos/soimort/you-get/git/commits{/sha}",
  1958.       "comments_url": "https://api.github.com/repos/soimort/you-get/comments{/number}",
  1959.       "issue_comment_url": "https://api.github.com/repos/soimort/you-get/issues/comments{/number}",
  1960.       "contents_url": "https://api.github.com/repos/soimort/you-get/contents/{+path}",
  1961.       "compare_url": "https://api.github.com/repos/soimort/you-get/compare/{base}...{head}",
  1962.       "merges_url": "https://api.github.com/repos/soimort/you-get/merges",
  1963.       "archive_url": "https://api.github.com/repos/soimort/you-get/{archive_format}{/ref}",
  1964.       "downloads_url": "https://api.github.com/repos/soimort/you-get/downloads",
  1965.       "issues_url": "https://api.github.com/repos/soimort/you-get/issues{/number}",
  1966.       "pulls_url": "https://api.github.com/repos/soimort/you-get/pulls{/number}",
  1967.       "milestones_url": "https://api.github.com/repos/soimort/you-get/milestones{/number}",
  1968.       "notifications_url": "https://api.github.com/repos/soimort/you-get/notifications{?since,all,participating}",
  1969.       "labels_url": "https://api.github.com/repos/soimort/you-get/labels{/name}",
  1970.       "releases_url": "https://api.github.com/repos/soimort/you-get/releases{/id}",
  1971.       "deployments_url": "https://api.github.com/repos/soimort/you-get/deployments",
  1972.       "created_at": "2012-08-20T15:53:36Z",
  1973.       "updated_at": "2019-06-29T12:27:18Z",
  1974.       "pushed_at": "2019-06-18T14:48:57Z",
  1975.       "git_url": "git://github.com/soimort/you-get.git",
  1976.       "ssh_url": "git@github.com:soimort/you-get.git",
  1977.       "clone_url": "https://github.com/soimort/you-get.git",
  1978.       "svn_url": "https://github.com/soimort/you-get",
  1979.       "homepage": "https://you-get.org/",
  1980.       "size": 3135,
  1981.       "stargazers_count": 25348,
  1982.       "watchers_count": 25348,
  1983.       "language": "Python",
  1984.       "has_issues": false,
  1985.       "has_projects": true,
  1986.       "has_downloads": true,
  1987.       "has_wiki": true,
  1988.       "has_pages": true,
  1989.       "forks_count": 5052,
  1990.       "mirror_url": null,
  1991.       "archived": false,
  1992.       "disabled": false,
  1993.       "open_issues_count": 317,
  1994.       "license": {
  1995.         "key": "mit",
  1996.         "name": "MIT License",
  1997.         "spdx_id": "MIT",
  1998.         "url": "https://api.github.com/licenses/mit",
  1999.         "node_id": "MDc6TGljZW5zZTEz"
  2000.       },
  2001.       "forks": 5052,
  2002.       "open_issues": 317,
  2003.       "watchers": 25348,
  2004.       "default_branch": "develop",
  2005.       "score": 1.0
  2006.     },
  2007.     {
  2008.       "id": 26516210,
  2009.       "node_id": "MDEwOlJlcG9zaXRvcnkyNjUxNjIxMA==",
  2010.       "name": "certbot",
  2011.       "full_name": "certbot/certbot",
  2012.       "private": false,
  2013.       "owner": {
  2014.         "login": "certbot",
  2015.         "id": 17889013,
  2016.         "node_id": "MDEyOk9yZ2FuaXphdGlvbjE3ODg5MDEz",
  2017.         "avatar_url": "https://avatars2.githubusercontent.com/u/17889013?v=4",
  2018.         "gravatar_id": "",
  2019.         "url": "https://api.github.com/users/certbot",
  2020.         "html_url": "https://github.com/certbot",
  2021.         "followers_url": "https://api.github.com/users/certbot/followers",
  2022.         "following_url": "https://api.github.com/users/certbot/following{/other_user}",
  2023.         "gists_url": "https://api.github.com/users/certbot/gists{/gist_id}",
  2024.         "starred_url": "https://api.github.com/users/certbot/starred{/owner}{/repo}",
  2025.         "subscriptions_url": "https://api.github.com/users/certbot/subscriptions",
  2026.         "organizations_url": "https://api.github.com/users/certbot/orgs",
  2027.         "repos_url": "https://api.github.com/users/certbot/repos",
  2028.         "events_url": "https://api.github.com/users/certbot/events{/privacy}",
  2029.         "received_events_url": "https://api.github.com/users/certbot/received_events",
  2030.         "type": "Organization",
  2031.         "site_admin": false
  2032.       },
  2033.       "html_url": "https://github.com/certbot/certbot",
  2034.       "description": "Certbot is EFF's tool to obtain certs from Let's Encrypt and (optionally) auto-enable HTTPS on your server.  It can also act as a client for any other CA that uses the ACME protocol.",
  2035.       "fork": false,
  2036.       "url": "https://api.github.com/repos/certbot/certbot",
  2037.       "forks_url": "https://api.github.com/repos/certbot/certbot/forks",
  2038.       "keys_url": "https://api.github.com/repos/certbot/certbot/keys{/key_id}",
  2039.       "collaborators_url": "https://api.github.com/repos/certbot/certbot/collaborators{/collaborator}",
  2040.       "teams_url": "https://api.github.com/repos/certbot/certbot/teams",
  2041.       "hooks_url": "https://api.github.com/repos/certbot/certbot/hooks",
  2042.       "issue_events_url": "https://api.github.com/repos/certbot/certbot/issues/events{/number}",
  2043.       "events_url": "https://api.github.com/repos/certbot/certbot/events",
  2044.       "assignees_url": "https://api.github.com/repos/certbot/certbot/assignees{/user}",
  2045.       "branches_url": "https://api.github.com/repos/certbot/certbot/branches{/branch}",
  2046.       "tags_url": "https://api.github.com/repos/certbot/certbot/tags",
  2047.       "blobs_url": "https://api.github.com/repos/certbot/certbot/git/blobs{/sha}",
  2048.       "git_tags_url": "https://api.github.com/repos/certbot/certbot/git/tags{/sha}",
  2049.       "git_refs_url": "https://api.github.com/repos/certbot/certbot/git/refs{/sha}",
  2050.       "trees_url": "https://api.github.com/repos/certbot/certbot/git/trees{/sha}",
  2051.       "statuses_url": "https://api.github.com/repos/certbot/certbot/statuses/{sha}",
  2052.       "languages_url": "https://api.github.com/repos/certbot/certbot/languages",
  2053.       "stargazers_url": "https://api.github.com/repos/certbot/certbot/stargazers",
  2054.       "contributors_url": "https://api.github.com/repos/certbot/certbot/contributors",
  2055.       "subscribers_url": "https://api.github.com/repos/certbot/certbot/subscribers",
  2056.       "subscription_url": "https://api.github.com/repos/certbot/certbot/subscription",
  2057.       "commits_url": "https://api.github.com/repos/certbot/certbot/commits{/sha}",
  2058.       "git_commits_url": "https://api.github.com/repos/certbot/certbot/git/commits{/sha}",
  2059.       "comments_url": "https://api.github.com/repos/certbot/certbot/comments{/number}",
  2060.       "issue_comment_url": "https://api.github.com/repos/certbot/certbot/issues/comments{/number}",
  2061.       "contents_url": "https://api.github.com/repos/certbot/certbot/contents/{+path}",
  2062.       "compare_url": "https://api.github.com/repos/certbot/certbot/compare/{base}...{head}",
  2063.       "merges_url": "https://api.github.com/repos/certbot/certbot/merges",
  2064.       "archive_url": "https://api.github.com/repos/certbot/certbot/{archive_format}{/ref}",
  2065.       "downloads_url": "https://api.github.com/repos/certbot/certbot/downloads",
  2066.       "issues_url": "https://api.github.com/repos/certbot/certbot/issues{/number}",
  2067.       "pulls_url": "https://api.github.com/repos/certbot/certbot/pulls{/number}",
  2068.       "milestones_url": "https://api.github.com/repos/certbot/certbot/milestones{/number}",
  2069.       "notifications_url": "https://api.github.com/repos/certbot/certbot/notifications{?since,all,participating}",
  2070.       "labels_url": "https://api.github.com/repos/certbot/certbot/labels{/name}",
  2071.       "releases_url": "https://api.github.com/repos/certbot/certbot/releases{/id}",
  2072.       "deployments_url": "https://api.github.com/repos/certbot/certbot/deployments",
  2073.       "created_at": "2014-11-12T02:52:20Z",
  2074.       "updated_at": "2019-06-29T08:26:50Z",
  2075.       "pushed_at": "2019-06-28T23:01:29Z",
  2076.       "git_url": "git://github.com/certbot/certbot.git",
  2077.       "ssh_url": "git@github.com:certbot/certbot.git",
  2078.       "clone_url": "https://github.com/certbot/certbot.git",
  2079.       "svn_url": "https://github.com/certbot/certbot",
  2080.       "homepage": "",
  2081.       "size": 22305,
  2082.       "stargazers_count": 25275,
  2083.       "watchers_count": 25275,
  2084.       "language": "Python",
  2085.       "has_issues": true,
  2086.       "has_projects": true,
  2087.       "has_downloads": true,
  2088.       "has_wiki": false,
  2089.       "has_pages": false,
  2090.       "forks_count": 2608,
  2091.       "mirror_url": null,
  2092.       "archived": false,
  2093.       "disabled": false,
  2094.       "open_issues_count": 534,
  2095.       "license": {
  2096.         "key": "other",
  2097.         "name": "Other",
  2098.         "spdx_id": "NOASSERTION",
  2099.         "url": null,
  2100.         "node_id": "MDc6TGljZW5zZTA="
  2101.       },
  2102.       "forks": 2608,
  2103.       "open_issues": 534,
  2104.       "watchers": 25275,
  2105.       "default_branch": "master",
  2106.       "score": 1.0
  2107.     },
  2108.     {
  2109.       "id": 81598961,
  2110.       "node_id": "MDEwOlJlcG9zaXRvcnk4MTU5ODk2MQ==",
  2111.       "name": "cpython",
  2112.       "full_name": "python/cpython",
  2113.       "private": false,
  2114.       "owner": {
  2115.         "login": "python",
  2116.         "id": 1525981,
  2117.         "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1MjU5ODE=",
  2118.         "avatar_url": "https://avatars3.githubusercontent.com/u/1525981?v=4",
  2119.         "gravatar_id": "",
  2120.         "url": "https://api.github.com/users/python",
  2121.         "html_url": "https://github.com/python",
  2122.         "followers_url": "https://api.github.com/users/python/followers",
  2123.         "following_url": "https://api.github.com/users/python/following{/other_user}",
  2124.         "gists_url": "https://api.github.com/users/python/gists{/gist_id}",
  2125.         "starred_url": "https://api.github.com/users/python/starred{/owner}{/repo}",
  2126.         "subscriptions_url": "https://api.github.com/users/python/subscriptions",
  2127.         "organizations_url": "https://api.github.com/users/python/orgs",
  2128.         "repos_url": "https://api.github.com/users/python/repos",
  2129.         "events_url": "https://api.github.com/users/python/events{/privacy}",
  2130.         "received_events_url": "https://api.github.com/users/python/received_events",
  2131.         "type": "Organization",
  2132.         "site_admin": false
  2133.       },
  2134.       "html_url": "https://github.com/python/cpython",
  2135.       "description": "The Python programming language",
  2136.       "fork": false,
  2137.       "url": "https://api.github.com/repos/python/cpython",
  2138.       "forks_url": "https://api.github.com/repos/python/cpython/forks",
  2139.       "keys_url": "https://api.github.com/repos/python/cpython/keys{/key_id}",
  2140.       "collaborators_url": "https://api.github.com/repos/python/cpython/collaborators{/collaborator}",
  2141.       "teams_url": "https://api.github.com/repos/python/cpython/teams",
  2142.       "hooks_url": "https://api.github.com/repos/python/cpython/hooks",
  2143.       "issue_events_url": "https://api.github.com/repos/python/cpython/issues/events{/number}",
  2144.       "events_url": "https://api.github.com/repos/python/cpython/events",
  2145.       "assignees_url": "https://api.github.com/repos/python/cpython/assignees{/user}",
  2146.       "branches_url": "https://api.github.com/repos/python/cpython/branches{/branch}",
  2147.       "tags_url": "https://api.github.com/repos/python/cpython/tags",
  2148.       "blobs_url": "https://api.github.com/repos/python/cpython/git/blobs{/sha}",
  2149.       "git_tags_url": "https://api.github.com/repos/python/cpython/git/tags{/sha}",
  2150.       "git_refs_url": "https://api.github.com/repos/python/cpython/git/refs{/sha}",
  2151.       "trees_url": "https://api.github.com/repos/python/cpython/git/trees{/sha}",
  2152.       "statuses_url": "https://api.github.com/repos/python/cpython/statuses/{sha}",
  2153.       "languages_url": "https://api.github.com/repos/python/cpython/languages",
  2154.       "stargazers_url": "https://api.github.com/repos/python/cpython/stargazers",
  2155.       "contributors_url": "https://api.github.com/repos/python/cpython/contributors",
  2156.       "subscribers_url": "https://api.github.com/repos/python/cpython/subscribers",
  2157.       "subscription_url": "https://api.github.com/repos/python/cpython/subscription",
  2158.       "commits_url": "https://api.github.com/repos/python/cpython/commits{/sha}",
  2159.       "git_commits_url": "https://api.github.com/repos/python/cpython/git/commits{/sha}",
  2160.       "comments_url": "https://api.github.com/repos/python/cpython/comments{/number}",
  2161.       "issue_comment_url": "https://api.github.com/repos/python/cpython/issues/comments{/number}",
  2162.       "contents_url": "https://api.github.com/repos/python/cpython/contents/{+path}",
  2163.       "compare_url": "https://api.github.com/repos/python/cpython/compare/{base}...{head}",
  2164.       "merges_url": "https://api.github.com/repos/python/cpython/merges",
  2165.       "archive_url": "https://api.github.com/repos/python/cpython/{archive_format}{/ref}",
  2166.       "downloads_url": "https://api.github.com/repos/python/cpython/downloads",
  2167.       "issues_url": "https://api.github.com/repos/python/cpython/issues{/number}",
  2168.       "pulls_url": "https://api.github.com/repos/python/cpython/pulls{/number}",
  2169.       "milestones_url": "https://api.github.com/repos/python/cpython/milestones{/number}",
  2170.       "notifications_url": "https://api.github.com/repos/python/cpython/notifications{?since,all,participating}",
  2171.       "labels_url": "https://api.github.com/repos/python/cpython/labels{/name}",
  2172.       "releases_url": "https://api.github.com/repos/python/cpython/releases{/id}",
  2173.       "deployments_url": "https://api.github.com/repos/python/cpython/deployments",
  2174.       "created_at": "2017-02-10T19:23:51Z",
  2175.       "updated_at": "2019-06-29T12:22:50Z",
  2176.       "pushed_at": "2019-06-29T11:02:12Z",
  2177.       "git_url": "git://github.com/python/cpython.git",
  2178.       "ssh_url": "git@github.com:python/cpython.git",
  2179.       "clone_url": "https://github.com/python/cpython.git",
  2180.       "svn_url": "https://github.com/python/cpython",
  2181.       "homepage": "https://www.python.org/",
  2182.       "size": 289676,
  2183.       "stargazers_count": 25149,
  2184.       "watchers_count": 25149,
  2185.       "language": "Python",
  2186.       "has_issues": false,
  2187.       "has_projects": false,
  2188.       "has_downloads": true,
  2189.       "has_wiki": false,
  2190.       "has_pages": false,
  2191.       "forks_count": 10440,
  2192.       "mirror_url": null,
  2193.       "archived": false,
  2194.       "disabled": false,
  2195.       "open_issues_count": 972,
  2196.       "license": {
  2197.         "key": "other",
  2198.         "name": "Other",
  2199.         "spdx_id": "NOASSERTION",
  2200.         "url": null,
  2201.         "node_id": "MDc6TGljZW5zZTA="
  2202.       },
  2203.       "forks": 10440,
  2204.       "open_issues": 972,
  2205.       "watchers": 25149,
  2206.       "default_branch": "master",
  2207.       "score": 1.0
  2208.     },
  2209.     {
  2210.       "id": 83844720,
  2211.       "node_id": "MDEwOlJlcG9zaXRvcnk4Mzg0NDcyMA==",
  2212.       "name": "face_recognition",
  2213.       "full_name": "ageitgey/face_recognition",
  2214.       "private": false,
  2215.       "owner": {
  2216.         "login": "ageitgey",
  2217.         "id": 896692,
  2218.         "node_id": "MDQ6VXNlcjg5NjY5Mg==",
  2219.         "avatar_url": "https://avatars1.githubusercontent.com/u/896692?v=4",
  2220.         "gravatar_id": "",
  2221.         "url": "https://api.github.com/users/ageitgey",
  2222.         "html_url": "https://github.com/ageitgey",
  2223.         "followers_url": "https://api.github.com/users/ageitgey/followers",
  2224.         "following_url": "https://api.github.com/users/ageitgey/following{/other_user}",
  2225.         "gists_url": "https://api.github.com/users/ageitgey/gists{/gist_id}",
  2226.         "starred_url": "https://api.github.com/users/ageitgey/starred{/owner}{/repo}",
  2227.         "subscriptions_url": "https://api.github.com/users/ageitgey/subscriptions",
  2228.         "organizations_url": "https://api.github.com/users/ageitgey/orgs",
  2229.         "repos_url": "https://api.github.com/users/ageitgey/repos",
  2230.         "events_url": "https://api.github.com/users/ageitgey/events{/privacy}",
  2231.         "received_events_url": "https://api.github.com/users/ageitgey/received_events",
  2232.         "type": "User",
  2233.         "site_admin": false
  2234.       },
  2235.       "html_url": "https://github.com/ageitgey/face_recognition",
  2236.       "description": "The world's simplest facial recognition api for Python and the command line",
  2237.       "fork": false,
  2238.       "url": "https://api.github.com/repos/ageitgey/face_recognition",
  2239.       "forks_url": "https://api.github.com/repos/ageitgey/face_recognition/forks",
  2240.       "keys_url": "https://api.github.com/repos/ageitgey/face_recognition/keys{/key_id}",
  2241.       "collaborators_url": "https://api.github.com/repos/ageitgey/face_recognition/collaborators{/collaborator}",
  2242.       "teams_url": "https://api.github.com/repos/ageitgey/face_recognition/teams",
  2243.       "hooks_url": "https://api.github.com/repos/ageitgey/face_recognition/hooks",
  2244.       "issue_events_url": "https://api.github.com/repos/ageitgey/face_recognition/issues/events{/number}",
  2245.       "events_url": "https://api.github.com/repos/ageitgey/face_recognition/events",
  2246.       "assignees_url": "https://api.github.com/repos/ageitgey/face_recognition/assignees{/user}",
  2247.       "branches_url": "https://api.github.com/repos/ageitgey/face_recognition/branches{/branch}",
  2248.       "tags_url": "https://api.github.com/repos/ageitgey/face_recognition/tags",
  2249.       "blobs_url": "https://api.github.com/repos/ageitgey/face_recognition/git/blobs{/sha}",
  2250.       "git_tags_url": "https://api.github.com/repos/ageitgey/face_recognition/git/tags{/sha}",
  2251.       "git_refs_url": "https://api.github.com/repos/ageitgey/face_recognition/git/refs{/sha}",
  2252.       "trees_url": "https://api.github.com/repos/ageitgey/face_recognition/git/trees{/sha}",
  2253.       "statuses_url": "https://api.github.com/repos/ageitgey/face_recognition/statuses/{sha}",
  2254.       "languages_url": "https://api.github.com/repos/ageitgey/face_recognition/languages",
  2255.       "stargazers_url": "https://api.github.com/repos/ageitgey/face_recognition/stargazers",
  2256.       "contributors_url": "https://api.github.com/repos/ageitgey/face_recognition/contributors",
  2257.       "subscribers_url": "https://api.github.com/repos/ageitgey/face_recognition/subscribers",
  2258.       "subscription_url": "https://api.github.com/repos/ageitgey/face_recognition/subscription",
  2259.       "commits_url": "https://api.github.com/repos/ageitgey/face_recognition/commits{/sha}",
  2260.       "git_commits_url": "https://api.github.com/repos/ageitgey/face_recognition/git/commits{/sha}",
  2261.       "comments_url": "https://api.github.com/repos/ageitgey/face_recognition/comments{/number}",
  2262.       "issue_comment_url": "https://api.github.com/repos/ageitgey/face_recognition/issues/comments{/number}",
  2263.       "contents_url": "https://api.github.com/repos/ageitgey/face_recognition/contents/{+path}",
  2264.       "compare_url": "https://api.github.com/repos/ageitgey/face_recognition/compare/{base}...{head}",
  2265.       "merges_url": "https://api.github.com/repos/ageitgey/face_recognition/merges",
  2266.       "archive_url": "https://api.github.com/repos/ageitgey/face_recognition/{archive_format}{/ref}",
  2267.       "downloads_url": "https://api.github.com/repos/ageitgey/face_recognition/downloads",
  2268.       "issues_url": "https://api.github.com/repos/ageitgey/face_recognition/issues{/number}",
  2269.       "pulls_url": "https://api.github.com/repos/ageitgey/face_recognition/pulls{/number}",
  2270.       "milestones_url": "https://api.github.com/repos/ageitgey/face_recognition/milestones{/number}",
  2271.       "notifications_url": "https://api.github.com/repos/ageitgey/face_recognition/notifications{?since,all,participating}",
  2272.       "labels_url": "https://api.github.com/repos/ageitgey/face_recognition/labels{/name}",
  2273.       "releases_url": "https://api.github.com/repos/ageitgey/face_recognition/releases{/id}",
  2274.       "deployments_url": "https://api.github.com/repos/ageitgey/face_recognition/deployments",
  2275.       "created_at": "2017-03-03T21:52:39Z",
  2276.       "updated_at": "2019-06-29T10:44:14Z",
  2277.       "pushed_at": "2019-06-29T03:54:41Z",
  2278.       "git_url": "git://github.com/ageitgey/face_recognition.git",
  2279.       "ssh_url": "git@github.com:ageitgey/face_recognition.git",
  2280.       "clone_url": "https://github.com/ageitgey/face_recognition.git",
  2281.       "svn_url": "https://github.com/ageitgey/face_recognition",
  2282.       "homepage": "",
  2283.       "size": 103846,
  2284.       "stargazers_count": 25136,
  2285.       "watchers_count": 25136,
  2286.       "language": "Python",
  2287.       "has_issues": true,
  2288.       "has_projects": true,
  2289.       "has_downloads": true,
  2290.       "has_wiki": true,
  2291.       "has_pages": false,
  2292.       "forks_count": 6729,
  2293.       "mirror_url": null,
  2294.       "archived": false,
  2295.       "disabled": false,
  2296.       "open_issues_count": 338,
  2297.       "license": {
  2298.         "key": "mit",
  2299.         "name": "MIT License",
  2300.         "spdx_id": "MIT",
  2301.         "url": "https://api.github.com/licenses/mit",
  2302.         "node_id": "MDc6TGljZW5zZTEz"
  2303.       },
  2304.       "forks": 6729,
  2305.       "open_issues": 338,
  2306.       "watchers": 25136,
  2307.       "default_branch": "master",
  2308.       "score": 1.0
  2309.     },
  2310.     {
  2311.       "id": 12888993,
  2312.       "node_id": "MDEwOlJlcG9zaXRvcnkxMjg4ODk5Mw==",
  2313.       "name": "home-assistant",
  2314.       "full_name": "home-assistant/home-assistant",
  2315.       "private": false,
  2316.       "owner": {
  2317.         "login": "home-assistant",
  2318.         "id": 13844975,
  2319.         "node_id": "MDEyOk9yZ2FuaXphdGlvbjEzODQ0OTc1",
  2320.         "avatar_url": "https://avatars3.githubusercontent.com/u/13844975?v=4",
  2321.         "gravatar_id": "",
  2322.         "url": "https://api.github.com/users/home-assistant",
  2323.         "html_url": "https://github.com/home-assistant",
  2324.         "followers_url": "https://api.github.com/users/home-assistant/followers",
  2325.         "following_url": "https://api.github.com/users/home-assistant/following{/other_user}",
  2326.         "gists_url": "https://api.github.com/users/home-assistant/gists{/gist_id}",
  2327.         "starred_url": "https://api.github.com/users/home-assistant/starred{/owner}{/repo}",
  2328.         "subscriptions_url": "https://api.github.com/users/home-assistant/subscriptions",
  2329.         "organizations_url": "https://api.github.com/users/home-assistant/orgs",
  2330.         "repos_url": "https://api.github.com/users/home-assistant/repos",
  2331.         "events_url": "https://api.github.com/users/home-assistant/events{/privacy}",
  2332.         "received_events_url": "https://api.github.com/users/home-assistant/received_events",
  2333.         "type": "Organization",
  2334.         "site_admin": false
  2335.       },
  2336.       "html_url": "https://github.com/home-assistant/home-assistant",
  2337.       "description": ":house_with_garden: Open source home automation that puts local control and privacy first",
  2338.       "fork": false,
  2339.       "url": "https://api.github.com/repos/home-assistant/home-assistant",
  2340.       "forks_url": "https://api.github.com/repos/home-assistant/home-assistant/forks",
  2341.       "keys_url": "https://api.github.com/repos/home-assistant/home-assistant/keys{/key_id}",
  2342.       "collaborators_url": "https://api.github.com/repos/home-assistant/home-assistant/collaborators{/collaborator}",
  2343.       "teams_url": "https://api.github.com/repos/home-assistant/home-assistant/teams",
  2344.       "hooks_url": "https://api.github.com/repos/home-assistant/home-assistant/hooks",
  2345.       "issue_events_url": "https://api.github.com/repos/home-assistant/home-assistant/issues/events{/number}",
  2346.       "events_url": "https://api.github.com/repos/home-assistant/home-assistant/events",
  2347.       "assignees_url": "https://api.github.com/repos/home-assistant/home-assistant/assignees{/user}",
  2348.       "branches_url": "https://api.github.com/repos/home-assistant/home-assistant/branches{/branch}",
  2349.       "tags_url": "https://api.github.com/repos/home-assistant/home-assistant/tags",
  2350.       "blobs_url": "https://api.github.com/repos/home-assistant/home-assistant/git/blobs{/sha}",
  2351.       "git_tags_url": "https://api.github.com/repos/home-assistant/home-assistant/git/tags{/sha}",
  2352.       "git_refs_url": "https://api.github.com/repos/home-assistant/home-assistant/git/refs{/sha}",
  2353.       "trees_url": "https://api.github.com/repos/home-assistant/home-assistant/git/trees{/sha}",
  2354.       "statuses_url": "https://api.github.com/repos/home-assistant/home-assistant/statuses/{sha}",
  2355.       "languages_url": "https://api.github.com/repos/home-assistant/home-assistant/languages",
  2356.       "stargazers_url": "https://api.github.com/repos/home-assistant/home-assistant/stargazers",
  2357.       "contributors_url": "https://api.github.com/repos/home-assistant/home-assistant/contributors",
  2358.       "subscribers_url": "https://api.github.com/repos/home-assistant/home-assistant/subscribers",
  2359.       "subscription_url": "https://api.github.com/repos/home-assistant/home-assistant/subscription",
  2360.       "commits_url": "https://api.github.com/repos/home-assistant/home-assistant/commits{/sha}",
  2361.       "git_commits_url": "https://api.github.com/repos/home-assistant/home-assistant/git/commits{/sha}",
  2362.       "comments_url": "https://api.github.com/repos/home-assistant/home-assistant/comments{/number}",
  2363.       "issue_comment_url": "https://api.github.com/repos/home-assistant/home-assistant/issues/comments{/number}",
  2364.       "contents_url": "https://api.github.com/repos/home-assistant/home-assistant/contents/{+path}",
  2365.       "compare_url": "https://api.github.com/repos/home-assistant/home-assistant/compare/{base}...{head}",
  2366.       "merges_url": "https://api.github.com/repos/home-assistant/home-assistant/merges",
  2367.       "archive_url": "https://api.github.com/repos/home-assistant/home-assistant/{archive_format}{/ref}",
  2368.       "downloads_url": "https://api.github.com/repos/home-assistant/home-assistant/downloads",
  2369.       "issues_url": "https://api.github.com/repos/home-assistant/home-assistant/issues{/number}",
  2370.       "pulls_url": "https://api.github.com/repos/home-assistant/home-assistant/pulls{/number}",
  2371.       "milestones_url": "https://api.github.com/repos/home-assistant/home-assistant/milestones{/number}",
  2372.       "notifications_url": "https://api.github.com/repos/home-assistant/home-assistant/notifications{?since,all,participating}",
  2373.       "labels_url": "https://api.github.com/repos/home-assistant/home-assistant/labels{/name}",
  2374.       "releases_url": "https://api.github.com/repos/home-assistant/home-assistant/releases{/id}",
  2375.       "deployments_url": "https://api.github.com/repos/home-assistant/home-assistant/deployments",
  2376.       "created_at": "2013-09-17T07:29:48Z",
  2377.       "updated_at": "2019-06-29T13:07:44Z",
  2378.       "pushed_at": "2019-06-29T12:34:59Z",
  2379.       "git_url": "git://github.com/home-assistant/home-assistant.git",
  2380.       "ssh_url": "git@github.com:home-assistant/home-assistant.git",
  2381.       "clone_url": "https://github.com/home-assistant/home-assistant.git",
  2382.       "svn_url": "https://github.com/home-assistant/home-assistant",
  2383.       "homepage": "https://www.home-assistant.io",
  2384.       "size": 113668,
  2385.       "stargazers_count": 24499,
  2386.       "watchers_count": 24499,
  2387.       "language": "Python",
  2388.       "has_issues": true,
  2389.       "has_projects": true,
  2390.       "has_downloads": true,
  2391.       "has_wiki": false,
  2392.       "has_pages": false,
  2393.       "forks_count": 7146,
  2394.       "mirror_url": null,
  2395.       "archived": false,
  2396.       "disabled": false,
  2397.       "open_issues_count": 1281,
  2398.       "license": {
  2399.         "key": "apache-2.0",
  2400.         "name": "Apache License 2.0",
  2401.         "spdx_id": "Apache-2.0",
  2402.         "url": "https://api.github.com/licenses/apache-2.0",
  2403.         "node_id": "MDc6TGljZW5zZTI="
  2404.       },
  2405.       "forks": 7146,
  2406.       "open_issues": 1281,
  2407.       "watchers": 24499,
  2408.       "default_branch": "dev",
  2409.       "score": 1.0
  2410.     },
  2411.     {
  2412.       "id": 136328388,
  2413.       "node_id": "MDEwOlJlcG9zaXRvcnkxMzYzMjgzODg=",
  2414.       "name": "Algorithm_Interview_Notes-Chinese",
  2415.       "full_name": "imhuay/Algorithm_Interview_Notes-Chinese",
  2416.       "private": false,
  2417.       "owner": {
  2418.         "login": "imhuay",
  2419.         "id": 13265495,
  2420.         "node_id": "MDQ6VXNlcjEzMjY1NDk1",
  2421.         "avatar_url": "https://avatars2.githubusercontent.com/u/13265495?v=4",
  2422.         "gravatar_id": "",
  2423.         "url": "https://api.github.com/users/imhuay",
  2424.         "html_url": "https://github.com/imhuay",
  2425.         "followers_url": "https://api.github.com/users/imhuay/followers",
  2426.         "following_url": "https://api.github.com/users/imhuay/following{/other_user}",
  2427.         "gists_url": "https://api.github.com/users/imhuay/gists{/gist_id}",
  2428.         "starred_url": "https://api.github.com/users/imhuay/starred{/owner}{/repo}",
  2429.         "subscriptions_url": "https://api.github.com/users/imhuay/subscriptions",
  2430.         "organizations_url": "https://api.github.com/users/imhuay/orgs",
  2431.         "repos_url": "https://api.github.com/users/imhuay/repos",
  2432.         "events_url": "https://api.github.com/users/imhuay/events{/privacy}",
  2433.         "received_events_url": "https://api.github.com/users/imhuay/received_events",
  2434.         "type": "User",
  2435.         "site_admin": false
  2436.       },
  2437.       "html_url": "https://github.com/imhuay/Algorithm_Interview_Notes-Chinese",
  2438.       "description": "2018/2019/校招/春招/秋招/算法/机器学习(Machine Learning)/深度学习(Deep Learning)/自然语言处理(NLP)/C/C++/Python/面试笔记",
  2439.       "fork": false,
  2440.       "url": "https://api.github.com/repos/imhuay/Algorithm_Interview_Notes-Chinese",
  2441.       "forks_url": "https://api.github.com/repos/imhuay/Algorithm_Interview_Notes-Chinese/forks",
  2442.       "keys_url": "https://api.github.com/repos/imhuay/Algorithm_Interview_Notes-Chinese/keys{/key_id}",
  2443.       "collaborators_url": "https://api.github.com/repos/imhuay/Algorithm_Interview_Notes-Chinese/collaborators{/collaborator}",
  2444.       "teams_url": "https://api.github.com/repos/imhuay/Algorithm_Interview_Notes-Chinese/teams",
  2445.       "hooks_url": "https://api.github.com/repos/imhuay/Algorithm_Interview_Notes-Chinese/hooks",
  2446.       "issue_events_url": "https://api.github.com/repos/imhuay/Algorithm_Interview_Notes-Chinese/issues/events{/number}",
  2447.       "events_url": "https://api.github.com/repos/imhuay/Algorithm_Interview_Notes-Chinese/events",
  2448.       "assignees_url": "https://api.github.com/repos/imhuay/Algorithm_Interview_Notes-Chinese/assignees{/user}",
  2449.       "branches_url": "https://api.github.com/repos/imhuay/Algorithm_Interview_Notes-Chinese/branches{/branch}",
  2450.       "tags_url": "https://api.github.com/repos/imhuay/Algorithm_Interview_Notes-Chinese/tags",
  2451.       "blobs_url": "https://api.github.com/repos/imhuay/Algorithm_Interview_Notes-Chinese/git/blobs{/sha}",
  2452.       "git_tags_url": "https://api.github.com/repos/imhuay/Algorithm_Interview_Notes-Chinese/git/tags{/sha}",
  2453.       "git_refs_url": "https://api.github.com/repos/imhuay/Algorithm_Interview_Notes-Chinese/git/refs{/sha}",
  2454.       "trees_url": "https://api.github.com/repos/imhuay/Algorithm_Interview_Notes-Chinese/git/trees{/sha}",
  2455.       "statuses_url": "https://api.github.com/repos/imhuay/Algorithm_Interview_Notes-Chinese/statuses/{sha}",
  2456.       "languages_url": "https://api.github.com/repos/imhuay/Algorithm_Interview_Notes-Chinese/languages",
  2457.       "stargazers_url": "https://api.github.com/repos/imhuay/Algorithm_Interview_Notes-Chinese/stargazers",
  2458.       "contributors_url": "https://api.github.com/repos/imhuay/Algorithm_Interview_Notes-Chinese/contributors",
  2459.       "subscribers_url": "https://api.github.com/repos/imhuay/Algorithm_Interview_Notes-Chinese/subscribers",
  2460.       "subscription_url": "https://api.github.com/repos/imhuay/Algorithm_Interview_Notes-Chinese/subscription",
  2461.       "commits_url": "https://api.github.com/repos/imhuay/Algorithm_Interview_Notes-Chinese/commits{/sha}",
  2462.       "git_commits_url": "https://api.github.com/repos/imhuay/Algorithm_Interview_Notes-Chinese/git/commits{/sha}",
  2463.       "comments_url": "https://api.github.com/repos/imhuay/Algorithm_Interview_Notes-Chinese/comments{/number}",
  2464.       "issue_comment_url": "https://api.github.com/repos/imhuay/Algorithm_Interview_Notes-Chinese/issues/comments{/number}",
  2465.       "contents_url": "https://api.github.com/repos/imhuay/Algorithm_Interview_Notes-Chinese/contents/{+path}",
  2466.       "compare_url": "https://api.github.com/repos/imhuay/Algorithm_Interview_Notes-Chinese/compare/{base}...{head}",
  2467.       "merges_url": "https://api.github.com/repos/imhuay/Algorithm_Interview_Notes-Chinese/merges",
  2468.       "archive_url": "https://api.github.com/repos/imhuay/Algorithm_Interview_Notes-Chinese/{archive_format}{/ref}",
  2469.       "downloads_url": "https://api.github.com/repos/imhuay/Algorithm_Interview_Notes-Chinese/downloads",
  2470.       "issues_url": "https://api.github.com/repos/imhuay/Algorithm_Interview_Notes-Chinese/issues{/number}",
  2471.       "pulls_url": "https://api.github.com/repos/imhuay/Algorithm_Interview_Notes-Chinese/pulls{/number}",
  2472.       "milestones_url": "https://api.github.com/repos/imhuay/Algorithm_Interview_Notes-Chinese/milestones{/number}",
  2473.       "notifications_url": "https://api.github.com/repos/imhuay/Algorithm_Interview_Notes-Chinese/notifications{?since,all,participating}",
  2474.       "labels_url": "https://api.github.com/repos/imhuay/Algorithm_Interview_Notes-Chinese/labels{/name}",
  2475.       "releases_url": "https://api.github.com/repos/imhuay/Algorithm_Interview_Notes-Chinese/releases{/id}",
  2476.       "deployments_url": "https://api.github.com/repos/imhuay/Algorithm_Interview_Notes-Chinese/deployments",
  2477.       "created_at": "2018-06-06T12:53:14Z",
  2478.       "updated_at": "2019-06-29T08:24:23Z",
  2479.       "pushed_at": "2019-05-24T08:16:55Z",
  2480.       "git_url": "git://github.com/imhuay/Algorithm_Interview_Notes-Chinese.git",
  2481.       "ssh_url": "git@github.com:imhuay/Algorithm_Interview_Notes-Chinese.git",
  2482.       "clone_url": "https://github.com/imhuay/Algorithm_Interview_Notes-Chinese.git",
  2483.       "svn_url": "https://github.com/imhuay/Algorithm_Interview_Notes-Chinese",
  2484.       "homepage": "",
  2485.       "size": 233283,
  2486.       "stargazers_count": 24134,
  2487.       "watchers_count": 24134,
  2488.       "language": "Python",
  2489.       "has_issues": true,
  2490.       "has_projects": true,
  2491.       "has_downloads": true,
  2492.       "has_wiki": true,
  2493.       "has_pages": false,
  2494.       "forks_count": 7416,
  2495.       "mirror_url": null,
  2496.       "archived": false,
  2497.       "disabled": false,
  2498.       "open_issues_count": 26,
  2499.       "license": null,
  2500.       "forks": 7416,
  2501.       "open_issues": 26,
  2502.       "watchers": 24134,
  2503.       "default_branch": "master",
  2504.       "score": 1.0
  2505.     },
  2506.     {
  2507.       "id": 139824423,
  2508.       "node_id": "MDEwOlJlcG9zaXRvcnkxMzk4MjQ0MjM=",
  2509.       "name": "100-Days-Of-ML-Code",
  2510.       "full_name": "Avik-Jain/100-Days-Of-ML-Code",
  2511.       "private": false,
  2512.       "owner": {
  2513.         "login": "Avik-Jain",
  2514.         "id": 30073708,
  2515.         "node_id": "MDQ6VXNlcjMwMDczNzA4",
  2516.         "avatar_url": "https://avatars1.githubusercontent.com/u/30073708?v=4",
  2517.         "gravatar_id": "",
  2518.         "url": "https://api.github.com/users/Avik-Jain",
  2519.         "html_url": "https://github.com/Avik-Jain",
  2520.         "followers_url": "https://api.github.com/users/Avik-Jain/followers",
  2521.         "following_url": "https://api.github.com/users/Avik-Jain/following{/other_user}",
  2522.         "gists_url": "https://api.github.com/users/Avik-Jain/gists{/gist_id}",
  2523.         "starred_url": "https://api.github.com/users/Avik-Jain/starred{/owner}{/repo}",
  2524.         "subscriptions_url": "https://api.github.com/users/Avik-Jain/subscriptions",
  2525.         "organizations_url": "https://api.github.com/users/Avik-Jain/orgs",
  2526.         "repos_url": "https://api.github.com/users/Avik-Jain/repos",
  2527.         "events_url": "https://api.github.com/users/Avik-Jain/events{/privacy}",
  2528.         "received_events_url": "https://api.github.com/users/Avik-Jain/received_events",
  2529.         "type": "User",
  2530.         "site_admin": false
  2531.       },
  2532.       "html_url": "https://github.com/Avik-Jain/100-Days-Of-ML-Code",
  2533.       "description": "100 Days of ML Coding",
  2534.       "fork": false,
  2535.       "url": "https://api.github.com/repos/Avik-Jain/100-Days-Of-ML-Code",
  2536.       "forks_url": "https://api.github.com/repos/Avik-Jain/100-Days-Of-ML-Code/forks",
  2537.       "keys_url": "https://api.github.com/repos/Avik-Jain/100-Days-Of-ML-Code/keys{/key_id}",
  2538.       "collaborators_url": "https://api.github.com/repos/Avik-Jain/100-Days-Of-ML-Code/collaborators{/collaborator}",
  2539.       "teams_url": "https://api.github.com/repos/Avik-Jain/100-Days-Of-ML-Code/teams",
  2540.       "hooks_url": "https://api.github.com/repos/Avik-Jain/100-Days-Of-ML-Code/hooks",
  2541.       "issue_events_url": "https://api.github.com/repos/Avik-Jain/100-Days-Of-ML-Code/issues/events{/number}",
  2542.       "events_url": "https://api.github.com/repos/Avik-Jain/100-Days-Of-ML-Code/events",
  2543.       "assignees_url": "https://api.github.com/repos/Avik-Jain/100-Days-Of-ML-Code/assignees{/user}",
  2544.       "branches_url": "https://api.github.com/repos/Avik-Jain/100-Days-Of-ML-Code/branches{/branch}",
  2545.       "tags_url": "https://api.github.com/repos/Avik-Jain/100-Days-Of-ML-Code/tags",
  2546.       "blobs_url": "https://api.github.com/repos/Avik-Jain/100-Days-Of-ML-Code/git/blobs{/sha}",
  2547.       "git_tags_url": "https://api.github.com/repos/Avik-Jain/100-Days-Of-ML-Code/git/tags{/sha}",
  2548.       "git_refs_url": "https://api.github.com/repos/Avik-Jain/100-Days-Of-ML-Code/git/refs{/sha}",
  2549.       "trees_url": "https://api.github.com/repos/Avik-Jain/100-Days-Of-ML-Code/git/trees{/sha}",
  2550.       "statuses_url": "https://api.github.com/repos/Avik-Jain/100-Days-Of-ML-Code/statuses/{sha}",
  2551.       "languages_url": "https://api.github.com/repos/Avik-Jain/100-Days-Of-ML-Code/languages",
  2552.       "stargazers_url": "https://api.github.com/repos/Avik-Jain/100-Days-Of-ML-Code/stargazers",
  2553.       "contributors_url": "https://api.github.com/repos/Avik-Jain/100-Days-Of-ML-Code/contributors",
  2554.       "subscribers_url": "https://api.github.com/repos/Avik-Jain/100-Days-Of-ML-Code/subscribers",
  2555.       "subscription_url": "https://api.github.com/repos/Avik-Jain/100-Days-Of-ML-Code/subscription",
  2556.       "commits_url": "https://api.github.com/repos/Avik-Jain/100-Days-Of-ML-Code/commits{/sha}",
  2557.       "git_commits_url": "https://api.github.com/repos/Avik-Jain/100-Days-Of-ML-Code/git/commits{/sha}",
  2558.       "comments_url": "https://api.github.com/repos/Avik-Jain/100-Days-Of-ML-Code/comments{/number}",
  2559.       "issue_comment_url": "https://api.github.com/repos/Avik-Jain/100-Days-Of-ML-Code/issues/comments{/number}",
  2560.       "contents_url": "https://api.github.com/repos/Avik-Jain/100-Days-Of-ML-Code/contents/{+path}",
  2561.       "compare_url": "https://api.github.com/repos/Avik-Jain/100-Days-Of-ML-Code/compare/{base}...{head}",
  2562.       "merges_url": "https://api.github.com/repos/Avik-Jain/100-Days-Of-ML-Code/merges",
  2563.       "archive_url": "https://api.github.com/repos/Avik-Jain/100-Days-Of-ML-Code/{archive_format}{/ref}",
  2564.       "downloads_url": "https://api.github.com/repos/Avik-Jain/100-Days-Of-ML-Code/downloads",
  2565.       "issues_url": "https://api.github.com/repos/Avik-Jain/100-Days-Of-ML-Code/issues{/number}",
  2566.       "pulls_url": "https://api.github.com/repos/Avik-Jain/100-Days-Of-ML-Code/pulls{/number}",
  2567.       "milestones_url": "https://api.github.com/repos/Avik-Jain/100-Days-Of-ML-Code/milestones{/number}",
  2568.       "notifications_url": "https://api.github.com/repos/Avik-Jain/100-Days-Of-ML-Code/notifications{?since,all,participating}",
  2569.       "labels_url": "https://api.github.com/repos/Avik-Jain/100-Days-Of-ML-Code/labels{/name}",
  2570.       "releases_url": "https://api.github.com/repos/Avik-Jain/100-Days-Of-ML-Code/releases{/id}",
  2571.       "deployments_url": "https://api.github.com/repos/Avik-Jain/100-Days-Of-ML-Code/deployments",
  2572.       "created_at": "2018-07-05T09:11:43Z",
  2573.       "updated_at": "2019-06-29T12:48:37Z",
  2574.       "pushed_at": "2019-06-08T14:57:19Z",
  2575.       "git_url": "git://github.com/Avik-Jain/100-Days-Of-ML-Code.git",
  2576.       "ssh_url": "git@github.com:Avik-Jain/100-Days-Of-ML-Code.git",
  2577.       "clone_url": "https://github.com/Avik-Jain/100-Days-Of-ML-Code.git",
  2578.       "svn_url": "https://github.com/Avik-Jain/100-Days-Of-ML-Code",
  2579.       "homepage": "",
  2580.       "size": 10970,
  2581.       "stargazers_count": 23827,
  2582.       "watchers_count": 23827,
  2583.       "language": "Python",
  2584.       "has_issues": true,
  2585.       "has_projects": true,
  2586.       "has_downloads": true,
  2587.       "has_wiki": true,
  2588.       "has_pages": true,
  2589.       "forks_count": 5595,
  2590.       "mirror_url": null,
  2591.       "archived": false,
  2592.       "disabled": false,
  2593.       "open_issues_count": 41,
  2594.       "license": {
  2595.         "key": "mit",
  2596.         "name": "MIT License",
  2597.         "spdx_id": "MIT",
  2598.         "url": "https://api.github.com/licenses/mit",
  2599.         "node_id": "MDc6TGljZW5zZTEz"
  2600.       },
  2601.       "forks": 5595,
  2602.       "open_issues": 41,
  2603.       "watchers": 23827,
  2604.       "default_branch": "master",
  2605.       "score": 1.0
  2606.     },
  2607.     {
  2608.       "id": 70905478,
  2609.       "node_id": "MDEwOlJlcG9zaXRvcnk3MDkwNTQ3OA==",
  2610.       "name": "Deep-Learning-Papers-Reading-Roadmap",
  2611.       "full_name": "floodsung/Deep-Learning-Papers-Reading-Roadmap",
  2612.       "private": false,
  2613.       "owner": {
  2614.         "login": "floodsung",
  2615.         "id": 3880963,
  2616.         "node_id": "MDQ6VXNlcjM4ODA5NjM=",
  2617.         "avatar_url": "https://avatars0.githubusercontent.com/u/3880963?v=4",
  2618.         "gravatar_id": "",
  2619.         "url": "https://api.github.com/users/floodsung",
  2620.         "html_url": "https://github.com/floodsung",
  2621.         "followers_url": "https://api.github.com/users/floodsung/followers",
  2622.         "following_url": "https://api.github.com/users/floodsung/following{/other_user}",
  2623.         "gists_url": "https://api.github.com/users/floodsung/gists{/gist_id}",
  2624.         "starred_url": "https://api.github.com/users/floodsung/starred{/owner}{/repo}",
  2625.         "subscriptions_url": "https://api.github.com/users/floodsung/subscriptions",
  2626.         "organizations_url": "https://api.github.com/users/floodsung/orgs",
  2627.         "repos_url": "https://api.github.com/users/floodsung/repos",
  2628.         "events_url": "https://api.github.com/users/floodsung/events{/privacy}",
  2629.         "received_events_url": "https://api.github.com/users/floodsung/received_events",
  2630.         "type": "User",
  2631.         "site_admin": false
  2632.       },
  2633.       "html_url": "https://github.com/floodsung/Deep-Learning-Papers-Reading-Roadmap",
  2634.       "description": "Deep Learning papers reading roadmap for anyone who are eager to learn this amazing tech!",
  2635.       "fork": false,
  2636.       "url": "https://api.github.com/repos/floodsung/Deep-Learning-Papers-Reading-Roadmap",
  2637.       "forks_url": "https://api.github.com/repos/floodsung/Deep-Learning-Papers-Reading-Roadmap/forks",
  2638.       "keys_url": "https://api.github.com/repos/floodsung/Deep-Learning-Papers-Reading-Roadmap/keys{/key_id}",
  2639.       "collaborators_url": "https://api.github.com/repos/floodsung/Deep-Learning-Papers-Reading-Roadmap/collaborators{/collaborator}",
  2640.       "teams_url": "https://api.github.com/repos/floodsung/Deep-Learning-Papers-Reading-Roadmap/teams",
  2641.       "hooks_url": "https://api.github.com/repos/floodsung/Deep-Learning-Papers-Reading-Roadmap/hooks",
  2642.       "issue_events_url": "https://api.github.com/repos/floodsung/Deep-Learning-Papers-Reading-Roadmap/issues/events{/number}",
  2643.       "events_url": "https://api.github.com/repos/floodsung/Deep-Learning-Papers-Reading-Roadmap/events",
  2644.       "assignees_url": "https://api.github.com/repos/floodsung/Deep-Learning-Papers-Reading-Roadmap/assignees{/user}",
  2645.       "branches_url": "https://api.github.com/repos/floodsung/Deep-Learning-Papers-Reading-Roadmap/branches{/branch}",
  2646.       "tags_url": "https://api.github.com/repos/floodsung/Deep-Learning-Papers-Reading-Roadmap/tags",
  2647.       "blobs_url": "https://api.github.com/repos/floodsung/Deep-Learning-Papers-Reading-Roadmap/git/blobs{/sha}",
  2648.       "git_tags_url": "https://api.github.com/repos/floodsung/Deep-Learning-Papers-Reading-Roadmap/git/tags{/sha}",
  2649.       "git_refs_url": "https://api.github.com/repos/floodsung/Deep-Learning-Papers-Reading-Roadmap/git/refs{/sha}",
  2650.       "trees_url": "https://api.github.com/repos/floodsung/Deep-Learning-Papers-Reading-Roadmap/git/trees{/sha}",
  2651.       "statuses_url": "https://api.github.com/repos/floodsung/Deep-Learning-Papers-Reading-Roadmap/statuses/{sha}",
  2652.       "languages_url": "https://api.github.com/repos/floodsung/Deep-Learning-Papers-Reading-Roadmap/languages",
  2653.       "stargazers_url": "https://api.github.com/repos/floodsung/Deep-Learning-Papers-Reading-Roadmap/stargazers",
  2654.       "contributors_url": "https://api.github.com/repos/floodsung/Deep-Learning-Papers-Reading-Roadmap/contributors",
  2655.       "subscribers_url": "https://api.github.com/repos/floodsung/Deep-Learning-Papers-Reading-Roadmap/subscribers",
  2656.       "subscription_url": "https://api.github.com/repos/floodsung/Deep-Learning-Papers-Reading-Roadmap/subscription",
  2657.       "commits_url": "https://api.github.com/repos/floodsung/Deep-Learning-Papers-Reading-Roadmap/commits{/sha}",
  2658.       "git_commits_url": "https://api.github.com/repos/floodsung/Deep-Learning-Papers-Reading-Roadmap/git/commits{/sha}",
  2659.       "comments_url": "https://api.github.com/repos/floodsung/Deep-Learning-Papers-Reading-Roadmap/comments{/number}",
  2660.       "issue_comment_url": "https://api.github.com/repos/floodsung/Deep-Learning-Papers-Reading-Roadmap/issues/comments{/number}",
  2661.       "contents_url": "https://api.github.com/repos/floodsung/Deep-Learning-Papers-Reading-Roadmap/contents/{+path}",
  2662.       "compare_url": "https://api.github.com/repos/floodsung/Deep-Learning-Papers-Reading-Roadmap/compare/{base}...{head}",
  2663.       "merges_url": "https://api.github.com/repos/floodsung/Deep-Learning-Papers-Reading-Roadmap/merges",
  2664.       "archive_url": "https://api.github.com/repos/floodsung/Deep-Learning-Papers-Reading-Roadmap/{archive_format}{/ref}",
  2665.       "downloads_url": "https://api.github.com/repos/floodsung/Deep-Learning-Papers-Reading-Roadmap/downloads",
  2666.       "issues_url": "https://api.github.com/repos/floodsung/Deep-Learning-Papers-Reading-Roadmap/issues{/number}",
  2667.       "pulls_url": "https://api.github.com/repos/floodsung/Deep-Learning-Papers-Reading-Roadmap/pulls{/number}",
  2668.       "milestones_url": "https://api.github.com/repos/floodsung/Deep-Learning-Papers-Reading-Roadmap/milestones{/number}",
  2669.       "notifications_url": "https://api.github.com/repos/floodsung/Deep-Learning-Papers-Reading-Roadmap/notifications{?since,all,participating}",
  2670.       "labels_url": "https://api.github.com/repos/floodsung/Deep-Learning-Papers-Reading-Roadmap/labels{/name}",
  2671.       "releases_url": "https://api.github.com/repos/floodsung/Deep-Learning-Papers-Reading-Roadmap/releases{/id}",
  2672.       "deployments_url": "https://api.github.com/repos/floodsung/Deep-Learning-Papers-Reading-Roadmap/deployments",
  2673.       "created_at": "2016-10-14T11:49:48Z",
  2674.       "updated_at": "2019-06-29T11:38:13Z",
  2675.       "pushed_at": "2019-05-19T16:02:00Z",
  2676.       "git_url": "git://github.com/floodsung/Deep-Learning-Papers-Reading-Roadmap.git",
  2677.       "ssh_url": "git@github.com:floodsung/Deep-Learning-Papers-Reading-Roadmap.git",
  2678.       "clone_url": "https://github.com/floodsung/Deep-Learning-Papers-Reading-Roadmap.git",
  2679.       "svn_url": "https://github.com/floodsung/Deep-Learning-Papers-Reading-Roadmap",
  2680.       "homepage": "",
  2681.       "size": 3626,
  2682.       "stargazers_count": 23304,
  2683.       "watchers_count": 23304,
  2684.       "language": "Python",
  2685.       "has_issues": true,
  2686.       "has_projects": true,
  2687.       "has_downloads": true,
  2688.       "has_wiki": true,
  2689.       "has_pages": false,
  2690.       "forks_count": 5301,
  2691.       "mirror_url": null,
  2692.       "archived": false,
  2693.       "disabled": false,
  2694.       "open_issues_count": 75,
  2695.       "license": null,
  2696.       "forks": 5301,
  2697.       "open_issues": 75,
  2698.       "watchers": 23304,
  2699.       "default_branch": "master",
  2700.       "score": 1.0
  2701.     },
  2702.     {
  2703.       "id": 41058054,
  2704.       "node_id": "MDEwOlJlcG9zaXRvcnk0MTA1ODA1NA==",
  2705.       "name": "CppCoreGuidelines",
  2706.       "full_name": "isocpp/CppCoreGuidelines",
  2707.       "private": false,
  2708.       "owner": {
  2709.         "login": "isocpp",
  2710.         "id": 13841574,
  2711.         "node_id": "MDEyOk9yZ2FuaXphdGlvbjEzODQxNTc0",
  2712.         "avatar_url": "https://avatars3.githubusercontent.com/u/13841574?v=4",
  2713.         "gravatar_id": "",
  2714.         "url": "https://api.github.com/users/isocpp",
  2715.         "html_url": "https://github.com/isocpp",
  2716.         "followers_url": "https://api.github.com/users/isocpp/followers",
  2717.         "following_url": "https://api.github.com/users/isocpp/following{/other_user}",
  2718.         "gists_url": "https://api.github.com/users/isocpp/gists{/gist_id}",
  2719.         "starred_url": "https://api.github.com/users/isocpp/starred{/owner}{/repo}",
  2720.         "subscriptions_url": "https://api.github.com/users/isocpp/subscriptions",
  2721.         "organizations_url": "https://api.github.com/users/isocpp/orgs",
  2722.         "repos_url": "https://api.github.com/users/isocpp/repos",
  2723.         "events_url": "https://api.github.com/users/isocpp/events{/privacy}",
  2724.         "received_events_url": "https://api.github.com/users/isocpp/received_events",
  2725.         "type": "Organization",
  2726.         "site_admin": false
  2727.       },
  2728.       "html_url": "https://github.com/isocpp/CppCoreGuidelines",
  2729.       "description": "The C++ Core Guidelines are a set of tried-and-true guidelines, rules, and best practices about coding in C++",
  2730.       "fork": false,
  2731.       "url": "https://api.github.com/repos/isocpp/CppCoreGuidelines",
  2732.       "forks_url": "https://api.github.com/repos/isocpp/CppCoreGuidelines/forks",
  2733.       "keys_url": "https://api.github.com/repos/isocpp/CppCoreGuidelines/keys{/key_id}",
  2734.       "collaborators_url": "https://api.github.com/repos/isocpp/CppCoreGuidelines/collaborators{/collaborator}",
  2735.       "teams_url": "https://api.github.com/repos/isocpp/CppCoreGuidelines/teams",
  2736.       "hooks_url": "https://api.github.com/repos/isocpp/CppCoreGuidelines/hooks",
  2737.       "issue_events_url": "https://api.github.com/repos/isocpp/CppCoreGuidelines/issues/events{/number}",
  2738.       "events_url": "https://api.github.com/repos/isocpp/CppCoreGuidelines/events",
  2739.       "assignees_url": "https://api.github.com/repos/isocpp/CppCoreGuidelines/assignees{/user}",
  2740.       "branches_url": "https://api.github.com/repos/isocpp/CppCoreGuidelines/branches{/branch}",
  2741.       "tags_url": "https://api.github.com/repos/isocpp/CppCoreGuidelines/tags",
  2742.       "blobs_url": "https://api.github.com/repos/isocpp/CppCoreGuidelines/git/blobs{/sha}",
  2743.       "git_tags_url": "https://api.github.com/repos/isocpp/CppCoreGuidelines/git/tags{/sha}",
  2744.       "git_refs_url": "https://api.github.com/repos/isocpp/CppCoreGuidelines/git/refs{/sha}",
  2745.       "trees_url": "https://api.github.com/repos/isocpp/CppCoreGuidelines/git/trees{/sha}",
  2746.       "statuses_url": "https://api.github.com/repos/isocpp/CppCoreGuidelines/statuses/{sha}",
  2747.       "languages_url": "https://api.github.com/repos/isocpp/CppCoreGuidelines/languages",
  2748.       "stargazers_url": "https://api.github.com/repos/isocpp/CppCoreGuidelines/stargazers",
  2749.       "contributors_url": "https://api.github.com/repos/isocpp/CppCoreGuidelines/contributors",
  2750.       "subscribers_url": "https://api.github.com/repos/isocpp/CppCoreGuidelines/subscribers",
  2751.       "subscription_url": "https://api.github.com/repos/isocpp/CppCoreGuidelines/subscription",
  2752.       "commits_url": "https://api.github.com/repos/isocpp/CppCoreGuidelines/commits{/sha}",
  2753.       "git_commits_url": "https://api.github.com/repos/isocpp/CppCoreGuidelines/git/commits{/sha}",
  2754.       "comments_url": "https://api.github.com/repos/isocpp/CppCoreGuidelines/comments{/number}",
  2755.       "issue_comment_url": "https://api.github.com/repos/isocpp/CppCoreGuidelines/issues/comments{/number}",
  2756.       "contents_url": "https://api.github.com/repos/isocpp/CppCoreGuidelines/contents/{+path}",
  2757.       "compare_url": "https://api.github.com/repos/isocpp/CppCoreGuidelines/compare/{base}...{head}",
  2758.       "merges_url": "https://api.github.com/repos/isocpp/CppCoreGuidelines/merges",
  2759.       "archive_url": "https://api.github.com/repos/isocpp/CppCoreGuidelines/{archive_format}{/ref}",
  2760.       "downloads_url": "https://api.github.com/repos/isocpp/CppCoreGuidelines/downloads",
  2761.       "issues_url": "https://api.github.com/repos/isocpp/CppCoreGuidelines/issues{/number}",
  2762.       "pulls_url": "https://api.github.com/repos/isocpp/CppCoreGuidelines/pulls{/number}",
  2763.       "milestones_url": "https://api.github.com/repos/isocpp/CppCoreGuidelines/milestones{/number}",
  2764.       "notifications_url": "https://api.github.com/repos/isocpp/CppCoreGuidelines/notifications{?since,all,participating}",
  2765.       "labels_url": "https://api.github.com/repos/isocpp/CppCoreGuidelines/labels{/name}",
  2766.       "releases_url": "https://api.github.com/repos/isocpp/CppCoreGuidelines/releases{/id}",
  2767.       "deployments_url": "https://api.github.com/repos/isocpp/CppCoreGuidelines/deployments",
  2768.       "created_at": "2015-08-19T20:22:52Z",
  2769.       "updated_at": "2019-06-29T13:10:17Z",
  2770.       "pushed_at": "2019-06-28T08:18:04Z",
  2771.       "git_url": "git://github.com/isocpp/CppCoreGuidelines.git",
  2772.       "ssh_url": "git@github.com:isocpp/CppCoreGuidelines.git",
  2773.       "clone_url": "https://github.com/isocpp/CppCoreGuidelines.git",
  2774.       "svn_url": "https://github.com/isocpp/CppCoreGuidelines",
  2775.       "homepage": "http://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines",
  2776.       "size": 23572,
  2777.       "stargazers_count": 23300,
  2778.       "watchers_count": 23300,
  2779.       "language": "Python",
  2780.       "has_issues": true,
  2781.       "has_projects": true,
  2782.       "has_downloads": true,
  2783.       "has_wiki": true,
  2784.       "has_pages": true,
  2785.       "forks_count": 3018,
  2786.       "mirror_url": null,
  2787.       "archived": false,
  2788.       "disabled": false,
  2789.       "open_issues_count": 128,
  2790.       "license": {
  2791.         "key": "other",
  2792.         "name": "Other",
  2793.         "spdx_id": "NOASSERTION",
  2794.         "url": null,
  2795.         "node_id": "MDc6TGljZW5zZTA="
  2796.       },
  2797.       "forks": 3018,
  2798.       "open_issues": 128,
  2799.       "watchers": 23300,
  2800.       "default_branch": "master",
  2801.       "score": 1.0
  2802.     },
  2803.     {
  2804.       "id": 15019962,
  2805.       "node_id": "MDEwOlJlcG9zaXRvcnkxNTAxOTk2Mg==",
  2806.       "name": "tldr",
  2807.       "full_name": "tldr-pages/tldr",
  2808.       "private": false,
  2809.       "owner": {
  2810.         "login": "tldr-pages",
  2811.         "id": 7366472,
  2812.         "node_id": "MDEyOk9yZ2FuaXphdGlvbjczNjY0NzI=",
  2813.         "avatar_url": "https://avatars1.githubusercontent.com/u/7366472?v=4",
  2814.         "gravatar_id": "",
  2815.         "url": "https://api.github.com/users/tldr-pages",
  2816.         "html_url": "https://github.com/tldr-pages",
  2817.         "followers_url": "https://api.github.com/users/tldr-pages/followers",
  2818.         "following_url": "https://api.github.com/users/tldr-pages/following{/other_user}",
  2819.         "gists_url": "https://api.github.com/users/tldr-pages/gists{/gist_id}",
  2820.         "starred_url": "https://api.github.com/users/tldr-pages/starred{/owner}{/repo}",
  2821.         "subscriptions_url": "https://api.github.com/users/tldr-pages/subscriptions",
  2822.         "organizations_url": "https://api.github.com/users/tldr-pages/orgs",
  2823.         "repos_url": "https://api.github.com/users/tldr-pages/repos",
  2824.         "events_url": "https://api.github.com/users/tldr-pages/events{/privacy}",
  2825.         "received_events_url": "https://api.github.com/users/tldr-pages/received_events",
  2826.         "type": "Organization",
  2827.         "site_admin": false
  2828.       },
  2829.       "html_url": "https://github.com/tldr-pages/tldr",
  2830.       "description": ":books: Simplified and community-driven man pages",
  2831.       "fork": false,
  2832.       "url": "https://api.github.com/repos/tldr-pages/tldr",
  2833.       "forks_url": "https://api.github.com/repos/tldr-pages/tldr/forks",
  2834.       "keys_url": "https://api.github.com/repos/tldr-pages/tldr/keys{/key_id}",
  2835.       "collaborators_url": "https://api.github.com/repos/tldr-pages/tldr/collaborators{/collaborator}",
  2836.       "teams_url": "https://api.github.com/repos/tldr-pages/tldr/teams",
  2837.       "hooks_url": "https://api.github.com/repos/tldr-pages/tldr/hooks",
  2838.       "issue_events_url": "https://api.github.com/repos/tldr-pages/tldr/issues/events{/number}",
  2839.       "events_url": "https://api.github.com/repos/tldr-pages/tldr/events",
  2840.       "assignees_url": "https://api.github.com/repos/tldr-pages/tldr/assignees{/user}",
  2841.       "branches_url": "https://api.github.com/repos/tldr-pages/tldr/branches{/branch}",
  2842.       "tags_url": "https://api.github.com/repos/tldr-pages/tldr/tags",
  2843.       "blobs_url": "https://api.github.com/repos/tldr-pages/tldr/git/blobs{/sha}",
  2844.       "git_tags_url": "https://api.github.com/repos/tldr-pages/tldr/git/tags{/sha}",
  2845.       "git_refs_url": "https://api.github.com/repos/tldr-pages/tldr/git/refs{/sha}",
  2846.       "trees_url": "https://api.github.com/repos/tldr-pages/tldr/git/trees{/sha}",
  2847.       "statuses_url": "https://api.github.com/repos/tldr-pages/tldr/statuses/{sha}",
  2848.       "languages_url": "https://api.github.com/repos/tldr-pages/tldr/languages",
  2849.       "stargazers_url": "https://api.github.com/repos/tldr-pages/tldr/stargazers",
  2850.       "contributors_url": "https://api.github.com/repos/tldr-pages/tldr/contributors",
  2851.       "subscribers_url": "https://api.github.com/repos/tldr-pages/tldr/subscribers",
  2852.       "subscription_url": "https://api.github.com/repos/tldr-pages/tldr/subscription",
  2853.       "commits_url": "https://api.github.com/repos/tldr-pages/tldr/commits{/sha}",
  2854.       "git_commits_url": "https://api.github.com/repos/tldr-pages/tldr/git/commits{/sha}",
  2855.       "comments_url": "https://api.github.com/repos/tldr-pages/tldr/comments{/number}",
  2856.       "issue_comment_url": "https://api.github.com/repos/tldr-pages/tldr/issues/comments{/number}",
  2857.       "contents_url": "https://api.github.com/repos/tldr-pages/tldr/contents/{+path}",
  2858.       "compare_url": "https://api.github.com/repos/tldr-pages/tldr/compare/{base}...{head}",
  2859.       "merges_url": "https://api.github.com/repos/tldr-pages/tldr/merges",
  2860.       "archive_url": "https://api.github.com/repos/tldr-pages/tldr/{archive_format}{/ref}",
  2861.       "downloads_url": "https://api.github.com/repos/tldr-pages/tldr/downloads",
  2862.       "issues_url": "https://api.github.com/repos/tldr-pages/tldr/issues{/number}",
  2863.       "pulls_url": "https://api.github.com/repos/tldr-pages/tldr/pulls{/number}",
  2864.       "milestones_url": "https://api.github.com/repos/tldr-pages/tldr/milestones{/number}",
  2865.       "notifications_url": "https://api.github.com/repos/tldr-pages/tldr/notifications{?since,all,participating}",
  2866.       "labels_url": "https://api.github.com/repos/tldr-pages/tldr/labels{/name}",
  2867.       "releases_url": "https://api.github.com/repos/tldr-pages/tldr/releases{/id}",
  2868.       "deployments_url": "https://api.github.com/repos/tldr-pages/tldr/deployments",
  2869.       "created_at": "2013-12-08T07:34:43Z",
  2870.       "updated_at": "2019-06-29T12:19:55Z",
  2871.       "pushed_at": "2019-06-29T12:24:07Z",
  2872.       "git_url": "git://github.com/tldr-pages/tldr.git",
  2873.       "ssh_url": "git@github.com:tldr-pages/tldr.git",
  2874.       "clone_url": "https://github.com/tldr-pages/tldr.git",
  2875.       "svn_url": "https://github.com/tldr-pages/tldr",
  2876.       "homepage": "https://tldr.sh",
  2877.       "size": 5333,
  2878.       "stargazers_count": 22804,
  2879.       "watchers_count": 22804,
  2880.       "language": "Python",
  2881.       "has_issues": true,
  2882.       "has_projects": true,
  2883.       "has_downloads": true,
  2884.       "has_wiki": true,
  2885.       "has_pages": false,
  2886.       "forks_count": 1688,
  2887.       "mirror_url": null,
  2888.       "archived": false,
  2889.       "disabled": false,
  2890.       "open_issues_count": 85,
  2891.       "license": {
  2892.         "key": "mit",
  2893.         "name": "MIT License",
  2894.         "spdx_id": "MIT",
  2895.         "url": "https://api.github.com/licenses/mit",
  2896.         "node_id": "MDc6TGljZW5zZTEz"
  2897.       },
  2898.       "forks": 1688,
  2899.       "open_issues": 85,
  2900.       "watchers": 22804,
  2901.       "default_branch": "master",
  2902.       "score": 1.0
  2903.     },
  2904.     {
  2905.       "id": 873328,
  2906.       "node_id": "MDEwOlJlcG9zaXRvcnk4NzMzMjg=",
  2907.       "name": "sentry",
  2908.       "full_name": "getsentry/sentry",
  2909.       "private": false,
  2910.       "owner": {
  2911.         "login": "getsentry",
  2912.         "id": 1396951,
  2913.         "node_id": "MDEyOk9yZ2FuaXphdGlvbjEzOTY5NTE=",
  2914.         "avatar_url": "https://avatars0.githubusercontent.com/u/1396951?v=4",
  2915.         "gravatar_id": "",
  2916.         "url": "https://api.github.com/users/getsentry",
  2917.         "html_url": "https://github.com/getsentry",
  2918.         "followers_url": "https://api.github.com/users/getsentry/followers",
  2919.         "following_url": "https://api.github.com/users/getsentry/following{/other_user}",
  2920.         "gists_url": "https://api.github.com/users/getsentry/gists{/gist_id}",
  2921.         "starred_url": "https://api.github.com/users/getsentry/starred{/owner}{/repo}",
  2922.         "subscriptions_url": "https://api.github.com/users/getsentry/subscriptions",
  2923.         "organizations_url": "https://api.github.com/users/getsentry/orgs",
  2924.         "repos_url": "https://api.github.com/users/getsentry/repos",
  2925.         "events_url": "https://api.github.com/users/getsentry/events{/privacy}",
  2926.         "received_events_url": "https://api.github.com/users/getsentry/received_events",
  2927.         "type": "Organization",
  2928.         "site_admin": false
  2929.       },
  2930.       "html_url": "https://github.com/getsentry/sentry",
  2931.       "description": "Sentry is cross-platform application monitoring, with a focus on error reporting.",
  2932.       "fork": false,
  2933.       "url": "https://api.github.com/repos/getsentry/sentry",
  2934.       "forks_url": "https://api.github.com/repos/getsentry/sentry/forks",
  2935.       "keys_url": "https://api.github.com/repos/getsentry/sentry/keys{/key_id}",
  2936.       "collaborators_url": "https://api.github.com/repos/getsentry/sentry/collaborators{/collaborator}",
  2937.       "teams_url": "https://api.github.com/repos/getsentry/sentry/teams",
  2938.       "hooks_url": "https://api.github.com/repos/getsentry/sentry/hooks",
  2939.       "issue_events_url": "https://api.github.com/repos/getsentry/sentry/issues/events{/number}",
  2940.       "events_url": "https://api.github.com/repos/getsentry/sentry/events",
  2941.       "assignees_url": "https://api.github.com/repos/getsentry/sentry/assignees{/user}",
  2942.       "branches_url": "https://api.github.com/repos/getsentry/sentry/branches{/branch}",
  2943.       "tags_url": "https://api.github.com/repos/getsentry/sentry/tags",
  2944.       "blobs_url": "https://api.github.com/repos/getsentry/sentry/git/blobs{/sha}",
  2945.       "git_tags_url": "https://api.github.com/repos/getsentry/sentry/git/tags{/sha}",
  2946.       "git_refs_url": "https://api.github.com/repos/getsentry/sentry/git/refs{/sha}",
  2947.       "trees_url": "https://api.github.com/repos/getsentry/sentry/git/trees{/sha}",
  2948.       "statuses_url": "https://api.github.com/repos/getsentry/sentry/statuses/{sha}",
  2949.       "languages_url": "https://api.github.com/repos/getsentry/sentry/languages",
  2950.       "stargazers_url": "https://api.github.com/repos/getsentry/sentry/stargazers",
  2951.       "contributors_url": "https://api.github.com/repos/getsentry/sentry/contributors",
  2952.       "subscribers_url": "https://api.github.com/repos/getsentry/sentry/subscribers",
  2953.       "subscription_url": "https://api.github.com/repos/getsentry/sentry/subscription",
  2954.       "commits_url": "https://api.github.com/repos/getsentry/sentry/commits{/sha}",
  2955.       "git_commits_url": "https://api.github.com/repos/getsentry/sentry/git/commits{/sha}",
  2956.       "comments_url": "https://api.github.com/repos/getsentry/sentry/comments{/number}",
  2957.       "issue_comment_url": "https://api.github.com/repos/getsentry/sentry/issues/comments{/number}",
  2958.       "contents_url": "https://api.github.com/repos/getsentry/sentry/contents/{+path}",
  2959.       "compare_url": "https://api.github.com/repos/getsentry/sentry/compare/{base}...{head}",
  2960.       "merges_url": "https://api.github.com/repos/getsentry/sentry/merges",
  2961.       "archive_url": "https://api.github.com/repos/getsentry/sentry/{archive_format}{/ref}",
  2962.       "downloads_url": "https://api.github.com/repos/getsentry/sentry/downloads",
  2963.       "issues_url": "https://api.github.com/repos/getsentry/sentry/issues{/number}",
  2964.       "pulls_url": "https://api.github.com/repos/getsentry/sentry/pulls{/number}",
  2965.       "milestones_url": "https://api.github.com/repos/getsentry/sentry/milestones{/number}",
  2966.       "notifications_url": "https://api.github.com/repos/getsentry/sentry/notifications{?since,all,participating}",
  2967.       "labels_url": "https://api.github.com/repos/getsentry/sentry/labels{/name}",
  2968.       "releases_url": "https://api.github.com/repos/getsentry/sentry/releases{/id}",
  2969.       "deployments_url": "https://api.github.com/repos/getsentry/sentry/deployments",
  2970.       "created_at": "2010-08-30T22:06:41Z",
  2971.       "updated_at": "2019-06-29T08:59:37Z",
  2972.       "pushed_at": "2019-06-29T00:25:39Z",
  2973.       "git_url": "git://github.com/getsentry/sentry.git",
  2974.       "ssh_url": "git@github.com:getsentry/sentry.git",
  2975.       "clone_url": "https://github.com/getsentry/sentry.git",
  2976.       "svn_url": "https://github.com/getsentry/sentry",
  2977.       "homepage": "https://sentry.io",
  2978.       "size": 114494,
  2979.       "stargazers_count": 21305,
  2980.       "watchers_count": 21305,
  2981.       "language": "Python",
  2982.       "has_issues": true,
  2983.       "has_projects": true,
  2984.       "has_downloads": true,
  2985.       "has_wiki": false,
  2986.       "has_pages": false,
  2987.       "forks_count": 2434,
  2988.       "mirror_url": null,
  2989.       "archived": false,
  2990.       "disabled": false,
  2991.       "open_issues_count": 894,
  2992.       "license": {
  2993.         "key": "bsd-3-clause",
  2994.         "name": "BSD 3-Clause \"New\" or \"Revised\" License",
  2995.         "spdx_id": "BSD-3-Clause",
  2996.         "url": "https://api.github.com/licenses/bsd-3-clause",
  2997.         "node_id": "MDc6TGljZW5zZTU="
  2998.       },
  2999.       "forks": 2434,
  3000.       "open_issues": 894,
  3001.       "watchers": 21305,
  3002.       "default_branch": "master",
  3003.       "score": 1.0
  3004.     }
  3005.   ]
  3006. }
复制代码

作者: admin    时间: 2019-6-29 21:50
可以看到,这样用API直接调用太费事了,可以结合requests读取,并通过pygal进行渲染成svg图片。
源码如下:[attach]5815[/attach]
  1. import requests
  2. import pygal
  3. from pygal.style import LightColorizedStyle as LCS, LightenStyle as LS

  4. # Make an API call, and store the response.
  5. url = 'https://api.github.com/search/repositories?q=language:python&sort=stars'
  6. r = requests.get(url)
  7. print("Status code:", r.status_code)

  8. # Store API response in a variable.
  9. response_dict = r.json()
  10. print("Total repositories:", response_dict['total_count'])

  11. # Explore information about the repositories.
  12. repo_dicts = response_dict['items']

  13. names, plot_dicts = [], []
  14. for repo_dict in repo_dicts:
  15.     names.append(repo_dict['name'])
  16.    
  17.     plot_dict = {
  18.         'value': repo_dict['stargazers_count'],
  19.         'label': repo_dict['description'],
  20.         'xlink': repo_dict['html_url'],
  21.         }
  22.     plot_dicts.append(plot_dict)

  23. # Make visualization.
  24. my_style = LS('#333366', base_style=LCS)

  25. my_config = pygal.Config()
  26. my_config.x_label_rotation = 45
  27. my_config.show_legend = False
  28. my_config.title_font_size = 24
  29. my_config.label_font_size = 14
  30. my_config.major_label_font_size = 18
  31. my_config.truncate_label = 15
  32. my_config.show_y_guides = False
  33. my_config.width = 1000

  34. chart = pygal.Bar(my_config, style=my_style)
  35. chart.title = 'Most-Starred Python Projects on GitHub'
  36. chart.x_labels = names

  37. chart.add('', plot_dicts)
  38. chart.render_to_file('python_repos.svg')
复制代码
结果如下:
Status code: 200
Total repositories: 3789825

[attach]5814[/attach]






欢迎光临 51学通信论坛2017新版 (http://bbs.51xuetongxin.com/) Powered by Discuz! X3