|
直接: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的结果):- {
- "total_count": 3955988,
- "incomplete_results": false,
- "items": [
- {
- "id": 21289110,
- "node_id": "MDEwOlJlcG9zaXRvcnkyMTI4OTExMA==",
- "name": "awesome-python",
- "full_name": "vinta/awesome-python",
- "private": false,
- "owner": {
- "login": "vinta",
- "id": 652070,
- "node_id": "MDQ6VXNlcjY1MjA3MA==",
- "avatar_url": "https://avatars2.githubusercontent.com/u/652070?v=4",
- "gravatar_id": "",
- "url": "https://api.github.com/users/vinta",
- "html_url": "https://github.com/vinta",
- "followers_url": "https://api.github.com/users/vinta/followers",
- "following_url": "https://api.github.com/users/vinta/following{/other_user}",
- "gists_url": "https://api.github.com/users/vinta/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/vinta/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/vinta/subscriptions",
- "organizations_url": "https://api.github.com/users/vinta/orgs",
- "repos_url": "https://api.github.com/users/vinta/repos",
- "events_url": "https://api.github.com/users/vinta/events{/privacy}",
- "received_events_url": "https://api.github.com/users/vinta/received_events",
- "type": "User",
- "site_admin": false
- },
- "html_url": "https://github.com/vinta/awesome-python",
- "description": "A curated list of awesome Python frameworks, libraries, software and resources",
- "fork": false,
- "url": "https://api.github.com/repos/vinta/awesome-python",
- "forks_url": "https://api.github.com/repos/vinta/awesome-python/forks",
- "keys_url": "https://api.github.com/repos/vinta/awesome-python/keys{/key_id}",
- "collaborators_url": "https://api.github.com/repos/vinta/awesome-python/collaborators{/collaborator}",
- "teams_url": "https://api.github.com/repos/vinta/awesome-python/teams",
- "hooks_url": "https://api.github.com/repos/vinta/awesome-python/hooks",
- "issue_events_url": "https://api.github.com/repos/vinta/awesome-python/issues/events{/number}",
- "events_url": "https://api.github.com/repos/vinta/awesome-python/events",
- "assignees_url": "https://api.github.com/repos/vinta/awesome-python/assignees{/user}",
- "branches_url": "https://api.github.com/repos/vinta/awesome-python/branches{/branch}",
- "tags_url": "https://api.github.com/repos/vinta/awesome-python/tags",
- "blobs_url": "https://api.github.com/repos/vinta/awesome-python/git/blobs{/sha}",
- "git_tags_url": "https://api.github.com/repos/vinta/awesome-python/git/tags{/sha}",
- "git_refs_url": "https://api.github.com/repos/vinta/awesome-python/git/refs{/sha}",
- "trees_url": "https://api.github.com/repos/vinta/awesome-python/git/trees{/sha}",
- "statuses_url": "https://api.github.com/repos/vinta/awesome-python/statuses/{sha}",
- "languages_url": "https://api.github.com/repos/vinta/awesome-python/languages",
- "stargazers_url": "https://api.github.com/repos/vinta/awesome-python/stargazers",
- "contributors_url": "https://api.github.com/repos/vinta/awesome-python/contributors",
- "subscribers_url": "https://api.github.com/repos/vinta/awesome-python/subscribers",
- "subscription_url": "https://api.github.com/repos/vinta/awesome-python/subscription",
- "commits_url": "https://api.github.com/repos/vinta/awesome-python/commits{/sha}",
- "git_commits_url": "https://api.github.com/repos/vinta/awesome-python/git/commits{/sha}",
- "comments_url": "https://api.github.com/repos/vinta/awesome-python/comments{/number}",
- "issue_comment_url": "https://api.github.com/repos/vinta/awesome-python/issues/comments{/number}",
- "contents_url": "https://api.github.com/repos/vinta/awesome-python/contents/{+path}",
- "compare_url": "https://api.github.com/repos/vinta/awesome-python/compare/{base}...{head}",
- "merges_url": "https://api.github.com/repos/vinta/awesome-python/merges",
- "archive_url": "https://api.github.com/repos/vinta/awesome-python/{archive_format}{/ref}",
- "downloads_url": "https://api.github.com/repos/vinta/awesome-python/downloads",
- "issues_url": "https://api.github.com/repos/vinta/awesome-python/issues{/number}",
- "pulls_url": "https://api.github.com/repos/vinta/awesome-python/pulls{/number}",
- "milestones_url": "https://api.github.com/repos/vinta/awesome-python/milestones{/number}",
- "notifications_url": "https://api.github.com/repos/vinta/awesome-python/notifications{?since,all,participating}",
- "labels_url": "https://api.github.com/repos/vinta/awesome-python/labels{/name}",
- "releases_url": "https://api.github.com/repos/vinta/awesome-python/releases{/id}",
- "deployments_url": "https://api.github.com/repos/vinta/awesome-python/deployments",
- "created_at": "2014-06-27T21:00:06Z",
- "updated_at": "2019-06-29T13:33:36Z",
- "pushed_at": "2019-06-28T10:34:52Z",
- "git_url": "git://github.com/vinta/awesome-python.git",
- "ssh_url": "git@github.com:vinta/awesome-python.git",
- "clone_url": "https://github.com/vinta/awesome-python.git",
- "svn_url": "https://github.com/vinta/awesome-python",
- "homepage": "https://awesome-python.com/",
- "size": 4914,
- "stargazers_count": 69308,
- "watchers_count": 69308,
- "language": "Python",
- "has_issues": true,
- "has_projects": false,
- "has_downloads": true,
- "has_wiki": false,
- "has_pages": true,
- "forks_count": 13500,
- "mirror_url": null,
- "archived": false,
- "disabled": false,
- "open_issues_count": 461,
- "license": {
- "key": "other",
- "name": "Other",
- "spdx_id": "NOASSERTION",
- "url": null,
- "node_id": "MDc6TGljZW5zZTA="
- },
- "forks": 13500,
- "open_issues": 461,
- "watchers": 69308,
- "default_branch": "master",
- "score": 1.0
- },
- {
- "id": 83222441,
- "node_id": "MDEwOlJlcG9zaXRvcnk4MzIyMjQ0MQ==",
- "name": "system-design-primer",
- "full_name": "donnemartin/system-design-primer",
- "private": false,
- "owner": {
- "login": "donnemartin",
- "id": 5458997,
- "node_id": "MDQ6VXNlcjU0NTg5OTc=",
- "avatar_url": "https://avatars2.githubusercontent.com/u/5458997?v=4",
- "gravatar_id": "",
- "url": "https://api.github.com/users/donnemartin",
- "html_url": "https://github.com/donnemartin",
- "followers_url": "https://api.github.com/users/donnemartin/followers",
- "following_url": "https://api.github.com/users/donnemartin/following{/other_user}",
- "gists_url": "https://api.github.com/users/donnemartin/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/donnemartin/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/donnemartin/subscriptions",
- "organizations_url": "https://api.github.com/users/donnemartin/orgs",
- "repos_url": "https://api.github.com/users/donnemartin/repos",
- "events_url": "https://api.github.com/users/donnemartin/events{/privacy}",
- "received_events_url": "https://api.github.com/users/donnemartin/received_events",
- "type": "User",
- "site_admin": false
- },
- "html_url": "https://github.com/donnemartin/system-design-primer",
- "description": "Learn how to design large-scale systems. Prep for the system design interview. Includes Anki flashcards.",
- "fork": false,
- "url": "https://api.github.com/repos/donnemartin/system-design-primer",
- "forks_url": "https://api.github.com/repos/donnemartin/system-design-primer/forks",
- "keys_url": "https://api.github.com/repos/donnemartin/system-design-primer/keys{/key_id}",
- "collaborators_url": "https://api.github.com/repos/donnemartin/system-design-primer/collaborators{/collaborator}",
- "teams_url": "https://api.github.com/repos/donnemartin/system-design-primer/teams",
- "hooks_url": "https://api.github.com/repos/donnemartin/system-design-primer/hooks",
- "issue_events_url": "https://api.github.com/repos/donnemartin/system-design-primer/issues/events{/number}",
- "events_url": "https://api.github.com/repos/donnemartin/system-design-primer/events",
- "assignees_url": "https://api.github.com/repos/donnemartin/system-design-primer/assignees{/user}",
- "branches_url": "https://api.github.com/repos/donnemartin/system-design-primer/branches{/branch}",
- "tags_url": "https://api.github.com/repos/donnemartin/system-design-primer/tags",
- "blobs_url": "https://api.github.com/repos/donnemartin/system-design-primer/git/blobs{/sha}",
- "git_tags_url": "https://api.github.com/repos/donnemartin/system-design-primer/git/tags{/sha}",
- "git_refs_url": "https://api.github.com/repos/donnemartin/system-design-primer/git/refs{/sha}",
- "trees_url": "https://api.github.com/repos/donnemartin/system-design-primer/git/trees{/sha}",
- "statuses_url": "https://api.github.com/repos/donnemartin/system-design-primer/statuses/{sha}",
- "languages_url": "https://api.github.com/repos/donnemartin/system-design-primer/languages",
- "stargazers_url": "https://api.github.com/repos/donnemartin/system-design-primer/stargazers",
- "contributors_url": "https://api.github.com/repos/donnemartin/system-design-primer/contributors",
- "subscribers_url": "https://api.github.com/repos/donnemartin/system-design-primer/subscribers",
- "subscription_url": "https://api.github.com/repos/donnemartin/system-design-primer/subscription",
- "commits_url": "https://api.github.com/repos/donnemartin/system-design-primer/commits{/sha}",
- "git_commits_url": "https://api.github.com/repos/donnemartin/system-design-primer/git/commits{/sha}",
- "comments_url": "https://api.github.com/repos/donnemartin/system-design-primer/comments{/number}",
- "issue_comment_url": "https://api.github.com/repos/donnemartin/system-design-primer/issues/comments{/number}",
- "contents_url": "https://api.github.com/repos/donnemartin/system-design-primer/contents/{+path}",
- "compare_url": "https://api.github.com/repos/donnemartin/system-design-primer/compare/{base}...{head}",
- "merges_url": "https://api.github.com/repos/donnemartin/system-design-primer/merges",
- "archive_url": "https://api.github.com/repos/donnemartin/system-design-primer/{archive_format}{/ref}",
- "downloads_url": "https://api.github.com/repos/donnemartin/system-design-primer/downloads",
- "issues_url": "https://api.github.com/repos/donnemartin/system-design-primer/issues{/number}",
- "pulls_url": "https://api.github.com/repos/donnemartin/system-design-primer/pulls{/number}",
- "milestones_url": "https://api.github.com/repos/donnemartin/system-design-primer/milestones{/number}",
- "notifications_url": "https://api.github.com/repos/donnemartin/system-design-primer/notifications{?since,all,participating}",
- "labels_url": "https://api.github.com/repos/donnemartin/system-design-primer/labels{/name}",
- "releases_url": "https://api.github.com/repos/donnemartin/system-design-primer/releases{/id}",
- "deployments_url": "https://api.github.com/repos/donnemartin/system-design-primer/deployments",
- "created_at": "2017-02-26T16:15:28Z",
- "updated_at": "2019-06-29T13:35:15Z",
- "pushed_at": "2019-06-26T17:57:47Z",
- "git_url": "git://github.com/donnemartin/system-design-primer.git",
- "ssh_url": "git@github.com:donnemartin/system-design-primer.git",
- "clone_url": "https://github.com/donnemartin/system-design-primer.git",
- "svn_url": "https://github.com/donnemartin/system-design-primer",
- "homepage": "",
- "size": 4233,
- "stargazers_count": 68226,
- "watchers_count": 68226,
- "language": "Python",
- "has_issues": true,
- "has_projects": true,
- "has_downloads": true,
- "has_wiki": true,
- "has_pages": false,
- "forks_count": 10499,
- "mirror_url": null,
- "archived": false,
- "disabled": false,
- "open_issues_count": 93,
- "license": {
- "key": "other",
- "name": "Other",
- "spdx_id": "NOASSERTION",
- "url": null,
- "node_id": "MDc6TGljZW5zZTA="
- },
- "forks": 10499,
- "open_issues": 93,
- "watchers": 68226,
- "default_branch": "master",
- "score": 1.0
- },
- {
- "id": 54346799,
- "node_id": "MDEwOlJlcG9zaXRvcnk1NDM0Njc5OQ==",
- "name": "public-apis",
- "full_name": "public-apis/public-apis",
- "private": false,
- "owner": {
- "login": "public-apis",
- "id": 51121562,
- "node_id": "MDEyOk9yZ2FuaXphdGlvbjUxMTIxNTYy",
- "avatar_url": "https://avatars0.githubusercontent.com/u/51121562?v=4",
- "gravatar_id": "",
- "url": "https://api.github.com/users/public-apis",
- "html_url": "https://github.com/public-apis",
- "followers_url": "https://api.github.com/users/public-apis/followers",
- "following_url": "https://api.github.com/users/public-apis/following{/other_user}",
- "gists_url": "https://api.github.com/users/public-apis/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/public-apis/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/public-apis/subscriptions",
- "organizations_url": "https://api.github.com/users/public-apis/orgs",
- "repos_url": "https://api.github.com/users/public-apis/repos",
- "events_url": "https://api.github.com/users/public-apis/events{/privacy}",
- "received_events_url": "https://api.github.com/users/public-apis/received_events",
- "type": "Organization",
- "site_admin": false
- },
- "html_url": "https://github.com/public-apis/public-apis",
- "description": "A collective list of free APIs for use in software and web development.",
- "fork": false,
- "url": "https://api.github.com/repos/public-apis/public-apis",
- "forks_url": "https://api.github.com/repos/public-apis/public-apis/forks",
- "keys_url": "https://api.github.com/repos/public-apis/public-apis/keys{/key_id}",
- "collaborators_url": "https://api.github.com/repos/public-apis/public-apis/collaborators{/collaborator}",
- "teams_url": "https://api.github.com/repos/public-apis/public-apis/teams",
- "hooks_url": "https://api.github.com/repos/public-apis/public-apis/hooks",
- "issue_events_url": "https://api.github.com/repos/public-apis/public-apis/issues/events{/number}",
- "events_url": "https://api.github.com/repos/public-apis/public-apis/events",
- "assignees_url": "https://api.github.com/repos/public-apis/public-apis/assignees{/user}",
- "branches_url": "https://api.github.com/repos/public-apis/public-apis/branches{/branch}",
- "tags_url": "https://api.github.com/repos/public-apis/public-apis/tags",
- "blobs_url": "https://api.github.com/repos/public-apis/public-apis/git/blobs{/sha}",
- "git_tags_url": "https://api.github.com/repos/public-apis/public-apis/git/tags{/sha}",
- "git_refs_url": "https://api.github.com/repos/public-apis/public-apis/git/refs{/sha}",
- "trees_url": "https://api.github.com/repos/public-apis/public-apis/git/trees{/sha}",
- "statuses_url": "https://api.github.com/repos/public-apis/public-apis/statuses/{sha}",
- "languages_url": "https://api.github.com/repos/public-apis/public-apis/languages",
- "stargazers_url": "https://api.github.com/repos/public-apis/public-apis/stargazers",
- "contributors_url": "https://api.github.com/repos/public-apis/public-apis/contributors",
- "subscribers_url": "https://api.github.com/repos/public-apis/public-apis/subscribers",
- "subscription_url": "https://api.github.com/repos/public-apis/public-apis/subscription",
- "commits_url": "https://api.github.com/repos/public-apis/public-apis/commits{/sha}",
- "git_commits_url": "https://api.github.com/repos/public-apis/public-apis/git/commits{/sha}",
- "comments_url": "https://api.github.com/repos/public-apis/public-apis/comments{/number}",
- "issue_comment_url": "https://api.github.com/repos/public-apis/public-apis/issues/comments{/number}",
- "contents_url": "https://api.github.com/repos/public-apis/public-apis/contents/{+path}",
- "compare_url": "https://api.github.com/repos/public-apis/public-apis/compare/{base}...{head}",
- "merges_url": "https://api.github.com/repos/public-apis/public-apis/merges",
- "archive_url": "https://api.github.com/repos/public-apis/public-apis/{archive_format}{/ref}",
- "downloads_url": "https://api.github.com/repos/public-apis/public-apis/downloads",
- "issues_url": "https://api.github.com/repos/public-apis/public-apis/issues{/number}",
- "pulls_url": "https://api.github.com/repos/public-apis/public-apis/pulls{/number}",
- "milestones_url": "https://api.github.com/repos/public-apis/public-apis/milestones{/number}",
- "notifications_url": "https://api.github.com/repos/public-apis/public-apis/notifications{?since,all,participating}",
- "labels_url": "https://api.github.com/repos/public-apis/public-apis/labels{/name}",
- "releases_url": "https://api.github.com/repos/public-apis/public-apis/releases{/id}",
- "deployments_url": "https://api.github.com/repos/public-apis/public-apis/deployments",
- "created_at": "2016-03-20T23:49:42Z",
- "updated_at": "2019-06-29T13:12:24Z",
- "pushed_at": "2019-06-20T13:53:24Z",
- "git_url": "git://github.com/public-apis/public-apis.git",
- "ssh_url": "git@github.com:public-apis/public-apis.git",
- "clone_url": "https://github.com/public-apis/public-apis.git",
- "svn_url": "https://github.com/public-apis/public-apis",
- "homepage": "https://ultimatecourses.com",
- "size": 2504,
- "stargazers_count": 58507,
- "watchers_count": 58507,
- "language": "Python",
- "has_issues": true,
- "has_projects": true,
- "has_downloads": true,
- "has_wiki": true,
- "has_pages": false,
- "forks_count": 6136,
- "mirror_url": null,
- "archived": false,
- "disabled": false,
- "open_issues_count": 72,
- "license": null,
- "forks": 6136,
- "open_issues": 72,
- "watchers": 58507,
- "default_branch": "master",
- "score": 1.0
- },
- {
- "id": 51117837,
- "node_id": "MDEwOlJlcG9zaXRvcnk1MTExNzgzNw==",
- "name": "models",
- "full_name": "tensorflow/models",
- "private": false,
- "owner": {
- "login": "tensorflow",
- "id": 15658638,
- "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1NjU4NjM4",
- "avatar_url": "https://avatars1.githubusercontent.com/u/15658638?v=4",
- "gravatar_id": "",
- "url": "https://api.github.com/users/tensorflow",
- "html_url": "https://github.com/tensorflow",
- "followers_url": "https://api.github.com/users/tensorflow/followers",
- "following_url": "https://api.github.com/users/tensorflow/following{/other_user}",
- "gists_url": "https://api.github.com/users/tensorflow/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/tensorflow/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/tensorflow/subscriptions",
- "organizations_url": "https://api.github.com/users/tensorflow/orgs",
- "repos_url": "https://api.github.com/users/tensorflow/repos",
- "events_url": "https://api.github.com/users/tensorflow/events{/privacy}",
- "received_events_url": "https://api.github.com/users/tensorflow/received_events",
- "type": "Organization",
- "site_admin": false
- },
- "html_url": "https://github.com/tensorflow/models",
- "description": "Models and examples built with TensorFlow",
- "fork": false,
- "url": "https://api.github.com/repos/tensorflow/models",
- "forks_url": "https://api.github.com/repos/tensorflow/models/forks",
- "keys_url": "https://api.github.com/repos/tensorflow/models/keys{/key_id}",
- "collaborators_url": "https://api.github.com/repos/tensorflow/models/collaborators{/collaborator}",
- "teams_url": "https://api.github.com/repos/tensorflow/models/teams",
- "hooks_url": "https://api.github.com/repos/tensorflow/models/hooks",
- "issue_events_url": "https://api.github.com/repos/tensorflow/models/issues/events{/number}",
- "events_url": "https://api.github.com/repos/tensorflow/models/events",
- "assignees_url": "https://api.github.com/repos/tensorflow/models/assignees{/user}",
- "branches_url": "https://api.github.com/repos/tensorflow/models/branches{/branch}",
- "tags_url": "https://api.github.com/repos/tensorflow/models/tags",
- "blobs_url": "https://api.github.com/repos/tensorflow/models/git/blobs{/sha}",
- "git_tags_url": "https://api.github.com/repos/tensorflow/models/git/tags{/sha}",
- "git_refs_url": "https://api.github.com/repos/tensorflow/models/git/refs{/sha}",
- "trees_url": "https://api.github.com/repos/tensorflow/models/git/trees{/sha}",
- "statuses_url": "https://api.github.com/repos/tensorflow/models/statuses/{sha}",
- "languages_url": "https://api.github.com/repos/tensorflow/models/languages",
- "stargazers_url": "https://api.github.com/repos/tensorflow/models/stargazers",
- "contributors_url": "https://api.github.com/repos/tensorflow/models/contributors",
- "subscribers_url": "https://api.github.com/repos/tensorflow/models/subscribers",
- "subscription_url": "https://api.github.com/repos/tensorflow/models/subscription",
- "commits_url": "https://api.github.com/repos/tensorflow/models/commits{/sha}",
- "git_commits_url": "https://api.github.com/repos/tensorflow/models/git/commits{/sha}",
- "comments_url": "https://api.github.com/repos/tensorflow/models/comments{/number}",
- "issue_comment_url": "https://api.github.com/repos/tensorflow/models/issues/comments{/number}",
- "contents_url": "https://api.github.com/repos/tensorflow/models/contents/{+path}",
- "compare_url": "https://api.github.com/repos/tensorflow/models/compare/{base}...{head}",
- "merges_url": "https://api.github.com/repos/tensorflow/models/merges",
- "archive_url": "https://api.github.com/repos/tensorflow/models/{archive_format}{/ref}",
- "downloads_url": "https://api.github.com/repos/tensorflow/models/downloads",
- "issues_url": "https://api.github.com/repos/tensorflow/models/issues{/number}",
- "pulls_url": "https://api.github.com/repos/tensorflow/models/pulls{/number}",
- "milestones_url": "https://api.github.com/repos/tensorflow/models/milestones{/number}",
- "notifications_url": "https://api.github.com/repos/tensorflow/models/notifications{?since,all,participating}",
- "labels_url": "https://api.github.com/repos/tensorflow/models/labels{/name}",
- "releases_url": "https://api.github.com/repos/tensorflow/models/releases{/id}",
- "deployments_url": "https://api.github.com/repos/tensorflow/models/deployments",
- "created_at": "2016-02-05T01:15:20Z",
- "updated_at": "2019-06-29T13:28:38Z",
- "pushed_at": "2019-06-29T03:47:31Z",
- "git_url": "git://github.com/tensorflow/models.git",
- "ssh_url": "git@github.com:tensorflow/models.git",
- "clone_url": "https://github.com/tensorflow/models.git",
- "svn_url": "https://github.com/tensorflow/models",
- "homepage": "",
- "size": 521568,
- "stargazers_count": 54635,
- "watchers_count": 54635,
- "language": "Python",
- "has_issues": true,
- "has_projects": true,
- "has_downloads": true,
- "has_wiki": true,
- "has_pages": false,
- "forks_count": 33978,
- "mirror_url": null,
- "archived": false,
- "disabled": false,
- "open_issues_count": 1698,
- "license": {
- "key": "apache-2.0",
- "name": "Apache License 2.0",
- "spdx_id": "Apache-2.0",
- "url": "https://api.github.com/licenses/apache-2.0",
- "node_id": "MDc6TGljZW5zZTI="
- },
- "forks": 33978,
- "open_issues": 1698,
- "watchers": 54635,
- "default_branch": "master",
- "score": 1.0
- },
- {
- "id": 1039520,
- "node_id": "MDEwOlJlcG9zaXRvcnkxMDM5NTIw",
- "name": "youtube-dl",
- "full_name": "ytdl-org/youtube-dl",
- "private": false,
- "owner": {
- "login": "ytdl-org",
- "id": 48381040,
- "node_id": "MDEyOk9yZ2FuaXphdGlvbjQ4MzgxMDQw",
- "avatar_url": "https://avatars1.githubusercontent.com/u/48381040?v=4",
- "gravatar_id": "",
- "url": "https://api.github.com/users/ytdl-org",
- "html_url": "https://github.com/ytdl-org",
- "followers_url": "https://api.github.com/users/ytdl-org/followers",
- "following_url": "https://api.github.com/users/ytdl-org/following{/other_user}",
- "gists_url": "https://api.github.com/users/ytdl-org/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/ytdl-org/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/ytdl-org/subscriptions",
- "organizations_url": "https://api.github.com/users/ytdl-org/orgs",
- "repos_url": "https://api.github.com/users/ytdl-org/repos",
- "events_url": "https://api.github.com/users/ytdl-org/events{/privacy}",
- "received_events_url": "https://api.github.com/users/ytdl-org/received_events",
- "type": "Organization",
- "site_admin": false
- },
- "html_url": "https://github.com/ytdl-org/youtube-dl",
- "description": "Command-line program to download videos from YouTube.com and other video sites",
- "fork": false,
- "url": "https://api.github.com/repos/ytdl-org/youtube-dl",
- "forks_url": "https://api.github.com/repos/ytdl-org/youtube-dl/forks",
- "keys_url": "https://api.github.com/repos/ytdl-org/youtube-dl/keys{/key_id}",
- "collaborators_url": "https://api.github.com/repos/ytdl-org/youtube-dl/collaborators{/collaborator}",
- "teams_url": "https://api.github.com/repos/ytdl-org/youtube-dl/teams",
- "hooks_url": "https://api.github.com/repos/ytdl-org/youtube-dl/hooks",
- "issue_events_url": "https://api.github.com/repos/ytdl-org/youtube-dl/issues/events{/number}",
- "events_url": "https://api.github.com/repos/ytdl-org/youtube-dl/events",
- "assignees_url": "https://api.github.com/repos/ytdl-org/youtube-dl/assignees{/user}",
- "branches_url": "https://api.github.com/repos/ytdl-org/youtube-dl/branches{/branch}",
- "tags_url": "https://api.github.com/repos/ytdl-org/youtube-dl/tags",
- "blobs_url": "https://api.github.com/repos/ytdl-org/youtube-dl/git/blobs{/sha}",
- "git_tags_url": "https://api.github.com/repos/ytdl-org/youtube-dl/git/tags{/sha}",
- "git_refs_url": "https://api.github.com/repos/ytdl-org/youtube-dl/git/refs{/sha}",
- "trees_url": "https://api.github.com/repos/ytdl-org/youtube-dl/git/trees{/sha}",
- "statuses_url": "https://api.github.com/repos/ytdl-org/youtube-dl/statuses/{sha}",
- "languages_url": "https://api.github.com/repos/ytdl-org/youtube-dl/languages",
- "stargazers_url": "https://api.github.com/repos/ytdl-org/youtube-dl/stargazers",
- "contributors_url": "https://api.github.com/repos/ytdl-org/youtube-dl/contributors",
- "subscribers_url": "https://api.github.com/repos/ytdl-org/youtube-dl/subscribers",
- "subscription_url": "https://api.github.com/repos/ytdl-org/youtube-dl/subscription",
- "commits_url": "https://api.github.com/repos/ytdl-org/youtube-dl/commits{/sha}",
- "git_commits_url": "https://api.github.com/repos/ytdl-org/youtube-dl/git/commits{/sha}",
- "comments_url": "https://api.github.com/repos/ytdl-org/youtube-dl/comments{/number}",
- "issue_comment_url": "https://api.github.com/repos/ytdl-org/youtube-dl/issues/comments{/number}",
- "contents_url": "https://api.github.com/repos/ytdl-org/youtube-dl/contents/{+path}",
- "compare_url": "https://api.github.com/repos/ytdl-org/youtube-dl/compare/{base}...{head}",
- "merges_url": "https://api.github.com/repos/ytdl-org/youtube-dl/merges",
- "archive_url": "https://api.github.com/repos/ytdl-org/youtube-dl/{archive_format}{/ref}",
- "downloads_url": "https://api.github.com/repos/ytdl-org/youtube-dl/downloads",
- "issues_url": "https://api.github.com/repos/ytdl-org/youtube-dl/issues{/number}",
- "pulls_url": "https://api.github.com/repos/ytdl-org/youtube-dl/pulls{/number}",
- "milestones_url": "https://api.github.com/repos/ytdl-org/youtube-dl/milestones{/number}",
- "notifications_url": "https://api.github.com/repos/ytdl-org/youtube-dl/notifications{?since,all,participating}",
- "labels_url": "https://api.github.com/repos/ytdl-org/youtube-dl/labels{/name}",
- "releases_url": "https://api.github.com/repos/ytdl-org/youtube-dl/releases{/id}",
- "deployments_url": "https://api.github.com/repos/ytdl-org/youtube-dl/deployments",
- "created_at": "2010-10-31T14:35:07Z",
- "updated_at": "2019-06-29T13:29:01Z",
- "pushed_at": "2019-06-29T11:15:55Z",
- "git_url": "git://github.com/ytdl-org/youtube-dl.git",
- "ssh_url": "git@github.com:ytdl-org/youtube-dl.git",
- "clone_url": "https://github.com/ytdl-org/youtube-dl.git",
- "svn_url": "https://github.com/ytdl-org/youtube-dl",
- "homepage": "http://ytdl-org.github.io/youtube-dl/",
- "size": 56102,
- "stargazers_count": 52019,
- "watchers_count": 52019,
- "language": "Python",
- "has_issues": true,
- "has_projects": false,
- "has_downloads": true,
- "has_wiki": false,
- "has_pages": true,
- "forks_count": 9057,
- "mirror_url": null,
- "archived": false,
- "disabled": false,
- "open_issues_count": 2904,
- "license": {
- "key": "unlicense",
- "name": "The Unlicense",
- "spdx_id": "Unlicense",
- "url": "https://api.github.com/licenses/unlicense",
- "node_id": "MDc6TGljZW5zZTE1"
- },
- "forks": 9057,
- "open_issues": 2904,
- "watchers": 52019,
- "default_branch": "master",
- "score": 1.0
- },
- {
- "id": 63476337,
- "node_id": "MDEwOlJlcG9zaXRvcnk2MzQ3NjMzNw==",
- "name": "Python",
- "full_name": "TheAlgorithms/Python",
- "private": false,
- "owner": {
- "login": "TheAlgorithms",
- "id": 20487725,
- "node_id": "MDEyOk9yZ2FuaXphdGlvbjIwNDg3NzI1",
- "avatar_url": "https://avatars1.githubusercontent.com/u/20487725?v=4",
- "gravatar_id": "",
- "url": "https://api.github.com/users/TheAlgorithms",
- "html_url": "https://github.com/TheAlgorithms",
- "followers_url": "https://api.github.com/users/TheAlgorithms/followers",
- "following_url": "https://api.github.com/users/TheAlgorithms/following{/other_user}",
- "gists_url": "https://api.github.com/users/TheAlgorithms/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/TheAlgorithms/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/TheAlgorithms/subscriptions",
- "organizations_url": "https://api.github.com/users/TheAlgorithms/orgs",
- "repos_url": "https://api.github.com/users/TheAlgorithms/repos",
- "events_url": "https://api.github.com/users/TheAlgorithms/events{/privacy}",
- "received_events_url": "https://api.github.com/users/TheAlgorithms/received_events",
- "type": "Organization",
- "site_admin": false
- },
- "html_url": "https://github.com/TheAlgorithms/Python",
- "description": "All Algorithms implemented in Python",
- "fork": false,
- "url": "https://api.github.com/repos/TheAlgorithms/Python",
- "forks_url": "https://api.github.com/repos/TheAlgorithms/Python/forks",
- "keys_url": "https://api.github.com/repos/TheAlgorithms/Python/keys{/key_id}",
- "collaborators_url": "https://api.github.com/repos/TheAlgorithms/Python/collaborators{/collaborator}",
- "teams_url": "https://api.github.com/repos/TheAlgorithms/Python/teams",
- "hooks_url": "https://api.github.com/repos/TheAlgorithms/Python/hooks",
- "issue_events_url": "https://api.github.com/repos/TheAlgorithms/Python/issues/events{/number}",
- "events_url": "https://api.github.com/repos/TheAlgorithms/Python/events",
- "assignees_url": "https://api.github.com/repos/TheAlgorithms/Python/assignees{/user}",
- "branches_url": "https://api.github.com/repos/TheAlgorithms/Python/branches{/branch}",
- "tags_url": "https://api.github.com/repos/TheAlgorithms/Python/tags",
- "blobs_url": "https://api.github.com/repos/TheAlgorithms/Python/git/blobs{/sha}",
- "git_tags_url": "https://api.github.com/repos/TheAlgorithms/Python/git/tags{/sha}",
- "git_refs_url": "https://api.github.com/repos/TheAlgorithms/Python/git/refs{/sha}",
- "trees_url": "https://api.github.com/repos/TheAlgorithms/Python/git/trees{/sha}",
- "statuses_url": "https://api.github.com/repos/TheAlgorithms/Python/statuses/{sha}",
- "languages_url": "https://api.github.com/repos/TheAlgorithms/Python/languages",
- "stargazers_url": "https://api.github.com/repos/TheAlgorithms/Python/stargazers",
- "contributors_url": "https://api.github.com/repos/TheAlgorithms/Python/contributors",
- "subscribers_url": "https://api.github.com/repos/TheAlgorithms/Python/subscribers",
- "subscription_url": "https://api.github.com/repos/TheAlgorithms/Python/subscription",
- "commits_url": "https://api.github.com/repos/TheAlgorithms/Python/commits{/sha}",
- "git_commits_url": "https://api.github.com/repos/TheAlgorithms/Python/git/commits{/sha}",
- "comments_url": "https://api.github.com/repos/TheAlgorithms/Python/comments{/number}",
- "issue_comment_url": "https://api.github.com/repos/TheAlgorithms/Python/issues/comments{/number}",
- "contents_url": "https://api.github.com/repos/TheAlgorithms/Python/contents/{+path}",
- "compare_url": "https://api.github.com/repos/TheAlgorithms/Python/compare/{base}...{head}",
- "merges_url": "https://api.github.com/repos/TheAlgorithms/Python/merges",
- "archive_url": "https://api.github.com/repos/TheAlgorithms/Python/{archive_format}{/ref}",
- "downloads_url": "https://api.github.com/repos/TheAlgorithms/Python/downloads",
- "issues_url": "https://api.github.com/repos/TheAlgorithms/Python/issues{/number}",
- "pulls_url": "https://api.github.com/repos/TheAlgorithms/Python/pulls{/number}",
- "milestones_url": "https://api.github.com/repos/TheAlgorithms/Python/milestones{/number}",
- "notifications_url": "https://api.github.com/repos/TheAlgorithms/Python/notifications{?since,all,participating}",
- "labels_url": "https://api.github.com/repos/TheAlgorithms/Python/labels{/name}",
- "releases_url": "https://api.github.com/repos/TheAlgorithms/Python/releases{/id}",
- "deployments_url": "https://api.github.com/repos/TheAlgorithms/Python/deployments",
- "created_at": "2016-07-16T09:44:01Z",
- "updated_at": "2019-06-29T13:34:23Z",
- "pushed_at": "2019-06-29T10:23:38Z",
- "git_url": "git://github.com/TheAlgorithms/Python.git",
- "ssh_url": "git@github.com:TheAlgorithms/Python.git",
- "clone_url": "https://github.com/TheAlgorithms/Python.git",
- "svn_url": "https://github.com/TheAlgorithms/Python",
- "homepage": null,
- "size": 7449,
- "stargazers_count": 47820,
- "watchers_count": 47820,
- "language": "Python",
- "has_issues": true,
- "has_projects": true,
- "has_downloads": true,
- "has_wiki": true,
- "has_pages": false,
- "forks_count": 13852,
- "mirror_url": null,
- "archived": false,
- "disabled": false,
- "open_issues_count": 201,
- "license": {
- "key": "mit",
- "name": "MIT License",
- "spdx_id": "MIT",
- "url": "https://api.github.com/licenses/mit",
- "node_id": "MDc6TGljZW5zZTEz"
- },
- "forks": 13852,
- "open_issues": 201,
- "watchers": 47820,
- "default_branch": "master",
- "score": 1.0
- },
- {
- "id": 596892,
- "node_id": "MDEwOlJlcG9zaXRvcnk1OTY4OTI=",
- "name": "flask",
- "full_name": "pallets/flask",
- "private": false,
- "owner": {
- "login": "pallets",
- "id": 16748505,
- "node_id": "MDEyOk9yZ2FuaXphdGlvbjE2NzQ4NTA1",
- "avatar_url": "https://avatars3.githubusercontent.com/u/16748505?v=4",
- "gravatar_id": "",
- "url": "https://api.github.com/users/pallets",
- "html_url": "https://github.com/pallets",
- "followers_url": "https://api.github.com/users/pallets/followers",
- "following_url": "https://api.github.com/users/pallets/following{/other_user}",
- "gists_url": "https://api.github.com/users/pallets/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/pallets/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/pallets/subscriptions",
- "organizations_url": "https://api.github.com/users/pallets/orgs",
- "repos_url": "https://api.github.com/users/pallets/repos",
- "events_url": "https://api.github.com/users/pallets/events{/privacy}",
- "received_events_url": "https://api.github.com/users/pallets/received_events",
- "type": "Organization",
- "site_admin": false
- },
- "html_url": "https://github.com/pallets/flask",
- "description": "The Python micro framework for building web applications.",
- "fork": false,
- "url": "https://api.github.com/repos/pallets/flask",
- "forks_url": "https://api.github.com/repos/pallets/flask/forks",
- "keys_url": "https://api.github.com/repos/pallets/flask/keys{/key_id}",
- "collaborators_url": "https://api.github.com/repos/pallets/flask/collaborators{/collaborator}",
- "teams_url": "https://api.github.com/repos/pallets/flask/teams",
- "hooks_url": "https://api.github.com/repos/pallets/flask/hooks",
- "issue_events_url": "https://api.github.com/repos/pallets/flask/issues/events{/number}",
- "events_url": "https://api.github.com/repos/pallets/flask/events",
- "assignees_url": "https://api.github.com/repos/pallets/flask/assignees{/user}",
- "branches_url": "https://api.github.com/repos/pallets/flask/branches{/branch}",
- "tags_url": "https://api.github.com/repos/pallets/flask/tags",
- "blobs_url": "https://api.github.com/repos/pallets/flask/git/blobs{/sha}",
- "git_tags_url": "https://api.github.com/repos/pallets/flask/git/tags{/sha}",
- "git_refs_url": "https://api.github.com/repos/pallets/flask/git/refs{/sha}",
- "trees_url": "https://api.github.com/repos/pallets/flask/git/trees{/sha}",
- "statuses_url": "https://api.github.com/repos/pallets/flask/statuses/{sha}",
- "languages_url": "https://api.github.com/repos/pallets/flask/languages",
- "stargazers_url": "https://api.github.com/repos/pallets/flask/stargazers",
- "contributors_url": "https://api.github.com/repos/pallets/flask/contributors",
- "subscribers_url": "https://api.github.com/repos/pallets/flask/subscribers",
- "subscription_url": "https://api.github.com/repos/pallets/flask/subscription",
- "commits_url": "https://api.github.com/repos/pallets/flask/commits{/sha}",
- "git_commits_url": "https://api.github.com/repos/pallets/flask/git/commits{/sha}",
- "comments_url": "https://api.github.com/repos/pallets/flask/comments{/number}",
- "issue_comment_url": "https://api.github.com/repos/pallets/flask/issues/comments{/number}",
- "contents_url": "https://api.github.com/repos/pallets/flask/contents/{+path}",
- "compare_url": "https://api.github.com/repos/pallets/flask/compare/{base}...{head}",
- "merges_url": "https://api.github.com/repos/pallets/flask/merges",
- "archive_url": "https://api.github.com/repos/pallets/flask/{archive_format}{/ref}",
- "downloads_url": "https://api.github.com/repos/pallets/flask/downloads",
- "issues_url": "https://api.github.com/repos/pallets/flask/issues{/number}",
- "pulls_url": "https://api.github.com/repos/pallets/flask/pulls{/number}",
- "milestones_url": "https://api.github.com/repos/pallets/flask/milestones{/number}",
- "notifications_url": "https://api.github.com/repos/pallets/flask/notifications{?since,all,participating}",
- "labels_url": "https://api.github.com/repos/pallets/flask/labels{/name}",
- "releases_url": "https://api.github.com/repos/pallets/flask/releases{/id}",
- "deployments_url": "https://api.github.com/repos/pallets/flask/deployments",
- "created_at": "2010-04-06T11:11:59Z",
- "updated_at": "2019-06-29T13:22:21Z",
- "pushed_at": "2019-06-27T15:04:36Z",
- "git_url": "git://github.com/pallets/flask.git",
- "ssh_url": "git@github.com:pallets/flask.git",
- "clone_url": "https://github.com/pallets/flask.git",
- "svn_url": "https://github.com/pallets/flask",
- "homepage": "https://www.palletsprojects.com/p/flask/",
- "size": 7211,
- "stargazers_count": 45022,
- "watchers_count": 45022,
- "language": "Python",
- "has_issues": true,
- "has_projects": false,
- "has_downloads": true,
- "has_wiki": false,
- "has_pages": false,
- "forks_count": 12642,
- "mirror_url": null,
- "archived": false,
- "disabled": false,
- "open_issues_count": 17,
- "license": {
- "key": "bsd-3-clause",
- "name": "BSD 3-Clause \"New\" or \"Revised\" License",
- "spdx_id": "BSD-3-Clause",
- "url": "https://api.github.com/licenses/bsd-3-clause",
- "node_id": "MDc6TGljZW5zZTU="
- },
- "forks": 12642,
- "open_issues": 17,
- "watchers": 45022,
- "default_branch": "master",
- "score": 1.0
- },
- {
- "id": 33614304,
- "node_id": "MDEwOlJlcG9zaXRvcnkzMzYxNDMwNA==",
- "name": "thefuck",
- "full_name": "nvbn/thefuck",
- "private": false,
- "owner": {
- "login": "nvbn",
- "id": 1114542,
- "node_id": "MDQ6VXNlcjExMTQ1NDI=",
- "avatar_url": "https://avatars1.githubusercontent.com/u/1114542?v=4",
- "gravatar_id": "",
- "url": "https://api.github.com/users/nvbn",
- "html_url": "https://github.com/nvbn",
- "followers_url": "https://api.github.com/users/nvbn/followers",
- "following_url": "https://api.github.com/users/nvbn/following{/other_user}",
- "gists_url": "https://api.github.com/users/nvbn/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/nvbn/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/nvbn/subscriptions",
- "organizations_url": "https://api.github.com/users/nvbn/orgs",
- "repos_url": "https://api.github.com/users/nvbn/repos",
- "events_url": "https://api.github.com/users/nvbn/events{/privacy}",
- "received_events_url": "https://api.github.com/users/nvbn/received_events",
- "type": "User",
- "site_admin": false
- },
- "html_url": "https://github.com/nvbn/thefuck",
- "description": "Magnificent app which corrects your previous console command.",
- "fork": false,
- "url": "https://api.github.com/repos/nvbn/thefuck",
- "forks_url": "https://api.github.com/repos/nvbn/thefuck/forks",
- "keys_url": "https://api.github.com/repos/nvbn/thefuck/keys{/key_id}",
- "collaborators_url": "https://api.github.com/repos/nvbn/thefuck/collaborators{/collaborator}",
- "teams_url": "https://api.github.com/repos/nvbn/thefuck/teams",
- "hooks_url": "https://api.github.com/repos/nvbn/thefuck/hooks",
- "issue_events_url": "https://api.github.com/repos/nvbn/thefuck/issues/events{/number}",
- "events_url": "https://api.github.com/repos/nvbn/thefuck/events",
- "assignees_url": "https://api.github.com/repos/nvbn/thefuck/assignees{/user}",
- "branches_url": "https://api.github.com/repos/nvbn/thefuck/branches{/branch}",
- "tags_url": "https://api.github.com/repos/nvbn/thefuck/tags",
- "blobs_url": "https://api.github.com/repos/nvbn/thefuck/git/blobs{/sha}",
- "git_tags_url": "https://api.github.com/repos/nvbn/thefuck/git/tags{/sha}",
- "git_refs_url": "https://api.github.com/repos/nvbn/thefuck/git/refs{/sha}",
- "trees_url": "https://api.github.com/repos/nvbn/thefuck/git/trees{/sha}",
- "statuses_url": "https://api.github.com/repos/nvbn/thefuck/statuses/{sha}",
- "languages_url": "https://api.github.com/repos/nvbn/thefuck/languages",
- "stargazers_url": "https://api.github.com/repos/nvbn/thefuck/stargazers",
- "contributors_url": "https://api.github.com/repos/nvbn/thefuck/contributors",
- "subscribers_url": "https://api.github.com/repos/nvbn/thefuck/subscribers",
- "subscription_url": "https://api.github.com/repos/nvbn/thefuck/subscription",
- "commits_url": "https://api.github.com/repos/nvbn/thefuck/commits{/sha}",
- "git_commits_url": "https://api.github.com/repos/nvbn/thefuck/git/commits{/sha}",
- "comments_url": "https://api.github.com/repos/nvbn/thefuck/comments{/number}",
- "issue_comment_url": "https://api.github.com/repos/nvbn/thefuck/issues/comments{/number}",
- "contents_url": "https://api.github.com/repos/nvbn/thefuck/contents/{+path}",
- "compare_url": "https://api.github.com/repos/nvbn/thefuck/compare/{base}...{head}",
- "merges_url": "https://api.github.com/repos/nvbn/thefuck/merges",
- "archive_url": "https://api.github.com/repos/nvbn/thefuck/{archive_format}{/ref}",
- "downloads_url": "https://api.github.com/repos/nvbn/thefuck/downloads",
- "issues_url": "https://api.github.com/repos/nvbn/thefuck/issues{/number}",
- "pulls_url": "https://api.github.com/repos/nvbn/thefuck/pulls{/number}",
- "milestones_url": "https://api.github.com/repos/nvbn/thefuck/milestones{/number}",
- "notifications_url": "https://api.github.com/repos/nvbn/thefuck/notifications{?since,all,participating}",
- "labels_url": "https://api.github.com/repos/nvbn/thefuck/labels{/name}",
- "releases_url": "https://api.github.com/repos/nvbn/thefuck/releases{/id}",
- "deployments_url": "https://api.github.com/repos/nvbn/thefuck/deployments",
- "created_at": "2015-04-08T15:08:04Z",
- "updated_at": "2019-06-29T10:11:04Z",
- "pushed_at": "2019-06-26T18:38:50Z",
- "git_url": "git://github.com/nvbn/thefuck.git",
- "ssh_url": "git@github.com:nvbn/thefuck.git",
- "clone_url": "https://github.com/nvbn/thefuck.git",
- "svn_url": "https://github.com/nvbn/thefuck",
- "homepage": "",
- "size": 2742,
- "stargazers_count": 44520,
- "watchers_count": 44520,
- "language": "Python",
- "has_issues": true,
- "has_projects": true,
- "has_downloads": true,
- "has_wiki": true,
- "has_pages": false,
- "forks_count": 2220,
- "mirror_url": null,
- "archived": false,
- "disabled": false,
- "open_issues_count": 161,
- "license": {
- "key": "mit",
- "name": "MIT License",
- "spdx_id": "MIT",
- "url": "https://api.github.com/licenses/mit",
- "node_id": "MDc6TGljZW5zZTEz"
- },
- "forks": 2220,
- "open_issues": 161,
- "watchers": 44520,
- "default_branch": "master",
- "score": 1.0
- },
- {
- "id": 4164482,
- "node_id": "MDEwOlJlcG9zaXRvcnk0MTY0NDgy",
- "name": "django",
- "full_name": "django/django",
- "private": false,
- "owner": {
- "login": "django",
- "id": 27804,
- "node_id": "MDEyOk9yZ2FuaXphdGlvbjI3ODA0",
- "avatar_url": "https://avatars2.githubusercontent.com/u/27804?v=4",
- "gravatar_id": "",
- "url": "https://api.github.com/users/django",
- "html_url": "https://github.com/django",
- "followers_url": "https://api.github.com/users/django/followers",
- "following_url": "https://api.github.com/users/django/following{/other_user}",
- "gists_url": "https://api.github.com/users/django/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/django/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/django/subscriptions",
- "organizations_url": "https://api.github.com/users/django/orgs",
- "repos_url": "https://api.github.com/users/django/repos",
- "events_url": "https://api.github.com/users/django/events{/privacy}",
- "received_events_url": "https://api.github.com/users/django/received_events",
- "type": "Organization",
- "site_admin": false
- },
- "html_url": "https://github.com/django/django",
- "description": "The Web framework for perfectionists with deadlines.",
- "fork": false,
- "url": "https://api.github.com/repos/django/django",
- "forks_url": "https://api.github.com/repos/django/django/forks",
- "keys_url": "https://api.github.com/repos/django/django/keys{/key_id}",
- "collaborators_url": "https://api.github.com/repos/django/django/collaborators{/collaborator}",
- "teams_url": "https://api.github.com/repos/django/django/teams",
- "hooks_url": "https://api.github.com/repos/django/django/hooks",
- "issue_events_url": "https://api.github.com/repos/django/django/issues/events{/number}",
- "events_url": "https://api.github.com/repos/django/django/events",
- "assignees_url": "https://api.github.com/repos/django/django/assignees{/user}",
- "branches_url": "https://api.github.com/repos/django/django/branches{/branch}",
- "tags_url": "https://api.github.com/repos/django/django/tags",
- "blobs_url": "https://api.github.com/repos/django/django/git/blobs{/sha}",
- "git_tags_url": "https://api.github.com/repos/django/django/git/tags{/sha}",
- "git_refs_url": "https://api.github.com/repos/django/django/git/refs{/sha}",
- "trees_url": "https://api.github.com/repos/django/django/git/trees{/sha}",
- "statuses_url": "https://api.github.com/repos/django/django/statuses/{sha}",
- "languages_url": "https://api.github.com/repos/django/django/languages",
- "stargazers_url": "https://api.github.com/repos/django/django/stargazers",
- "contributors_url": "https://api.github.com/repos/django/django/contributors",
- "subscribers_url": "https://api.github.com/repos/django/django/subscribers",
- "subscription_url": "https://api.github.com/repos/django/django/subscription",
- "commits_url": "https://api.github.com/repos/django/django/commits{/sha}",
- "git_commits_url": "https://api.github.com/repos/django/django/git/commits{/sha}",
- "comments_url": "https://api.github.com/repos/django/django/comments{/number}",
- "issue_comment_url": "https://api.github.com/repos/django/django/issues/comments{/number}",
- "contents_url": "https://api.github.com/repos/django/django/contents/{+path}",
- "compare_url": "https://api.github.com/repos/django/django/compare/{base}...{head}",
- "merges_url": "https://api.github.com/repos/django/django/merges",
- "archive_url": "https://api.github.com/repos/django/django/{archive_format}{/ref}",
- "downloads_url": "https://api.github.com/repos/django/django/downloads",
- "issues_url": "https://api.github.com/repos/django/django/issues{/number}",
- "pulls_url": "https://api.github.com/repos/django/django/pulls{/number}",
- "milestones_url": "https://api.github.com/repos/django/django/milestones{/number}",
- "notifications_url": "https://api.github.com/repos/django/django/notifications{?since,all,participating}",
- "labels_url": "https://api.github.com/repos/django/django/labels{/name}",
- "releases_url": "https://api.github.com/repos/django/django/releases{/id}",
- "deployments_url": "https://api.github.com/repos/django/django/deployments",
- "created_at": "2012-04-28T02:47:18Z",
- "updated_at": "2019-06-29T13:22:31Z",
- "pushed_at": "2019-06-29T09:34:04Z",
- "git_url": "git://github.com/django/django.git",
- "ssh_url": "git@github.com:django/django.git",
- "clone_url": "https://github.com/django/django.git",
- "svn_url": "https://github.com/django/django",
- "homepage": "https://www.djangoproject.com/",
- "size": 188634,
- "stargazers_count": 42453,
- "watchers_count": 42453,
- "language": "Python",
- "has_issues": false,
- "has_projects": false,
- "has_downloads": true,
- "has_wiki": false,
- "has_pages": false,
- "forks_count": 18262,
- "mirror_url": null,
- "archived": false,
- "disabled": false,
- "open_issues_count": 229,
- "license": {
- "key": "other",
- "name": "Other",
- "spdx_id": "NOASSERTION",
- "url": null,
- "node_id": "MDc6TGljZW5zZTA="
- },
- "forks": 18262,
- "open_issues": 229,
- "watchers": 42453,
- "default_branch": "master",
- "score": 1.0
- },
- {
- "id": 33015583,
- "node_id": "MDEwOlJlcG9zaXRvcnkzMzAxNTU4Mw==",
- "name": "keras",
- "full_name": "keras-team/keras",
- "private": false,
- "owner": {
- "login": "keras-team",
- "id": 34455048,
- "node_id": "MDEyOk9yZ2FuaXphdGlvbjM0NDU1MDQ4",
- "avatar_url": "https://avatars0.githubusercontent.com/u/34455048?v=4",
- "gravatar_id": "",
- "url": "https://api.github.com/users/keras-team",
- "html_url": "https://github.com/keras-team",
- "followers_url": "https://api.github.com/users/keras-team/followers",
- "following_url": "https://api.github.com/users/keras-team/following{/other_user}",
- "gists_url": "https://api.github.com/users/keras-team/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/keras-team/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/keras-team/subscriptions",
- "organizations_url": "https://api.github.com/users/keras-team/orgs",
- "repos_url": "https://api.github.com/users/keras-team/repos",
- "events_url": "https://api.github.com/users/keras-team/events{/privacy}",
- "received_events_url": "https://api.github.com/users/keras-team/received_events",
- "type": "Organization",
- "site_admin": false
- },
- "html_url": "https://github.com/keras-team/keras",
- "description": "Deep Learning for humans",
- "fork": false,
- "url": "https://api.github.com/repos/keras-team/keras",
- "forks_url": "https://api.github.com/repos/keras-team/keras/forks",
- "keys_url": "https://api.github.com/repos/keras-team/keras/keys{/key_id}",
- "collaborators_url": "https://api.github.com/repos/keras-team/keras/collaborators{/collaborator}",
- "teams_url": "https://api.github.com/repos/keras-team/keras/teams",
- "hooks_url": "https://api.github.com/repos/keras-team/keras/hooks",
- "issue_events_url": "https://api.github.com/repos/keras-team/keras/issues/events{/number}",
- "events_url": "https://api.github.com/repos/keras-team/keras/events",
- "assignees_url": "https://api.github.com/repos/keras-team/keras/assignees{/user}",
- "branches_url": "https://api.github.com/repos/keras-team/keras/branches{/branch}",
- "tags_url": "https://api.github.com/repos/keras-team/keras/tags",
- "blobs_url": "https://api.github.com/repos/keras-team/keras/git/blobs{/sha}",
- "git_tags_url": "https://api.github.com/repos/keras-team/keras/git/tags{/sha}",
- "git_refs_url": "https://api.github.com/repos/keras-team/keras/git/refs{/sha}",
- "trees_url": "https://api.github.com/repos/keras-team/keras/git/trees{/sha}",
- "statuses_url": "https://api.github.com/repos/keras-team/keras/statuses/{sha}",
- "languages_url": "https://api.github.com/repos/keras-team/keras/languages",
- "stargazers_url": "https://api.github.com/repos/keras-team/keras/stargazers",
- "contributors_url": "https://api.github.com/repos/keras-team/keras/contributors",
- "subscribers_url": "https://api.github.com/repos/keras-team/keras/subscribers",
- "subscription_url": "https://api.github.com/repos/keras-team/keras/subscription",
- "commits_url": "https://api.github.com/repos/keras-team/keras/commits{/sha}",
- "git_commits_url": "https://api.github.com/repos/keras-team/keras/git/commits{/sha}",
- "comments_url": "https://api.github.com/repos/keras-team/keras/comments{/number}",
- "issue_comment_url": "https://api.github.com/repos/keras-team/keras/issues/comments{/number}",
- "contents_url": "https://api.github.com/repos/keras-team/keras/contents/{+path}",
- "compare_url": "https://api.github.com/repos/keras-team/keras/compare/{base}...{head}",
- "merges_url": "https://api.github.com/repos/keras-team/keras/merges",
- "archive_url": "https://api.github.com/repos/keras-team/keras/{archive_format}{/ref}",
- "downloads_url": "https://api.github.com/repos/keras-team/keras/downloads",
- "issues_url": "https://api.github.com/repos/keras-team/keras/issues{/number}",
- "pulls_url": "https://api.github.com/repos/keras-team/keras/pulls{/number}",
- "milestones_url": "https://api.github.com/repos/keras-team/keras/milestones{/number}",
- "notifications_url": "https://api.github.com/repos/keras-team/keras/notifications{?since,all,participating}",
- "labels_url": "https://api.github.com/repos/keras-team/keras/labels{/name}",
- "releases_url": "https://api.github.com/repos/keras-team/keras/releases{/id}",
- "deployments_url": "https://api.github.com/repos/keras-team/keras/deployments",
- "created_at": "2015-03-28T00:35:42Z",
- "updated_at": "2019-06-29T13:34:43Z",
- "pushed_at": "2019-06-29T09:46:48Z",
- "git_url": "git://github.com/keras-team/keras.git",
- "ssh_url": "git@github.com:keras-team/keras.git",
- "clone_url": "https://github.com/keras-team/keras.git",
- "svn_url": "https://github.com/keras-team/keras",
- "homepage": "http://keras.io/",
- "size": 12829,
- "stargazers_count": 42291,
- "watchers_count": 42291,
- "language": "Python",
- "has_issues": true,
- "has_projects": true,
- "has_downloads": true,
- "has_wiki": true,
- "has_pages": false,
- "forks_count": 16123,
- "mirror_url": null,
- "archived": false,
- "disabled": false,
- "open_issues_count": 2441,
- "license": {
- "key": "other",
- "name": "Other",
- "spdx_id": "NOASSERTION",
- "url": null,
- "node_id": "MDc6TGljZW5zZTA="
- },
- "forks": 16123,
- "open_issues": 2441,
- "watchers": 42291,
- "default_branch": "master",
- "score": 1.0
- },
- {
- "id": 3544424,
- "node_id": "MDEwOlJlcG9zaXRvcnkzNTQ0NDI0",
- "name": "httpie",
- "full_name": "jakubroztocil/httpie",
- "private": false,
- "owner": {
- "login": "jakubroztocil",
- "id": 326885,
- "node_id": "MDQ6VXNlcjMyNjg4NQ==",
- "avatar_url": "https://avatars3.githubusercontent.com/u/326885?v=4",
- "gravatar_id": "",
- "url": "https://api.github.com/users/jakubroztocil",
- "html_url": "https://github.com/jakubroztocil",
- "followers_url": "https://api.github.com/users/jakubroztocil/followers",
- "following_url": "https://api.github.com/users/jakubroztocil/following{/other_user}",
- "gists_url": "https://api.github.com/users/jakubroztocil/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/jakubroztocil/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/jakubroztocil/subscriptions",
- "organizations_url": "https://api.github.com/users/jakubroztocil/orgs",
- "repos_url": "https://api.github.com/users/jakubroztocil/repos",
- "events_url": "https://api.github.com/users/jakubroztocil/events{/privacy}",
- "received_events_url": "https://api.github.com/users/jakubroztocil/received_events",
- "type": "User",
- "site_admin": false
- },
- "html_url": "https://github.com/jakubroztocil/httpie",
- "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",
- "fork": false,
- "url": "https://api.github.com/repos/jakubroztocil/httpie",
- "forks_url": "https://api.github.com/repos/jakubroztocil/httpie/forks",
- "keys_url": "https://api.github.com/repos/jakubroztocil/httpie/keys{/key_id}",
- "collaborators_url": "https://api.github.com/repos/jakubroztocil/httpie/collaborators{/collaborator}",
- "teams_url": "https://api.github.com/repos/jakubroztocil/httpie/teams",
- "hooks_url": "https://api.github.com/repos/jakubroztocil/httpie/hooks",
- "issue_events_url": "https://api.github.com/repos/jakubroztocil/httpie/issues/events{/number}",
- "events_url": "https://api.github.com/repos/jakubroztocil/httpie/events",
- "assignees_url": "https://api.github.com/repos/jakubroztocil/httpie/assignees{/user}",
- "branches_url": "https://api.github.com/repos/jakubroztocil/httpie/branches{/branch}",
- "tags_url": "https://api.github.com/repos/jakubroztocil/httpie/tags",
- "blobs_url": "https://api.github.com/repos/jakubroztocil/httpie/git/blobs{/sha}",
- "git_tags_url": "https://api.github.com/repos/jakubroztocil/httpie/git/tags{/sha}",
- "git_refs_url": "https://api.github.com/repos/jakubroztocil/httpie/git/refs{/sha}",
- "trees_url": "https://api.github.com/repos/jakubroztocil/httpie/git/trees{/sha}",
- "statuses_url": "https://api.github.com/repos/jakubroztocil/httpie/statuses/{sha}",
- "languages_url": "https://api.github.com/repos/jakubroztocil/httpie/languages",
- "stargazers_url": "https://api.github.com/repos/jakubroztocil/httpie/stargazers",
- "contributors_url": "https://api.github.com/repos/jakubroztocil/httpie/contributors",
- "subscribers_url": "https://api.github.com/repos/jakubroztocil/httpie/subscribers",
- "subscription_url": "https://api.github.com/repos/jakubroztocil/httpie/subscription",
- "commits_url": "https://api.github.com/repos/jakubroztocil/httpie/commits{/sha}",
- "git_commits_url": "https://api.github.com/repos/jakubroztocil/httpie/git/commits{/sha}",
- "comments_url": "https://api.github.com/repos/jakubroztocil/httpie/comments{/number}",
- "issue_comment_url": "https://api.github.com/repos/jakubroztocil/httpie/issues/comments{/number}",
- "contents_url": "https://api.github.com/repos/jakubroztocil/httpie/contents/{+path}",
- "compare_url": "https://api.github.com/repos/jakubroztocil/httpie/compare/{base}...{head}",
- "merges_url": "https://api.github.com/repos/jakubroztocil/httpie/merges",
- "archive_url": "https://api.github.com/repos/jakubroztocil/httpie/{archive_format}{/ref}",
- "downloads_url": "https://api.github.com/repos/jakubroztocil/httpie/downloads",
- "issues_url": "https://api.github.com/repos/jakubroztocil/httpie/issues{/number}",
- "pulls_url": "https://api.github.com/repos/jakubroztocil/httpie/pulls{/number}",
- "milestones_url": "https://api.github.com/repos/jakubroztocil/httpie/milestones{/number}",
- "notifications_url": "https://api.github.com/repos/jakubroztocil/httpie/notifications{?since,all,participating}",
- "labels_url": "https://api.github.com/repos/jakubroztocil/httpie/labels{/name}",
- "releases_url": "https://api.github.com/repos/jakubroztocil/httpie/releases{/id}",
- "deployments_url": "https://api.github.com/repos/jakubroztocil/httpie/deployments",
- "created_at": "2012-02-25T12:39:13Z",
- "updated_at": "2019-06-29T12:43:22Z",
- "pushed_at": "2019-06-24T10:36:17Z",
- "git_url": "git://github.com/jakubroztocil/httpie.git",
- "ssh_url": "git@github.com:jakubroztocil/httpie.git",
- "clone_url": "https://github.com/jakubroztocil/httpie.git",
- "svn_url": "https://github.com/jakubroztocil/httpie",
- "homepage": "https://httpie.org",
- "size": 5389,
- "stargazers_count": 42122,
- "watchers_count": 42122,
- "language": "Python",
- "has_issues": true,
- "has_projects": true,
- "has_downloads": true,
- "has_wiki": false,
- "has_pages": false,
- "forks_count": 2768,
- "mirror_url": null,
- "archived": false,
- "disabled": false,
- "open_issues_count": 158,
- "license": {
- "key": "other",
- "name": "Other",
- "spdx_id": "NOASSERTION",
- "url": null,
- "node_id": "MDc6TGljZW5zZTA="
- },
- "forks": 2768,
- "open_issues": 158,
- "watchers": 42122,
- "default_branch": "master",
- "score": 1.0
- },
- {
- "id": 21872392,
- "node_id": "MDEwOlJlcG9zaXRvcnkyMTg3MjM5Mg==",
- "name": "awesome-machine-learning",
- "full_name": "josephmisiti/awesome-machine-learning",
- "private": false,
- "owner": {
- "login": "josephmisiti",
- "id": 246302,
- "node_id": "MDQ6VXNlcjI0NjMwMg==",
- "avatar_url": "https://avatars0.githubusercontent.com/u/246302?v=4",
- "gravatar_id": "",
- "url": "https://api.github.com/users/josephmisiti",
- "html_url": "https://github.com/josephmisiti",
- "followers_url": "https://api.github.com/users/josephmisiti/followers",
- "following_url": "https://api.github.com/users/josephmisiti/following{/other_user}",
- "gists_url": "https://api.github.com/users/josephmisiti/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/josephmisiti/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/josephmisiti/subscriptions",
- "organizations_url": "https://api.github.com/users/josephmisiti/orgs",
- "repos_url": "https://api.github.com/users/josephmisiti/repos",
- "events_url": "https://api.github.com/users/josephmisiti/events{/privacy}",
- "received_events_url": "https://api.github.com/users/josephmisiti/received_events",
- "type": "User",
- "site_admin": false
- },
- "html_url": "https://github.com/josephmisiti/awesome-machine-learning",
- "description": "A curated list of awesome Machine Learning frameworks, libraries and software.",
- "fork": false,
- "url": "https://api.github.com/repos/josephmisiti/awesome-machine-learning",
- "forks_url": "https://api.github.com/repos/josephmisiti/awesome-machine-learning/forks",
- "keys_url": "https://api.github.com/repos/josephmisiti/awesome-machine-learning/keys{/key_id}",
- "collaborators_url": "https://api.github.com/repos/josephmisiti/awesome-machine-learning/collaborators{/collaborator}",
- "teams_url": "https://api.github.com/repos/josephmisiti/awesome-machine-learning/teams",
- "hooks_url": "https://api.github.com/repos/josephmisiti/awesome-machine-learning/hooks",
- "issue_events_url": "https://api.github.com/repos/josephmisiti/awesome-machine-learning/issues/events{/number}",
- "events_url": "https://api.github.com/repos/josephmisiti/awesome-machine-learning/events",
- "assignees_url": "https://api.github.com/repos/josephmisiti/awesome-machine-learning/assignees{/user}",
- "branches_url": "https://api.github.com/repos/josephmisiti/awesome-machine-learning/branches{/branch}",
- "tags_url": "https://api.github.com/repos/josephmisiti/awesome-machine-learning/tags",
- "blobs_url": "https://api.github.com/repos/josephmisiti/awesome-machine-learning/git/blobs{/sha}",
- "git_tags_url": "https://api.github.com/repos/josephmisiti/awesome-machine-learning/git/tags{/sha}",
- "git_refs_url": "https://api.github.com/repos/josephmisiti/awesome-machine-learning/git/refs{/sha}",
- "trees_url": "https://api.github.com/repos/josephmisiti/awesome-machine-learning/git/trees{/sha}",
- "statuses_url": "https://api.github.com/repos/josephmisiti/awesome-machine-learning/statuses/{sha}",
- "languages_url": "https://api.github.com/repos/josephmisiti/awesome-machine-learning/languages",
- "stargazers_url": "https://api.github.com/repos/josephmisiti/awesome-machine-learning/stargazers",
- "contributors_url": "https://api.github.com/repos/josephmisiti/awesome-machine-learning/contributors",
- "subscribers_url": "https://api.github.com/repos/josephmisiti/awesome-machine-learning/subscribers",
- "subscription_url": "https://api.github.com/repos/josephmisiti/awesome-machine-learning/subscription",
- "commits_url": "https://api.github.com/repos/josephmisiti/awesome-machine-learning/commits{/sha}",
- "git_commits_url": "https://api.github.com/repos/josephmisiti/awesome-machine-learning/git/commits{/sha}",
- "comments_url": "https://api.github.com/repos/josephmisiti/awesome-machine-learning/comments{/number}",
- "issue_comment_url": "https://api.github.com/repos/josephmisiti/awesome-machine-learning/issues/comments{/number}",
- "contents_url": "https://api.github.com/repos/josephmisiti/awesome-machine-learning/contents/{+path}",
- "compare_url": "https://api.github.com/repos/josephmisiti/awesome-machine-learning/compare/{base}...{head}",
- "merges_url": "https://api.github.com/repos/josephmisiti/awesome-machine-learning/merges",
- "archive_url": "https://api.github.com/repos/josephmisiti/awesome-machine-learning/{archive_format}{/ref}",
- "downloads_url": "https://api.github.com/repos/josephmisiti/awesome-machine-learning/downloads",
- "issues_url": "https://api.github.com/repos/josephmisiti/awesome-machine-learning/issues{/number}",
- "pulls_url": "https://api.github.com/repos/josephmisiti/awesome-machine-learning/pulls{/number}",
- "milestones_url": "https://api.github.com/repos/josephmisiti/awesome-machine-learning/milestones{/number}",
- "notifications_url": "https://api.github.com/repos/josephmisiti/awesome-machine-learning/notifications{?since,all,participating}",
- "labels_url": "https://api.github.com/repos/josephmisiti/awesome-machine-learning/labels{/name}",
- "releases_url": "https://api.github.com/repos/josephmisiti/awesome-machine-learning/releases{/id}",
- "deployments_url": "https://api.github.com/repos/josephmisiti/awesome-machine-learning/deployments",
- "created_at": "2014-07-15T19:11:19Z",
- "updated_at": "2019-06-29T13:30:07Z",
- "pushed_at": "2019-06-25T14:25:26Z",
- "git_url": "git://github.com/josephmisiti/awesome-machine-learning.git",
- "ssh_url": "git@github.com:josephmisiti/awesome-machine-learning.git",
- "clone_url": "https://github.com/josephmisiti/awesome-machine-learning.git",
- "svn_url": "https://github.com/josephmisiti/awesome-machine-learning",
- "homepage": null,
- "size": 1797,
- "stargazers_count": 40543,
- "watchers_count": 40543,
- "language": "Python",
- "has_issues": true,
- "has_projects": false,
- "has_downloads": true,
- "has_wiki": false,
- "has_pages": true,
- "forks_count": 10184,
- "mirror_url": null,
- "archived": false,
- "disabled": false,
- "open_issues_count": 2,
- "license": {
- "key": "other",
- "name": "Other",
- "spdx_id": "NOASSERTION",
- "url": null,
- "node_id": "MDc6TGljZW5zZTA="
- },
- "forks": 10184,
- "open_issues": 2,
- "watchers": 40543,
- "default_branch": "master",
- "score": 1.0
- },
- {
- "id": 1362490,
- "node_id": "MDEwOlJlcG9zaXRvcnkxMzYyNDkw",
- "name": "requests",
- "full_name": "kennethreitz/requests",
- "private": false,
- "owner": {
- "login": "kennethreitz",
- "id": 47496974,
- "node_id": "MDEyOk9yZ2FuaXphdGlvbjQ3NDk2OTc0",
- "avatar_url": "https://avatars1.githubusercontent.com/u/47496974?v=4",
- "gravatar_id": "",
- "url": "https://api.github.com/users/kennethreitz",
- "html_url": "https://github.com/kennethreitz",
- "followers_url": "https://api.github.com/users/kennethreitz/followers",
- "following_url": "https://api.github.com/users/kennethreitz/following{/other_user}",
- "gists_url": "https://api.github.com/users/kennethreitz/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/kennethreitz/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/kennethreitz/subscriptions",
- "organizations_url": "https://api.github.com/users/kennethreitz/orgs",
- "repos_url": "https://api.github.com/users/kennethreitz/repos",
- "events_url": "https://api.github.com/users/kennethreitz/events{/privacy}",
- "received_events_url": "https://api.github.com/users/kennethreitz/received_events",
- "type": "Organization",
- "site_admin": false
- },
- "html_url": "https://github.com/kennethreitz/requests",
- "description": "Python HTTP Requests for Humans™ ✨🍰✨",
- "fork": false,
- "url": "https://api.github.com/repos/kennethreitz/requests",
- "forks_url": "https://api.github.com/repos/kennethreitz/requests/forks",
- "keys_url": "https://api.github.com/repos/kennethreitz/requests/keys{/key_id}",
- "collaborators_url": "https://api.github.com/repos/kennethreitz/requests/collaborators{/collaborator}",
- "teams_url": "https://api.github.com/repos/kennethreitz/requests/teams",
- "hooks_url": "https://api.github.com/repos/kennethreitz/requests/hooks",
- "issue_events_url": "https://api.github.com/repos/kennethreitz/requests/issues/events{/number}",
- "events_url": "https://api.github.com/repos/kennethreitz/requests/events",
- "assignees_url": "https://api.github.com/repos/kennethreitz/requests/assignees{/user}",
- "branches_url": "https://api.github.com/repos/kennethreitz/requests/branches{/branch}",
- "tags_url": "https://api.github.com/repos/kennethreitz/requests/tags",
- "blobs_url": "https://api.github.com/repos/kennethreitz/requests/git/blobs{/sha}",
- "git_tags_url": "https://api.github.com/repos/kennethreitz/requests/git/tags{/sha}",
- "git_refs_url": "https://api.github.com/repos/kennethreitz/requests/git/refs{/sha}",
- "trees_url": "https://api.github.com/repos/kennethreitz/requests/git/trees{/sha}",
- "statuses_url": "https://api.github.com/repos/kennethreitz/requests/statuses/{sha}",
- "languages_url": "https://api.github.com/repos/kennethreitz/requests/languages",
- "stargazers_url": "https://api.github.com/repos/kennethreitz/requests/stargazers",
- "contributors_url": "https://api.github.com/repos/kennethreitz/requests/contributors",
- "subscribers_url": "https://api.github.com/repos/kennethreitz/requests/subscribers",
- "subscription_url": "https://api.github.com/repos/kennethreitz/requests/subscription",
- "commits_url": "https://api.github.com/repos/kennethreitz/requests/commits{/sha}",
- "git_commits_url": "https://api.github.com/repos/kennethreitz/requests/git/commits{/sha}",
- "comments_url": "https://api.github.com/repos/kennethreitz/requests/comments{/number}",
- "issue_comment_url": "https://api.github.com/repos/kennethreitz/requests/issues/comments{/number}",
- "contents_url": "https://api.github.com/repos/kennethreitz/requests/contents/{+path}",
- "compare_url": "https://api.github.com/repos/kennethreitz/requests/compare/{base}...{head}",
- "merges_url": "https://api.github.com/repos/kennethreitz/requests/merges",
- "archive_url": "https://api.github.com/repos/kennethreitz/requests/{archive_format}{/ref}",
- "downloads_url": "https://api.github.com/repos/kennethreitz/requests/downloads",
- "issues_url": "https://api.github.com/repos/kennethreitz/requests/issues{/number}",
- "pulls_url": "https://api.github.com/repos/kennethreitz/requests/pulls{/number}",
- "milestones_url": "https://api.github.com/repos/kennethreitz/requests/milestones{/number}",
- "notifications_url": "https://api.github.com/repos/kennethreitz/requests/notifications{?since,all,participating}",
- "labels_url": "https://api.github.com/repos/kennethreitz/requests/labels{/name}",
- "releases_url": "https://api.github.com/repos/kennethreitz/requests/releases{/id}",
- "deployments_url": "https://api.github.com/repos/kennethreitz/requests/deployments",
- "created_at": "2011-02-13T18:38:17Z",
- "updated_at": "2019-06-29T12:20:47Z",
- "pushed_at": "2019-06-26T19:21:20Z",
- "git_url": "git://github.com/kennethreitz/requests.git",
- "ssh_url": "git@github.com:kennethreitz/requests.git",
- "clone_url": "https://github.com/kennethreitz/requests.git",
- "svn_url": "https://github.com/kennethreitz/requests",
- "homepage": "http://python-requests.org",
- "size": 9985,
- "stargazers_count": 39162,
- "watchers_count": 39162,
- "language": "Python",
- "has_issues": true,
- "has_projects": false,
- "has_downloads": true,
- "has_wiki": true,
- "has_pages": false,
- "forks_count": 7142,
- "mirror_url": null,
- "archived": false,
- "disabled": false,
- "open_issues_count": 240,
- "license": {
- "key": "other",
- "name": "Other",
- "spdx_id": "NOASSERTION",
- "url": null,
- "node_id": "MDc6TGljZW5zZTA="
- },
- "forks": 7142,
- "open_issues": 240,
- "watchers": 39162,
- "default_branch": "master",
- "score": 1.0
- },
- {
- "id": 3638964,
- "node_id": "MDEwOlJlcG9zaXRvcnkzNjM4OTY0",
- "name": "ansible",
- "full_name": "ansible/ansible",
- "private": false,
- "owner": {
- "login": "ansible",
- "id": 1507452,
- "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1MDc0NTI=",
- "avatar_url": "https://avatars2.githubusercontent.com/u/1507452?v=4",
- "gravatar_id": "",
- "url": "https://api.github.com/users/ansible",
- "html_url": "https://github.com/ansible",
- "followers_url": "https://api.github.com/users/ansible/followers",
- "following_url": "https://api.github.com/users/ansible/following{/other_user}",
- "gists_url": "https://api.github.com/users/ansible/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/ansible/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/ansible/subscriptions",
- "organizations_url": "https://api.github.com/users/ansible/orgs",
- "repos_url": "https://api.github.com/users/ansible/repos",
- "events_url": "https://api.github.com/users/ansible/events{/privacy}",
- "received_events_url": "https://api.github.com/users/ansible/received_events",
- "type": "Organization",
- "site_admin": false
- },
- "html_url": "https://github.com/ansible/ansible",
- "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/",
- "fork": false,
- "url": "https://api.github.com/repos/ansible/ansible",
- "forks_url": "https://api.github.com/repos/ansible/ansible/forks",
- "keys_url": "https://api.github.com/repos/ansible/ansible/keys{/key_id}",
- "collaborators_url": "https://api.github.com/repos/ansible/ansible/collaborators{/collaborator}",
- "teams_url": "https://api.github.com/repos/ansible/ansible/teams",
- "hooks_url": "https://api.github.com/repos/ansible/ansible/hooks",
- "issue_events_url": "https://api.github.com/repos/ansible/ansible/issues/events{/number}",
- "events_url": "https://api.github.com/repos/ansible/ansible/events",
- "assignees_url": "https://api.github.com/repos/ansible/ansible/assignees{/user}",
- "branches_url": "https://api.github.com/repos/ansible/ansible/branches{/branch}",
- "tags_url": "https://api.github.com/repos/ansible/ansible/tags",
- "blobs_url": "https://api.github.com/repos/ansible/ansible/git/blobs{/sha}",
- "git_tags_url": "https://api.github.com/repos/ansible/ansible/git/tags{/sha}",
- "git_refs_url": "https://api.github.com/repos/ansible/ansible/git/refs{/sha}",
- "trees_url": "https://api.github.com/repos/ansible/ansible/git/trees{/sha}",
- "statuses_url": "https://api.github.com/repos/ansible/ansible/statuses/{sha}",
- "languages_url": "https://api.github.com/repos/ansible/ansible/languages",
- "stargazers_url": "https://api.github.com/repos/ansible/ansible/stargazers",
- "contributors_url": "https://api.github.com/repos/ansible/ansible/contributors",
- "subscribers_url": "https://api.github.com/repos/ansible/ansible/subscribers",
- "subscription_url": "https://api.github.com/repos/ansible/ansible/subscription",
- "commits_url": "https://api.github.com/repos/ansible/ansible/commits{/sha}",
- "git_commits_url": "https://api.github.com/repos/ansible/ansible/git/commits{/sha}",
- "comments_url": "https://api.github.com/repos/ansible/ansible/comments{/number}",
- "issue_comment_url": "https://api.github.com/repos/ansible/ansible/issues/comments{/number}",
- "contents_url": "https://api.github.com/repos/ansible/ansible/contents/{+path}",
- "compare_url": "https://api.github.com/repos/ansible/ansible/compare/{base}...{head}",
- "merges_url": "https://api.github.com/repos/ansible/ansible/merges",
- "archive_url": "https://api.github.com/repos/ansible/ansible/{archive_format}{/ref}",
- "downloads_url": "https://api.github.com/repos/ansible/ansible/downloads",
- "issues_url": "https://api.github.com/repos/ansible/ansible/issues{/number}",
- "pulls_url": "https://api.github.com/repos/ansible/ansible/pulls{/number}",
- "milestones_url": "https://api.github.com/repos/ansible/ansible/milestones{/number}",
- "notifications_url": "https://api.github.com/repos/ansible/ansible/notifications{?since,all,participating}",
- "labels_url": "https://api.github.com/repos/ansible/ansible/labels{/name}",
- "releases_url": "https://api.github.com/repos/ansible/ansible/releases{/id}",
- "deployments_url": "https://api.github.com/repos/ansible/ansible/deployments",
- "created_at": "2012-03-06T14:58:02Z",
- "updated_at": "2019-06-29T13:06:54Z",
- "pushed_at": "2019-06-29T13:15:39Z",
- "git_url": "git://github.com/ansible/ansible.git",
- "ssh_url": "git@github.com:ansible/ansible.git",
- "clone_url": "https://github.com/ansible/ansible.git",
- "svn_url": "https://github.com/ansible/ansible",
- "homepage": "https://www.ansible.com/",
- "size": 171450,
- "stargazers_count": 37984,
- "watchers_count": 37984,
- "language": "Python",
- "has_issues": true,
- "has_projects": true,
- "has_downloads": true,
- "has_wiki": false,
- "has_pages": false,
- "forks_count": 15930,
- "mirror_url": null,
- "archived": false,
- "disabled": false,
- "open_issues_count": 5773,
- "license": {
- "key": "gpl-3.0",
- "name": "GNU General Public License v3.0",
- "spdx_id": "GPL-3.0",
- "url": "https://api.github.com/licenses/gpl-3.0",
- "node_id": "MDc6TGljZW5zZTk="
- },
- "forks": 15930,
- "open_issues": 5773,
- "watchers": 37984,
- "default_branch": "devel",
- "score": 1.0
- },
- {
- "id": 843222,
- "node_id": "MDEwOlJlcG9zaXRvcnk4NDMyMjI=",
- "name": "scikit-learn",
- "full_name": "scikit-learn/scikit-learn",
- "private": false,
- "owner": {
- "login": "scikit-learn",
- "id": 365630,
- "node_id": "MDEyOk9yZ2FuaXphdGlvbjM2NTYzMA==",
- "avatar_url": "https://avatars2.githubusercontent.com/u/365630?v=4",
- "gravatar_id": "",
- "url": "https://api.github.com/users/scikit-learn",
- "html_url": "https://github.com/scikit-learn",
- "followers_url": "https://api.github.com/users/scikit-learn/followers",
- "following_url": "https://api.github.com/users/scikit-learn/following{/other_user}",
- "gists_url": "https://api.github.com/users/scikit-learn/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/scikit-learn/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/scikit-learn/subscriptions",
- "organizations_url": "https://api.github.com/users/scikit-learn/orgs",
- "repos_url": "https://api.github.com/users/scikit-learn/repos",
- "events_url": "https://api.github.com/users/scikit-learn/events{/privacy}",
- "received_events_url": "https://api.github.com/users/scikit-learn/received_events",
- "type": "Organization",
- "site_admin": false
- },
- "html_url": "https://github.com/scikit-learn/scikit-learn",
- "description": "scikit-learn: machine learning in Python",
- "fork": false,
- "url": "https://api.github.com/repos/scikit-learn/scikit-learn",
- "forks_url": "https://api.github.com/repos/scikit-learn/scikit-learn/forks",
- "keys_url": "https://api.github.com/repos/scikit-learn/scikit-learn/keys{/key_id}",
- "collaborators_url": "https://api.github.com/repos/scikit-learn/scikit-learn/collaborators{/collaborator}",
- "teams_url": "https://api.github.com/repos/scikit-learn/scikit-learn/teams",
- "hooks_url": "https://api.github.com/repos/scikit-learn/scikit-learn/hooks",
- "issue_events_url": "https://api.github.com/repos/scikit-learn/scikit-learn/issues/events{/number}",
- "events_url": "https://api.github.com/repos/scikit-learn/scikit-learn/events",
- "assignees_url": "https://api.github.com/repos/scikit-learn/scikit-learn/assignees{/user}",
- "branches_url": "https://api.github.com/repos/scikit-learn/scikit-learn/branches{/branch}",
- "tags_url": "https://api.github.com/repos/scikit-learn/scikit-learn/tags",
- "blobs_url": "https://api.github.com/repos/scikit-learn/scikit-learn/git/blobs{/sha}",
- "git_tags_url": "https://api.github.com/repos/scikit-learn/scikit-learn/git/tags{/sha}",
- "git_refs_url": "https://api.github.com/repos/scikit-learn/scikit-learn/git/refs{/sha}",
- "trees_url": "https://api.github.com/repos/scikit-learn/scikit-learn/git/trees{/sha}",
- "statuses_url": "https://api.github.com/repos/scikit-learn/scikit-learn/statuses/{sha}",
- "languages_url": "https://api.github.com/repos/scikit-learn/scikit-learn/languages",
- "stargazers_url": "https://api.github.com/repos/scikit-learn/scikit-learn/stargazers",
- "contributors_url": "https://api.github.com/repos/scikit-learn/scikit-learn/contributors",
- "subscribers_url": "https://api.github.com/repos/scikit-learn/scikit-learn/subscribers",
- "subscription_url": "https://api.github.com/repos/scikit-learn/scikit-learn/subscription",
- "commits_url": "https://api.github.com/repos/scikit-learn/scikit-learn/commits{/sha}",
- "git_commits_url": "https://api.github.com/repos/scikit-learn/scikit-learn/git/commits{/sha}",
- "comments_url": "https://api.github.com/repos/scikit-learn/scikit-learn/comments{/number}",
- "issue_comment_url": "https://api.github.com/repos/scikit-learn/scikit-learn/issues/comments{/number}",
- "contents_url": "https://api.github.com/repos/scikit-learn/scikit-learn/contents/{+path}",
- "compare_url": "https://api.github.com/repos/scikit-learn/scikit-learn/compare/{base}...{head}",
- "merges_url": "https://api.github.com/repos/scikit-learn/scikit-learn/merges",
- "archive_url": "https://api.github.com/repos/scikit-learn/scikit-learn/{archive_format}{/ref}",
- "downloads_url": "https://api.github.com/repos/scikit-learn/scikit-learn/downloads",
- "issues_url": "https://api.github.com/repos/scikit-learn/scikit-learn/issues{/number}",
- "pulls_url": "https://api.github.com/repos/scikit-learn/scikit-learn/pulls{/number}",
- "milestones_url": "https://api.github.com/repos/scikit-learn/scikit-learn/milestones{/number}",
- "notifications_url": "https://api.github.com/repos/scikit-learn/scikit-learn/notifications{?since,all,participating}",
- "labels_url": "https://api.github.com/repos/scikit-learn/scikit-learn/labels{/name}",
- "releases_url": "https://api.github.com/repos/scikit-learn/scikit-learn/releases{/id}",
- "deployments_url": "https://api.github.com/repos/scikit-learn/scikit-learn/deployments",
- "created_at": "2010-08-17T09:43:38Z",
- "updated_at": "2019-06-29T12:40:29Z",
- "pushed_at": "2019-06-29T10:42:14Z",
- "git_url": "git://github.com/scikit-learn/scikit-learn.git",
- "ssh_url": "git@github.com:scikit-learn/scikit-learn.git",
- "clone_url": "https://github.com/scikit-learn/scikit-learn.git",
- "svn_url": "https://github.com/scikit-learn/scikit-learn",
- "homepage": "https://scikit-learn.org",
- "size": 105071,
- "stargazers_count": 35847,
- "watchers_count": 35847,
- "language": "Python",
- "has_issues": true,
- "has_projects": true,
- "has_downloads": true,
- "has_wiki": true,
- "has_pages": false,
- "forks_count": 17539,
- "mirror_url": null,
- "archived": false,
- "disabled": false,
- "open_issues_count": 1936,
- "license": {
- "key": "other",
- "name": "Other",
- "spdx_id": "NOASSERTION",
- "url": null,
- "node_id": "MDc6TGljZW5zZTA="
- },
- "forks": 17539,
- "open_issues": 1936,
- "watchers": 35847,
- "default_branch": "master",
- "score": 1.0
- },
- {
- "id": 529502,
- "node_id": "MDEwOlJlcG9zaXRvcnk1Mjk1MDI=",
- "name": "scrapy",
- "full_name": "scrapy/scrapy",
- "private": false,
- "owner": {
- "login": "scrapy",
- "id": 733635,
- "node_id": "MDEyOk9yZ2FuaXphdGlvbjczMzYzNQ==",
- "avatar_url": "https://avatars0.githubusercontent.com/u/733635?v=4",
- "gravatar_id": "",
- "url": "https://api.github.com/users/scrapy",
- "html_url": "https://github.com/scrapy",
- "followers_url": "https://api.github.com/users/scrapy/followers",
- "following_url": "https://api.github.com/users/scrapy/following{/other_user}",
- "gists_url": "https://api.github.com/users/scrapy/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/scrapy/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/scrapy/subscriptions",
- "organizations_url": "https://api.github.com/users/scrapy/orgs",
- "repos_url": "https://api.github.com/users/scrapy/repos",
- "events_url": "https://api.github.com/users/scrapy/events{/privacy}",
- "received_events_url": "https://api.github.com/users/scrapy/received_events",
- "type": "Organization",
- "site_admin": false
- },
- "html_url": "https://github.com/scrapy/scrapy",
- "description": "Scrapy, a fast high-level web crawling & scraping framework for Python.",
- "fork": false,
- "url": "https://api.github.com/repos/scrapy/scrapy",
- "forks_url": "https://api.github.com/repos/scrapy/scrapy/forks",
- "keys_url": "https://api.github.com/repos/scrapy/scrapy/keys{/key_id}",
- "collaborators_url": "https://api.github.com/repos/scrapy/scrapy/collaborators{/collaborator}",
- "teams_url": "https://api.github.com/repos/scrapy/scrapy/teams",
- "hooks_url": "https://api.github.com/repos/scrapy/scrapy/hooks",
- "issue_events_url": "https://api.github.com/repos/scrapy/scrapy/issues/events{/number}",
- "events_url": "https://api.github.com/repos/scrapy/scrapy/events",
- "assignees_url": "https://api.github.com/repos/scrapy/scrapy/assignees{/user}",
- "branches_url": "https://api.github.com/repos/scrapy/scrapy/branches{/branch}",
- "tags_url": "https://api.github.com/repos/scrapy/scrapy/tags",
- "blobs_url": "https://api.github.com/repos/scrapy/scrapy/git/blobs{/sha}",
- "git_tags_url": "https://api.github.com/repos/scrapy/scrapy/git/tags{/sha}",
- "git_refs_url": "https://api.github.com/repos/scrapy/scrapy/git/refs{/sha}",
- "trees_url": "https://api.github.com/repos/scrapy/scrapy/git/trees{/sha}",
- "statuses_url": "https://api.github.com/repos/scrapy/scrapy/statuses/{sha}",
- "languages_url": "https://api.github.com/repos/scrapy/scrapy/languages",
- "stargazers_url": "https://api.github.com/repos/scrapy/scrapy/stargazers",
- "contributors_url": "https://api.github.com/repos/scrapy/scrapy/contributors",
- "subscribers_url": "https://api.github.com/repos/scrapy/scrapy/subscribers",
- "subscription_url": "https://api.github.com/repos/scrapy/scrapy/subscription",
- "commits_url": "https://api.github.com/repos/scrapy/scrapy/commits{/sha}",
- "git_commits_url": "https://api.github.com/repos/scrapy/scrapy/git/commits{/sha}",
- "comments_url": "https://api.github.com/repos/scrapy/scrapy/comments{/number}",
- "issue_comment_url": "https://api.github.com/repos/scrapy/scrapy/issues/comments{/number}",
- "contents_url": "https://api.github.com/repos/scrapy/scrapy/contents/{+path}",
- "compare_url": "https://api.github.com/repos/scrapy/scrapy/compare/{base}...{head}",
- "merges_url": "https://api.github.com/repos/scrapy/scrapy/merges",
- "archive_url": "https://api.github.com/repos/scrapy/scrapy/{archive_format}{/ref}",
- "downloads_url": "https://api.github.com/repos/scrapy/scrapy/downloads",
- "issues_url": "https://api.github.com/repos/scrapy/scrapy/issues{/number}",
- "pulls_url": "https://api.github.com/repos/scrapy/scrapy/pulls{/number}",
- "milestones_url": "https://api.github.com/repos/scrapy/scrapy/milestones{/number}",
- "notifications_url": "https://api.github.com/repos/scrapy/scrapy/notifications{?since,all,participating}",
- "labels_url": "https://api.github.com/repos/scrapy/scrapy/labels{/name}",
- "releases_url": "https://api.github.com/repos/scrapy/scrapy/releases{/id}",
- "deployments_url": "https://api.github.com/repos/scrapy/scrapy/deployments",
- "created_at": "2010-02-22T02:01:14Z",
- "updated_at": "2019-06-29T13:28:42Z",
- "pushed_at": "2019-06-27T13:59:56Z",
- "git_url": "git://github.com/scrapy/scrapy.git",
- "ssh_url": "git@github.com:scrapy/scrapy.git",
- "clone_url": "https://github.com/scrapy/scrapy.git",
- "svn_url": "https://github.com/scrapy/scrapy",
- "homepage": "https://scrapy.org",
- "size": 17092,
- "stargazers_count": 33410,
- "watchers_count": 33410,
- "language": "Python",
- "has_issues": true,
- "has_projects": true,
- "has_downloads": false,
- "has_wiki": true,
- "has_pages": false,
- "forks_count": 7858,
- "mirror_url": null,
- "archived": false,
- "disabled": false,
- "open_issues_count": 814,
- "license": {
- "key": "other",
- "name": "Other",
- "spdx_id": "NOASSERTION",
- "url": null,
- "node_id": "MDc6TGljZW5zZTA="
- },
- "forks": 7858,
- "open_issues": 814,
- "watchers": 33410,
- "default_branch": "master",
- "score": 1.0
- },
- {
- "id": 40416236,
- "node_id": "MDEwOlJlcG9zaXRvcnk0MDQxNjIzNg==",
- "name": "big-list-of-naughty-strings",
- "full_name": "minimaxir/big-list-of-naughty-strings",
- "private": false,
- "owner": {
- "login": "minimaxir",
- "id": 2179708,
- "node_id": "MDQ6VXNlcjIxNzk3MDg=",
- "avatar_url": "https://avatars1.githubusercontent.com/u/2179708?v=4",
- "gravatar_id": "",
- "url": "https://api.github.com/users/minimaxir",
- "html_url": "https://github.com/minimaxir",
- "followers_url": "https://api.github.com/users/minimaxir/followers",
- "following_url": "https://api.github.com/users/minimaxir/following{/other_user}",
- "gists_url": "https://api.github.com/users/minimaxir/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/minimaxir/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/minimaxir/subscriptions",
- "organizations_url": "https://api.github.com/users/minimaxir/orgs",
- "repos_url": "https://api.github.com/users/minimaxir/repos",
- "events_url": "https://api.github.com/users/minimaxir/events{/privacy}",
- "received_events_url": "https://api.github.com/users/minimaxir/received_events",
- "type": "User",
- "site_admin": false
- },
- "html_url": "https://github.com/minimaxir/big-list-of-naughty-strings",
- "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.",
- "fork": false,
- "url": "https://api.github.com/repos/minimaxir/big-list-of-naughty-strings",
- "forks_url": "https://api.github.com/repos/minimaxir/big-list-of-naughty-strings/forks",
- "keys_url": "https://api.github.com/repos/minimaxir/big-list-of-naughty-strings/keys{/key_id}",
- "collaborators_url": "https://api.github.com/repos/minimaxir/big-list-of-naughty-strings/collaborators{/collaborator}",
- "teams_url": "https://api.github.com/repos/minimaxir/big-list-of-naughty-strings/teams",
- "hooks_url": "https://api.github.com/repos/minimaxir/big-list-of-naughty-strings/hooks",
- "issue_events_url": "https://api.github.com/repos/minimaxir/big-list-of-naughty-strings/issues/events{/number}",
- "events_url": "https://api.github.com/repos/minimaxir/big-list-of-naughty-strings/events",
- "assignees_url": "https://api.github.com/repos/minimaxir/big-list-of-naughty-strings/assignees{/user}",
- "branches_url": "https://api.github.com/repos/minimaxir/big-list-of-naughty-strings/branches{/branch}",
- "tags_url": "https://api.github.com/repos/minimaxir/big-list-of-naughty-strings/tags",
- "blobs_url": "https://api.github.com/repos/minimaxir/big-list-of-naughty-strings/git/blobs{/sha}",
- "git_tags_url": "https://api.github.com/repos/minimaxir/big-list-of-naughty-strings/git/tags{/sha}",
- "git_refs_url": "https://api.github.com/repos/minimaxir/big-list-of-naughty-strings/git/refs{/sha}",
- "trees_url": "https://api.github.com/repos/minimaxir/big-list-of-naughty-strings/git/trees{/sha}",
- "statuses_url": "https://api.github.com/repos/minimaxir/big-list-of-naughty-strings/statuses/{sha}",
- "languages_url": "https://api.github.com/repos/minimaxir/big-list-of-naughty-strings/languages",
- "stargazers_url": "https://api.github.com/repos/minimaxir/big-list-of-naughty-strings/stargazers",
- "contributors_url": "https://api.github.com/repos/minimaxir/big-list-of-naughty-strings/contributors",
- "subscribers_url": "https://api.github.com/repos/minimaxir/big-list-of-naughty-strings/subscribers",
- "subscription_url": "https://api.github.com/repos/minimaxir/big-list-of-naughty-strings/subscription",
- "commits_url": "https://api.github.com/repos/minimaxir/big-list-of-naughty-strings/commits{/sha}",
- "git_commits_url": "https://api.github.com/repos/minimaxir/big-list-of-naughty-strings/git/commits{/sha}",
- "comments_url": "https://api.github.com/repos/minimaxir/big-list-of-naughty-strings/comments{/number}",
- "issue_comment_url": "https://api.github.com/repos/minimaxir/big-list-of-naughty-strings/issues/comments{/number}",
- "contents_url": "https://api.github.com/repos/minimaxir/big-list-of-naughty-strings/contents/{+path}",
- "compare_url": "https://api.github.com/repos/minimaxir/big-list-of-naughty-strings/compare/{base}...{head}",
- "merges_url": "https://api.github.com/repos/minimaxir/big-list-of-naughty-strings/merges",
- "archive_url": "https://api.github.com/repos/minimaxir/big-list-of-naughty-strings/{archive_format}{/ref}",
- "downloads_url": "https://api.github.com/repos/minimaxir/big-list-of-naughty-strings/downloads",
- "issues_url": "https://api.github.com/repos/minimaxir/big-list-of-naughty-strings/issues{/number}",
- "pulls_url": "https://api.github.com/repos/minimaxir/big-list-of-naughty-strings/pulls{/number}",
- "milestones_url": "https://api.github.com/repos/minimaxir/big-list-of-naughty-strings/milestones{/number}",
- "notifications_url": "https://api.github.com/repos/minimaxir/big-list-of-naughty-strings/notifications{?since,all,participating}",
- "labels_url": "https://api.github.com/repos/minimaxir/big-list-of-naughty-strings/labels{/name}",
- "releases_url": "https://api.github.com/repos/minimaxir/big-list-of-naughty-strings/releases{/id}",
- "deployments_url": "https://api.github.com/repos/minimaxir/big-list-of-naughty-strings/deployments",
- "created_at": "2015-08-08T20:57:20Z",
- "updated_at": "2019-06-28T23:27:07Z",
- "pushed_at": "2019-03-03T04:08:47Z",
- "git_url": "git://github.com/minimaxir/big-list-of-naughty-strings.git",
- "ssh_url": "git@github.com:minimaxir/big-list-of-naughty-strings.git",
- "clone_url": "https://github.com/minimaxir/big-list-of-naughty-strings.git",
- "svn_url": "https://github.com/minimaxir/big-list-of-naughty-strings",
- "homepage": null,
- "size": 229,
- "stargazers_count": 32581,
- "watchers_count": 32581,
- "language": "Python",
- "has_issues": true,
- "has_projects": true,
- "has_downloads": true,
- "has_wiki": true,
- "has_pages": false,
- "forks_count": 1381,
- "mirror_url": null,
- "archived": false,
- "disabled": false,
- "open_issues_count": 72,
- "license": {
- "key": "mit",
- "name": "MIT License",
- "spdx_id": "MIT",
- "url": "https://api.github.com/licenses/mit",
- "node_id": "MDc6TGljZW5zZTEz"
- },
- "forks": 1381,
- "open_issues": 72,
- "watchers": 32581,
- "default_branch": "master",
- "score": 1.0
- },
- {
- "id": 4086616,
- "node_id": "MDEwOlJlcG9zaXRvcnk0MDg2NjE2",
- "name": "shadowsocks",
- "full_name": "shadowsocks/shadowsocks",
- "private": false,
- "owner": {
- "login": "shadowsocks",
- "id": 3006190,
- "node_id": "MDEyOk9yZ2FuaXphdGlvbjMwMDYxOTA=",
- "avatar_url": "https://avatars1.githubusercontent.com/u/3006190?v=4",
- "gravatar_id": "",
- "url": "https://api.github.com/users/shadowsocks",
- "html_url": "https://github.com/shadowsocks",
- "followers_url": "https://api.github.com/users/shadowsocks/followers",
- "following_url": "https://api.github.com/users/shadowsocks/following{/other_user}",
- "gists_url": "https://api.github.com/users/shadowsocks/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/shadowsocks/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/shadowsocks/subscriptions",
- "organizations_url": "https://api.github.com/users/shadowsocks/orgs",
- "repos_url": "https://api.github.com/users/shadowsocks/repos",
- "events_url": "https://api.github.com/users/shadowsocks/events{/privacy}",
- "received_events_url": "https://api.github.com/users/shadowsocks/received_events",
- "type": "Organization",
- "site_admin": false
- },
- "html_url": "https://github.com/shadowsocks/shadowsocks",
- "description": null,
- "fork": false,
- "url": "https://api.github.com/repos/shadowsocks/shadowsocks",
- "forks_url": "https://api.github.com/repos/shadowsocks/shadowsocks/forks",
- "keys_url": "https://api.github.com/repos/shadowsocks/shadowsocks/keys{/key_id}",
- "collaborators_url": "https://api.github.com/repos/shadowsocks/shadowsocks/collaborators{/collaborator}",
- "teams_url": "https://api.github.com/repos/shadowsocks/shadowsocks/teams",
- "hooks_url": "https://api.github.com/repos/shadowsocks/shadowsocks/hooks",
- "issue_events_url": "https://api.github.com/repos/shadowsocks/shadowsocks/issues/events{/number}",
- "events_url": "https://api.github.com/repos/shadowsocks/shadowsocks/events",
- "assignees_url": "https://api.github.com/repos/shadowsocks/shadowsocks/assignees{/user}",
- "branches_url": "https://api.github.com/repos/shadowsocks/shadowsocks/branches{/branch}",
- "tags_url": "https://api.github.com/repos/shadowsocks/shadowsocks/tags",
- "blobs_url": "https://api.github.com/repos/shadowsocks/shadowsocks/git/blobs{/sha}",
- "git_tags_url": "https://api.github.com/repos/shadowsocks/shadowsocks/git/tags{/sha}",
- "git_refs_url": "https://api.github.com/repos/shadowsocks/shadowsocks/git/refs{/sha}",
- "trees_url": "https://api.github.com/repos/shadowsocks/shadowsocks/git/trees{/sha}",
- "statuses_url": "https://api.github.com/repos/shadowsocks/shadowsocks/statuses/{sha}",
- "languages_url": "https://api.github.com/repos/shadowsocks/shadowsocks/languages",
- "stargazers_url": "https://api.github.com/repos/shadowsocks/shadowsocks/stargazers",
- "contributors_url": "https://api.github.com/repos/shadowsocks/shadowsocks/contributors",
- "subscribers_url": "https://api.github.com/repos/shadowsocks/shadowsocks/subscribers",
- "subscription_url": "https://api.github.com/repos/shadowsocks/shadowsocks/subscription",
- "commits_url": "https://api.github.com/repos/shadowsocks/shadowsocks/commits{/sha}",
- "git_commits_url": "https://api.github.com/repos/shadowsocks/shadowsocks/git/commits{/sha}",
- "comments_url": "https://api.github.com/repos/shadowsocks/shadowsocks/comments{/number}",
- "issue_comment_url": "https://api.github.com/repos/shadowsocks/shadowsocks/issues/comments{/number}",
- "contents_url": "https://api.github.com/repos/shadowsocks/shadowsocks/contents/{+path}",
- "compare_url": "https://api.github.com/repos/shadowsocks/shadowsocks/compare/{base}...{head}",
- "merges_url": "https://api.github.com/repos/shadowsocks/shadowsocks/merges",
- "archive_url": "https://api.github.com/repos/shadowsocks/shadowsocks/{archive_format}{/ref}",
- "downloads_url": "https://api.github.com/repos/shadowsocks/shadowsocks/downloads",
- "issues_url": "https://api.github.com/repos/shadowsocks/shadowsocks/issues{/number}",
- "pulls_url": "https://api.github.com/repos/shadowsocks/shadowsocks/pulls{/number}",
- "milestones_url": "https://api.github.com/repos/shadowsocks/shadowsocks/milestones{/number}",
- "notifications_url": "https://api.github.com/repos/shadowsocks/shadowsocks/notifications{?since,all,participating}",
- "labels_url": "https://api.github.com/repos/shadowsocks/shadowsocks/labels{/name}",
- "releases_url": "https://api.github.com/repos/shadowsocks/shadowsocks/releases{/id}",
- "deployments_url": "https://api.github.com/repos/shadowsocks/shadowsocks/deployments",
- "created_at": "2012-04-20T13:10:49Z",
- "updated_at": "2019-06-29T12:06:48Z",
- "pushed_at": "2019-06-14T03:17:23Z",
- "git_url": "git://github.com/shadowsocks/shadowsocks.git",
- "ssh_url": "git@github.com:shadowsocks/shadowsocks.git",
- "clone_url": "https://github.com/shadowsocks/shadowsocks.git",
- "svn_url": "https://github.com/shadowsocks/shadowsocks",
- "homepage": "",
- "size": 891,
- "stargazers_count": 30647,
- "watchers_count": 30647,
- "language": "Python",
- "has_issues": false,
- "has_projects": true,
- "has_downloads": true,
- "has_wiki": true,
- "has_pages": false,
- "forks_count": 18682,
- "mirror_url": null,
- "archived": false,
- "disabled": false,
- "open_issues_count": 448,
- "license": null,
- "forks": 18682,
- "open_issues": 448,
- "watchers": 30647,
- "default_branch": "rm",
- "score": 1.0
- },
- {
- "id": 29290473,
- "node_id": "MDEwOlJlcG9zaXRvcnkyOTI5MDQ3Mw==",
- "name": "XX-Net",
- "full_name": "XX-net/XX-Net",
- "private": false,
- "owner": {
- "login": "XX-net",
- "id": 10395542,
- "node_id": "MDEyOk9yZ2FuaXphdGlvbjEwMzk1NTQy",
- "avatar_url": "https://avatars2.githubusercontent.com/u/10395542?v=4",
- "gravatar_id": "",
- "url": "https://api.github.com/users/XX-net",
- "html_url": "https://github.com/XX-net",
- "followers_url": "https://api.github.com/users/XX-net/followers",
- "following_url": "https://api.github.com/users/XX-net/following{/other_user}",
- "gists_url": "https://api.github.com/users/XX-net/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/XX-net/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/XX-net/subscriptions",
- "organizations_url": "https://api.github.com/users/XX-net/orgs",
- "repos_url": "https://api.github.com/users/XX-net/repos",
- "events_url": "https://api.github.com/users/XX-net/events{/privacy}",
- "received_events_url": "https://api.github.com/users/XX-net/received_events",
- "type": "Organization",
- "site_admin": false
- },
- "html_url": "https://github.com/XX-net/XX-Net",
- "description": "a web proxy tool",
- "fork": false,
- "url": "https://api.github.com/repos/XX-net/XX-Net",
- "forks_url": "https://api.github.com/repos/XX-net/XX-Net/forks",
- "keys_url": "https://api.github.com/repos/XX-net/XX-Net/keys{/key_id}",
- "collaborators_url": "https://api.github.com/repos/XX-net/XX-Net/collaborators{/collaborator}",
- "teams_url": "https://api.github.com/repos/XX-net/XX-Net/teams",
- "hooks_url": "https://api.github.com/repos/XX-net/XX-Net/hooks",
- "issue_events_url": "https://api.github.com/repos/XX-net/XX-Net/issues/events{/number}",
- "events_url": "https://api.github.com/repos/XX-net/XX-Net/events",
- "assignees_url": "https://api.github.com/repos/XX-net/XX-Net/assignees{/user}",
- "branches_url": "https://api.github.com/repos/XX-net/XX-Net/branches{/branch}",
- "tags_url": "https://api.github.com/repos/XX-net/XX-Net/tags",
- "blobs_url": "https://api.github.com/repos/XX-net/XX-Net/git/blobs{/sha}",
- "git_tags_url": "https://api.github.com/repos/XX-net/XX-Net/git/tags{/sha}",
- "git_refs_url": "https://api.github.com/repos/XX-net/XX-Net/git/refs{/sha}",
- "trees_url": "https://api.github.com/repos/XX-net/XX-Net/git/trees{/sha}",
- "statuses_url": "https://api.github.com/repos/XX-net/XX-Net/statuses/{sha}",
- "languages_url": "https://api.github.com/repos/XX-net/XX-Net/languages",
- "stargazers_url": "https://api.github.com/repos/XX-net/XX-Net/stargazers",
- "contributors_url": "https://api.github.com/repos/XX-net/XX-Net/contributors",
- "subscribers_url": "https://api.github.com/repos/XX-net/XX-Net/subscribers",
- "subscription_url": "https://api.github.com/repos/XX-net/XX-Net/subscription",
- "commits_url": "https://api.github.com/repos/XX-net/XX-Net/commits{/sha}",
- "git_commits_url": "https://api.github.com/repos/XX-net/XX-Net/git/commits{/sha}",
- "comments_url": "https://api.github.com/repos/XX-net/XX-Net/comments{/number}",
- "issue_comment_url": "https://api.github.com/repos/XX-net/XX-Net/issues/comments{/number}",
- "contents_url": "https://api.github.com/repos/XX-net/XX-Net/contents/{+path}",
- "compare_url": "https://api.github.com/repos/XX-net/XX-Net/compare/{base}...{head}",
- "merges_url": "https://api.github.com/repos/XX-net/XX-Net/merges",
- "archive_url": "https://api.github.com/repos/XX-net/XX-Net/{archive_format}{/ref}",
- "downloads_url": "https://api.github.com/repos/XX-net/XX-Net/downloads",
- "issues_url": "https://api.github.com/repos/XX-net/XX-Net/issues{/number}",
- "pulls_url": "https://api.github.com/repos/XX-net/XX-Net/pulls{/number}",
- "milestones_url": "https://api.github.com/repos/XX-net/XX-Net/milestones{/number}",
- "notifications_url": "https://api.github.com/repos/XX-net/XX-Net/notifications{?since,all,participating}",
- "labels_url": "https://api.github.com/repos/XX-net/XX-Net/labels{/name}",
- "releases_url": "https://api.github.com/repos/XX-net/XX-Net/releases{/id}",
- "deployments_url": "https://api.github.com/repos/XX-net/XX-Net/deployments",
- "created_at": "2015-01-15T09:35:51Z",
- "updated_at": "2019-06-29T09:48:08Z",
- "pushed_at": "2019-06-19T08:09:48Z",
- "git_url": "git://github.com/XX-net/XX-Net.git",
- "ssh_url": "git@github.com:XX-net/XX-Net.git",
- "clone_url": "https://github.com/XX-net/XX-Net.git",
- "svn_url": "https://github.com/XX-net/XX-Net",
- "homepage": "",
- "size": 38923,
- "stargazers_count": 28096,
- "watchers_count": 28096,
- "language": "Python",
- "has_issues": true,
- "has_projects": true,
- "has_downloads": true,
- "has_wiki": true,
- "has_pages": false,
- "forks_count": 7604,
- "mirror_url": null,
- "archived": false,
- "disabled": false,
- "open_issues_count": 7795,
- "license": null,
- "forks": 7604,
- "open_issues": 7795,
- "watchers": 28096,
- "default_branch": "master",
- "score": 1.0
- },
- {
- "id": 5483330,
- "node_id": "MDEwOlJlcG9zaXRvcnk1NDgzMzMw",
- "name": "you-get",
- "full_name": "soimort/you-get",
- "private": false,
- "owner": {
- "login": "soimort",
- "id": 342945,
- "node_id": "MDQ6VXNlcjM0Mjk0NQ==",
- "avatar_url": "https://avatars0.githubusercontent.com/u/342945?v=4",
- "gravatar_id": "",
- "url": "https://api.github.com/users/soimort",
- "html_url": "https://github.com/soimort",
- "followers_url": "https://api.github.com/users/soimort/followers",
- "following_url": "https://api.github.com/users/soimort/following{/other_user}",
- "gists_url": "https://api.github.com/users/soimort/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/soimort/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/soimort/subscriptions",
- "organizations_url": "https://api.github.com/users/soimort/orgs",
- "repos_url": "https://api.github.com/users/soimort/repos",
- "events_url": "https://api.github.com/users/soimort/events{/privacy}",
- "received_events_url": "https://api.github.com/users/soimort/received_events",
- "type": "User",
- "site_admin": false
- },
- "html_url": "https://github.com/soimort/you-get",
- "description": ":arrow_double_down: Dumb downloader that scrapes the web",
- "fork": false,
- "url": "https://api.github.com/repos/soimort/you-get",
- "forks_url": "https://api.github.com/repos/soimort/you-get/forks",
- "keys_url": "https://api.github.com/repos/soimort/you-get/keys{/key_id}",
- "collaborators_url": "https://api.github.com/repos/soimort/you-get/collaborators{/collaborator}",
- "teams_url": "https://api.github.com/repos/soimort/you-get/teams",
- "hooks_url": "https://api.github.com/repos/soimort/you-get/hooks",
- "issue_events_url": "https://api.github.com/repos/soimort/you-get/issues/events{/number}",
- "events_url": "https://api.github.com/repos/soimort/you-get/events",
- "assignees_url": "https://api.github.com/repos/soimort/you-get/assignees{/user}",
- "branches_url": "https://api.github.com/repos/soimort/you-get/branches{/branch}",
- "tags_url": "https://api.github.com/repos/soimort/you-get/tags",
- "blobs_url": "https://api.github.com/repos/soimort/you-get/git/blobs{/sha}",
- "git_tags_url": "https://api.github.com/repos/soimort/you-get/git/tags{/sha}",
- "git_refs_url": "https://api.github.com/repos/soimort/you-get/git/refs{/sha}",
- "trees_url": "https://api.github.com/repos/soimort/you-get/git/trees{/sha}",
- "statuses_url": "https://api.github.com/repos/soimort/you-get/statuses/{sha}",
- "languages_url": "https://api.github.com/repos/soimort/you-get/languages",
- "stargazers_url": "https://api.github.com/repos/soimort/you-get/stargazers",
- "contributors_url": "https://api.github.com/repos/soimort/you-get/contributors",
- "subscribers_url": "https://api.github.com/repos/soimort/you-get/subscribers",
- "subscription_url": "https://api.github.com/repos/soimort/you-get/subscription",
- "commits_url": "https://api.github.com/repos/soimort/you-get/commits{/sha}",
- "git_commits_url": "https://api.github.com/repos/soimort/you-get/git/commits{/sha}",
- "comments_url": "https://api.github.com/repos/soimort/you-get/comments{/number}",
- "issue_comment_url": "https://api.github.com/repos/soimort/you-get/issues/comments{/number}",
- "contents_url": "https://api.github.com/repos/soimort/you-get/contents/{+path}",
- "compare_url": "https://api.github.com/repos/soimort/you-get/compare/{base}...{head}",
- "merges_url": "https://api.github.com/repos/soimort/you-get/merges",
- "archive_url": "https://api.github.com/repos/soimort/you-get/{archive_format}{/ref}",
- "downloads_url": "https://api.github.com/repos/soimort/you-get/downloads",
- "issues_url": "https://api.github.com/repos/soimort/you-get/issues{/number}",
- "pulls_url": "https://api.github.com/repos/soimort/you-get/pulls{/number}",
- "milestones_url": "https://api.github.com/repos/soimort/you-get/milestones{/number}",
- "notifications_url": "https://api.github.com/repos/soimort/you-get/notifications{?since,all,participating}",
- "labels_url": "https://api.github.com/repos/soimort/you-get/labels{/name}",
- "releases_url": "https://api.github.com/repos/soimort/you-get/releases{/id}",
- "deployments_url": "https://api.github.com/repos/soimort/you-get/deployments",
- "created_at": "2012-08-20T15:53:36Z",
- "updated_at": "2019-06-29T12:27:18Z",
- "pushed_at": "2019-06-18T14:48:57Z",
- "git_url": "git://github.com/soimort/you-get.git",
- "ssh_url": "git@github.com:soimort/you-get.git",
- "clone_url": "https://github.com/soimort/you-get.git",
- "svn_url": "https://github.com/soimort/you-get",
- "homepage": "https://you-get.org/",
- "size": 3135,
- "stargazers_count": 25348,
- "watchers_count": 25348,
- "language": "Python",
- "has_issues": false,
- "has_projects": true,
- "has_downloads": true,
- "has_wiki": true,
- "has_pages": true,
- "forks_count": 5052,
- "mirror_url": null,
- "archived": false,
- "disabled": false,
- "open_issues_count": 317,
- "license": {
- "key": "mit",
- "name": "MIT License",
- "spdx_id": "MIT",
- "url": "https://api.github.com/licenses/mit",
- "node_id": "MDc6TGljZW5zZTEz"
- },
- "forks": 5052,
- "open_issues": 317,
- "watchers": 25348,
- "default_branch": "develop",
- "score": 1.0
- },
- {
- "id": 26516210,
- "node_id": "MDEwOlJlcG9zaXRvcnkyNjUxNjIxMA==",
- "name": "certbot",
- "full_name": "certbot/certbot",
- "private": false,
- "owner": {
- "login": "certbot",
- "id": 17889013,
- "node_id": "MDEyOk9yZ2FuaXphdGlvbjE3ODg5MDEz",
- "avatar_url": "https://avatars2.githubusercontent.com/u/17889013?v=4",
- "gravatar_id": "",
- "url": "https://api.github.com/users/certbot",
- "html_url": "https://github.com/certbot",
- "followers_url": "https://api.github.com/users/certbot/followers",
- "following_url": "https://api.github.com/users/certbot/following{/other_user}",
- "gists_url": "https://api.github.com/users/certbot/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/certbot/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/certbot/subscriptions",
- "organizations_url": "https://api.github.com/users/certbot/orgs",
- "repos_url": "https://api.github.com/users/certbot/repos",
- "events_url": "https://api.github.com/users/certbot/events{/privacy}",
- "received_events_url": "https://api.github.com/users/certbot/received_events",
- "type": "Organization",
- "site_admin": false
- },
- "html_url": "https://github.com/certbot/certbot",
- "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.",
- "fork": false,
- "url": "https://api.github.com/repos/certbot/certbot",
- "forks_url": "https://api.github.com/repos/certbot/certbot/forks",
- "keys_url": "https://api.github.com/repos/certbot/certbot/keys{/key_id}",
- "collaborators_url": "https://api.github.com/repos/certbot/certbot/collaborators{/collaborator}",
- "teams_url": "https://api.github.com/repos/certbot/certbot/teams",
- "hooks_url": "https://api.github.com/repos/certbot/certbot/hooks",
- "issue_events_url": "https://api.github.com/repos/certbot/certbot/issues/events{/number}",
- "events_url": "https://api.github.com/repos/certbot/certbot/events",
- "assignees_url": "https://api.github.com/repos/certbot/certbot/assignees{/user}",
- "branches_url": "https://api.github.com/repos/certbot/certbot/branches{/branch}",
- "tags_url": "https://api.github.com/repos/certbot/certbot/tags",
- "blobs_url": "https://api.github.com/repos/certbot/certbot/git/blobs{/sha}",
- "git_tags_url": "https://api.github.com/repos/certbot/certbot/git/tags{/sha}",
- "git_refs_url": "https://api.github.com/repos/certbot/certbot/git/refs{/sha}",
- "trees_url": "https://api.github.com/repos/certbot/certbot/git/trees{/sha}",
- "statuses_url": "https://api.github.com/repos/certbot/certbot/statuses/{sha}",
- "languages_url": "https://api.github.com/repos/certbot/certbot/languages",
- "stargazers_url": "https://api.github.com/repos/certbot/certbot/stargazers",
- "contributors_url": "https://api.github.com/repos/certbot/certbot/contributors",
- "subscribers_url": "https://api.github.com/repos/certbot/certbot/subscribers",
- "subscription_url": "https://api.github.com/repos/certbot/certbot/subscription",
- "commits_url": "https://api.github.com/repos/certbot/certbot/commits{/sha}",
- "git_commits_url": "https://api.github.com/repos/certbot/certbot/git/commits{/sha}",
- "comments_url": "https://api.github.com/repos/certbot/certbot/comments{/number}",
- "issue_comment_url": "https://api.github.com/repos/certbot/certbot/issues/comments{/number}",
- "contents_url": "https://api.github.com/repos/certbot/certbot/contents/{+path}",
- "compare_url": "https://api.github.com/repos/certbot/certbot/compare/{base}...{head}",
- "merges_url": "https://api.github.com/repos/certbot/certbot/merges",
- "archive_url": "https://api.github.com/repos/certbot/certbot/{archive_format}{/ref}",
- "downloads_url": "https://api.github.com/repos/certbot/certbot/downloads",
- "issues_url": "https://api.github.com/repos/certbot/certbot/issues{/number}",
- "pulls_url": "https://api.github.com/repos/certbot/certbot/pulls{/number}",
- "milestones_url": "https://api.github.com/repos/certbot/certbot/milestones{/number}",
- "notifications_url": "https://api.github.com/repos/certbot/certbot/notifications{?since,all,participating}",
- "labels_url": "https://api.github.com/repos/certbot/certbot/labels{/name}",
- "releases_url": "https://api.github.com/repos/certbot/certbot/releases{/id}",
- "deployments_url": "https://api.github.com/repos/certbot/certbot/deployments",
- "created_at": "2014-11-12T02:52:20Z",
- "updated_at": "2019-06-29T08:26:50Z",
- "pushed_at": "2019-06-28T23:01:29Z",
- "git_url": "git://github.com/certbot/certbot.git",
- "ssh_url": "git@github.com:certbot/certbot.git",
- "clone_url": "https://github.com/certbot/certbot.git",
- "svn_url": "https://github.com/certbot/certbot",
- "homepage": "",
- "size": 22305,
- "stargazers_count": 25275,
- "watchers_count": 25275,
- "language": "Python",
- "has_issues": true,
- "has_projects": true,
- "has_downloads": true,
- "has_wiki": false,
- "has_pages": false,
- "forks_count": 2608,
- "mirror_url": null,
- "archived": false,
- "disabled": false,
- "open_issues_count": 534,
- "license": {
- "key": "other",
- "name": "Other",
- "spdx_id": "NOASSERTION",
- "url": null,
- "node_id": "MDc6TGljZW5zZTA="
- },
- "forks": 2608,
- "open_issues": 534,
- "watchers": 25275,
- "default_branch": "master",
- "score": 1.0
- },
- {
- "id": 81598961,
- "node_id": "MDEwOlJlcG9zaXRvcnk4MTU5ODk2MQ==",
- "name": "cpython",
- "full_name": "python/cpython",
- "private": false,
- "owner": {
- "login": "python",
- "id": 1525981,
- "node_id": "MDEyOk9yZ2FuaXphdGlvbjE1MjU5ODE=",
- "avatar_url": "https://avatars3.githubusercontent.com/u/1525981?v=4",
- "gravatar_id": "",
- "url": "https://api.github.com/users/python",
- "html_url": "https://github.com/python",
- "followers_url": "https://api.github.com/users/python/followers",
- "following_url": "https://api.github.com/users/python/following{/other_user}",
- "gists_url": "https://api.github.com/users/python/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/python/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/python/subscriptions",
- "organizations_url": "https://api.github.com/users/python/orgs",
- "repos_url": "https://api.github.com/users/python/repos",
- "events_url": "https://api.github.com/users/python/events{/privacy}",
- "received_events_url": "https://api.github.com/users/python/received_events",
- "type": "Organization",
- "site_admin": false
- },
- "html_url": "https://github.com/python/cpython",
- "description": "The Python programming language",
- "fork": false,
- "url": "https://api.github.com/repos/python/cpython",
- "forks_url": "https://api.github.com/repos/python/cpython/forks",
- "keys_url": "https://api.github.com/repos/python/cpython/keys{/key_id}",
- "collaborators_url": "https://api.github.com/repos/python/cpython/collaborators{/collaborator}",
- "teams_url": "https://api.github.com/repos/python/cpython/teams",
- "hooks_url": "https://api.github.com/repos/python/cpython/hooks",
- "issue_events_url": "https://api.github.com/repos/python/cpython/issues/events{/number}",
- "events_url": "https://api.github.com/repos/python/cpython/events",
- "assignees_url": "https://api.github.com/repos/python/cpython/assignees{/user}",
- "branches_url": "https://api.github.com/repos/python/cpython/branches{/branch}",
- "tags_url": "https://api.github.com/repos/python/cpython/tags",
- "blobs_url": "https://api.github.com/repos/python/cpython/git/blobs{/sha}",
- "git_tags_url": "https://api.github.com/repos/python/cpython/git/tags{/sha}",
- "git_refs_url": "https://api.github.com/repos/python/cpython/git/refs{/sha}",
- "trees_url": "https://api.github.com/repos/python/cpython/git/trees{/sha}",
- "statuses_url": "https://api.github.com/repos/python/cpython/statuses/{sha}",
- "languages_url": "https://api.github.com/repos/python/cpython/languages",
- "stargazers_url": "https://api.github.com/repos/python/cpython/stargazers",
- "contributors_url": "https://api.github.com/repos/python/cpython/contributors",
- "subscribers_url": "https://api.github.com/repos/python/cpython/subscribers",
- "subscription_url": "https://api.github.com/repos/python/cpython/subscription",
- "commits_url": "https://api.github.com/repos/python/cpython/commits{/sha}",
- "git_commits_url": "https://api.github.com/repos/python/cpython/git/commits{/sha}",
- "comments_url": "https://api.github.com/repos/python/cpython/comments{/number}",
- "issue_comment_url": "https://api.github.com/repos/python/cpython/issues/comments{/number}",
- "contents_url": "https://api.github.com/repos/python/cpython/contents/{+path}",
- "compare_url": "https://api.github.com/repos/python/cpython/compare/{base}...{head}",
- "merges_url": "https://api.github.com/repos/python/cpython/merges",
- "archive_url": "https://api.github.com/repos/python/cpython/{archive_format}{/ref}",
- "downloads_url": "https://api.github.com/repos/python/cpython/downloads",
- "issues_url": "https://api.github.com/repos/python/cpython/issues{/number}",
- "pulls_url": "https://api.github.com/repos/python/cpython/pulls{/number}",
- "milestones_url": "https://api.github.com/repos/python/cpython/milestones{/number}",
- "notifications_url": "https://api.github.com/repos/python/cpython/notifications{?since,all,participating}",
- "labels_url": "https://api.github.com/repos/python/cpython/labels{/name}",
- "releases_url": "https://api.github.com/repos/python/cpython/releases{/id}",
- "deployments_url": "https://api.github.com/repos/python/cpython/deployments",
- "created_at": "2017-02-10T19:23:51Z",
- "updated_at": "2019-06-29T12:22:50Z",
- "pushed_at": "2019-06-29T11:02:12Z",
- "git_url": "git://github.com/python/cpython.git",
- "ssh_url": "git@github.com:python/cpython.git",
- "clone_url": "https://github.com/python/cpython.git",
- "svn_url": "https://github.com/python/cpython",
- "homepage": "https://www.python.org/",
- "size": 289676,
- "stargazers_count": 25149,
- "watchers_count": 25149,
- "language": "Python",
- "has_issues": false,
- "has_projects": false,
- "has_downloads": true,
- "has_wiki": false,
- "has_pages": false,
- "forks_count": 10440,
- "mirror_url": null,
- "archived": false,
- "disabled": false,
- "open_issues_count": 972,
- "license": {
- "key": "other",
- "name": "Other",
- "spdx_id": "NOASSERTION",
- "url": null,
- "node_id": "MDc6TGljZW5zZTA="
- },
- "forks": 10440,
- "open_issues": 972,
- "watchers": 25149,
- "default_branch": "master",
- "score": 1.0
- },
- {
- "id": 83844720,
- "node_id": "MDEwOlJlcG9zaXRvcnk4Mzg0NDcyMA==",
- "name": "face_recognition",
- "full_name": "ageitgey/face_recognition",
- "private": false,
- "owner": {
- "login": "ageitgey",
- "id": 896692,
- "node_id": "MDQ6VXNlcjg5NjY5Mg==",
- "avatar_url": "https://avatars1.githubusercontent.com/u/896692?v=4",
- "gravatar_id": "",
- "url": "https://api.github.com/users/ageitgey",
- "html_url": "https://github.com/ageitgey",
- "followers_url": "https://api.github.com/users/ageitgey/followers",
- "following_url": "https://api.github.com/users/ageitgey/following{/other_user}",
- "gists_url": "https://api.github.com/users/ageitgey/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/ageitgey/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/ageitgey/subscriptions",
- "organizations_url": "https://api.github.com/users/ageitgey/orgs",
- "repos_url": "https://api.github.com/users/ageitgey/repos",
- "events_url": "https://api.github.com/users/ageitgey/events{/privacy}",
- "received_events_url": "https://api.github.com/users/ageitgey/received_events",
- "type": "User",
- "site_admin": false
- },
- "html_url": "https://github.com/ageitgey/face_recognition",
- "description": "The world's simplest facial recognition api for Python and the command line",
- "fork": false,
- "url": "https://api.github.com/repos/ageitgey/face_recognition",
- "forks_url": "https://api.github.com/repos/ageitgey/face_recognition/forks",
- "keys_url": "https://api.github.com/repos/ageitgey/face_recognition/keys{/key_id}",
- "collaborators_url": "https://api.github.com/repos/ageitgey/face_recognition/collaborators{/collaborator}",
- "teams_url": "https://api.github.com/repos/ageitgey/face_recognition/teams",
- "hooks_url": "https://api.github.com/repos/ageitgey/face_recognition/hooks",
- "issue_events_url": "https://api.github.com/repos/ageitgey/face_recognition/issues/events{/number}",
- "events_url": "https://api.github.com/repos/ageitgey/face_recognition/events",
- "assignees_url": "https://api.github.com/repos/ageitgey/face_recognition/assignees{/user}",
- "branches_url": "https://api.github.com/repos/ageitgey/face_recognition/branches{/branch}",
- "tags_url": "https://api.github.com/repos/ageitgey/face_recognition/tags",
- "blobs_url": "https://api.github.com/repos/ageitgey/face_recognition/git/blobs{/sha}",
- "git_tags_url": "https://api.github.com/repos/ageitgey/face_recognition/git/tags{/sha}",
- "git_refs_url": "https://api.github.com/repos/ageitgey/face_recognition/git/refs{/sha}",
- "trees_url": "https://api.github.com/repos/ageitgey/face_recognition/git/trees{/sha}",
- "statuses_url": "https://api.github.com/repos/ageitgey/face_recognition/statuses/{sha}",
- "languages_url": "https://api.github.com/repos/ageitgey/face_recognition/languages",
- "stargazers_url": "https://api.github.com/repos/ageitgey/face_recognition/stargazers",
- "contributors_url": "https://api.github.com/repos/ageitgey/face_recognition/contributors",
- "subscribers_url": "https://api.github.com/repos/ageitgey/face_recognition/subscribers",
- "subscription_url": "https://api.github.com/repos/ageitgey/face_recognition/subscription",
- "commits_url": "https://api.github.com/repos/ageitgey/face_recognition/commits{/sha}",
- "git_commits_url": "https://api.github.com/repos/ageitgey/face_recognition/git/commits{/sha}",
- "comments_url": "https://api.github.com/repos/ageitgey/face_recognition/comments{/number}",
- "issue_comment_url": "https://api.github.com/repos/ageitgey/face_recognition/issues/comments{/number}",
- "contents_url": "https://api.github.com/repos/ageitgey/face_recognition/contents/{+path}",
- "compare_url": "https://api.github.com/repos/ageitgey/face_recognition/compare/{base}...{head}",
- "merges_url": "https://api.github.com/repos/ageitgey/face_recognition/merges",
- "archive_url": "https://api.github.com/repos/ageitgey/face_recognition/{archive_format}{/ref}",
- "downloads_url": "https://api.github.com/repos/ageitgey/face_recognition/downloads",
- "issues_url": "https://api.github.com/repos/ageitgey/face_recognition/issues{/number}",
- "pulls_url": "https://api.github.com/repos/ageitgey/face_recognition/pulls{/number}",
- "milestones_url": "https://api.github.com/repos/ageitgey/face_recognition/milestones{/number}",
- "notifications_url": "https://api.github.com/repos/ageitgey/face_recognition/notifications{?since,all,participating}",
- "labels_url": "https://api.github.com/repos/ageitgey/face_recognition/labels{/name}",
- "releases_url": "https://api.github.com/repos/ageitgey/face_recognition/releases{/id}",
- "deployments_url": "https://api.github.com/repos/ageitgey/face_recognition/deployments",
- "created_at": "2017-03-03T21:52:39Z",
- "updated_at": "2019-06-29T10:44:14Z",
- "pushed_at": "2019-06-29T03:54:41Z",
- "git_url": "git://github.com/ageitgey/face_recognition.git",
- "ssh_url": "git@github.com:ageitgey/face_recognition.git",
- "clone_url": "https://github.com/ageitgey/face_recognition.git",
- "svn_url": "https://github.com/ageitgey/face_recognition",
- "homepage": "",
- "size": 103846,
- "stargazers_count": 25136,
- "watchers_count": 25136,
- "language": "Python",
- "has_issues": true,
- "has_projects": true,
- "has_downloads": true,
- "has_wiki": true,
- "has_pages": false,
- "forks_count": 6729,
- "mirror_url": null,
- "archived": false,
- "disabled": false,
- "open_issues_count": 338,
- "license": {
- "key": "mit",
- "name": "MIT License",
- "spdx_id": "MIT",
- "url": "https://api.github.com/licenses/mit",
- "node_id": "MDc6TGljZW5zZTEz"
- },
- "forks": 6729,
- "open_issues": 338,
- "watchers": 25136,
- "default_branch": "master",
- "score": 1.0
- },
- {
- "id": 12888993,
- "node_id": "MDEwOlJlcG9zaXRvcnkxMjg4ODk5Mw==",
- "name": "home-assistant",
- "full_name": "home-assistant/home-assistant",
- "private": false,
- "owner": {
- "login": "home-assistant",
- "id": 13844975,
- "node_id": "MDEyOk9yZ2FuaXphdGlvbjEzODQ0OTc1",
- "avatar_url": "https://avatars3.githubusercontent.com/u/13844975?v=4",
- "gravatar_id": "",
- "url": "https://api.github.com/users/home-assistant",
- "html_url": "https://github.com/home-assistant",
- "followers_url": "https://api.github.com/users/home-assistant/followers",
- "following_url": "https://api.github.com/users/home-assistant/following{/other_user}",
- "gists_url": "https://api.github.com/users/home-assistant/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/home-assistant/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/home-assistant/subscriptions",
- "organizations_url": "https://api.github.com/users/home-assistant/orgs",
- "repos_url": "https://api.github.com/users/home-assistant/repos",
- "events_url": "https://api.github.com/users/home-assistant/events{/privacy}",
- "received_events_url": "https://api.github.com/users/home-assistant/received_events",
- "type": "Organization",
- "site_admin": false
- },
- "html_url": "https://github.com/home-assistant/home-assistant",
- "description": ":house_with_garden: Open source home automation that puts local control and privacy first",
- "fork": false,
- "url": "https://api.github.com/repos/home-assistant/home-assistant",
- "forks_url": "https://api.github.com/repos/home-assistant/home-assistant/forks",
- "keys_url": "https://api.github.com/repos/home-assistant/home-assistant/keys{/key_id}",
- "collaborators_url": "https://api.github.com/repos/home-assistant/home-assistant/collaborators{/collaborator}",
- "teams_url": "https://api.github.com/repos/home-assistant/home-assistant/teams",
- "hooks_url": "https://api.github.com/repos/home-assistant/home-assistant/hooks",
- "issue_events_url": "https://api.github.com/repos/home-assistant/home-assistant/issues/events{/number}",
- "events_url": "https://api.github.com/repos/home-assistant/home-assistant/events",
- "assignees_url": "https://api.github.com/repos/home-assistant/home-assistant/assignees{/user}",
- "branches_url": "https://api.github.com/repos/home-assistant/home-assistant/branches{/branch}",
- "tags_url": "https://api.github.com/repos/home-assistant/home-assistant/tags",
- "blobs_url": "https://api.github.com/repos/home-assistant/home-assistant/git/blobs{/sha}",
- "git_tags_url": "https://api.github.com/repos/home-assistant/home-assistant/git/tags{/sha}",
- "git_refs_url": "https://api.github.com/repos/home-assistant/home-assistant/git/refs{/sha}",
- "trees_url": "https://api.github.com/repos/home-assistant/home-assistant/git/trees{/sha}",
- "statuses_url": "https://api.github.com/repos/home-assistant/home-assistant/statuses/{sha}",
- "languages_url": "https://api.github.com/repos/home-assistant/home-assistant/languages",
- "stargazers_url": "https://api.github.com/repos/home-assistant/home-assistant/stargazers",
- "contributors_url": "https://api.github.com/repos/home-assistant/home-assistant/contributors",
- "subscribers_url": "https://api.github.com/repos/home-assistant/home-assistant/subscribers",
- "subscription_url": "https://api.github.com/repos/home-assistant/home-assistant/subscription",
- "commits_url": "https://api.github.com/repos/home-assistant/home-assistant/commits{/sha}",
- "git_commits_url": "https://api.github.com/repos/home-assistant/home-assistant/git/commits{/sha}",
- "comments_url": "https://api.github.com/repos/home-assistant/home-assistant/comments{/number}",
- "issue_comment_url": "https://api.github.com/repos/home-assistant/home-assistant/issues/comments{/number}",
- "contents_url": "https://api.github.com/repos/home-assistant/home-assistant/contents/{+path}",
- "compare_url": "https://api.github.com/repos/home-assistant/home-assistant/compare/{base}...{head}",
- "merges_url": "https://api.github.com/repos/home-assistant/home-assistant/merges",
- "archive_url": "https://api.github.com/repos/home-assistant/home-assistant/{archive_format}{/ref}",
- "downloads_url": "https://api.github.com/repos/home-assistant/home-assistant/downloads",
- "issues_url": "https://api.github.com/repos/home-assistant/home-assistant/issues{/number}",
- "pulls_url": "https://api.github.com/repos/home-assistant/home-assistant/pulls{/number}",
- "milestones_url": "https://api.github.com/repos/home-assistant/home-assistant/milestones{/number}",
- "notifications_url": "https://api.github.com/repos/home-assistant/home-assistant/notifications{?since,all,participating}",
- "labels_url": "https://api.github.com/repos/home-assistant/home-assistant/labels{/name}",
- "releases_url": "https://api.github.com/repos/home-assistant/home-assistant/releases{/id}",
- "deployments_url": "https://api.github.com/repos/home-assistant/home-assistant/deployments",
- "created_at": "2013-09-17T07:29:48Z",
- "updated_at": "2019-06-29T13:07:44Z",
- "pushed_at": "2019-06-29T12:34:59Z",
- "git_url": "git://github.com/home-assistant/home-assistant.git",
- "ssh_url": "git@github.com:home-assistant/home-assistant.git",
- "clone_url": "https://github.com/home-assistant/home-assistant.git",
- "svn_url": "https://github.com/home-assistant/home-assistant",
- "homepage": "https://www.home-assistant.io",
- "size": 113668,
- "stargazers_count": 24499,
- "watchers_count": 24499,
- "language": "Python",
- "has_issues": true,
- "has_projects": true,
- "has_downloads": true,
- "has_wiki": false,
- "has_pages": false,
- "forks_count": 7146,
- "mirror_url": null,
- "archived": false,
- "disabled": false,
- "open_issues_count": 1281,
- "license": {
- "key": "apache-2.0",
- "name": "Apache License 2.0",
- "spdx_id": "Apache-2.0",
- "url": "https://api.github.com/licenses/apache-2.0",
- "node_id": "MDc6TGljZW5zZTI="
- },
- "forks": 7146,
- "open_issues": 1281,
- "watchers": 24499,
- "default_branch": "dev",
- "score": 1.0
- },
- {
- "id": 136328388,
- "node_id": "MDEwOlJlcG9zaXRvcnkxMzYzMjgzODg=",
- "name": "Algorithm_Interview_Notes-Chinese",
- "full_name": "imhuay/Algorithm_Interview_Notes-Chinese",
- "private": false,
- "owner": {
- "login": "imhuay",
- "id": 13265495,
- "node_id": "MDQ6VXNlcjEzMjY1NDk1",
- "avatar_url": "https://avatars2.githubusercontent.com/u/13265495?v=4",
- "gravatar_id": "",
- "url": "https://api.github.com/users/imhuay",
- "html_url": "https://github.com/imhuay",
- "followers_url": "https://api.github.com/users/imhuay/followers",
- "following_url": "https://api.github.com/users/imhuay/following{/other_user}",
- "gists_url": "https://api.github.com/users/imhuay/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/imhuay/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/imhuay/subscriptions",
- "organizations_url": "https://api.github.com/users/imhuay/orgs",
- "repos_url": "https://api.github.com/users/imhuay/repos",
- "events_url": "https://api.github.com/users/imhuay/events{/privacy}",
- "received_events_url": "https://api.github.com/users/imhuay/received_events",
- "type": "User",
- "site_admin": false
- },
- "html_url": "https://github.com/imhuay/Algorithm_Interview_Notes-Chinese",
- "description": "2018/2019/校招/春招/秋招/算法/机器学习(Machine Learning)/深度学习(Deep Learning)/自然语言处理(NLP)/C/C++/Python/面试笔记",
- "fork": false,
- "url": "https://api.github.com/repos/imhuay/Algorithm_Interview_Notes-Chinese",
- "forks_url": "https://api.github.com/repos/imhuay/Algorithm_Interview_Notes-Chinese/forks",
- "keys_url": "https://api.github.com/repos/imhuay/Algorithm_Interview_Notes-Chinese/keys{/key_id}",
- "collaborators_url": "https://api.github.com/repos/imhuay/Algorithm_Interview_Notes-Chinese/collaborators{/collaborator}",
- "teams_url": "https://api.github.com/repos/imhuay/Algorithm_Interview_Notes-Chinese/teams",
- "hooks_url": "https://api.github.com/repos/imhuay/Algorithm_Interview_Notes-Chinese/hooks",
- "issue_events_url": "https://api.github.com/repos/imhuay/Algorithm_Interview_Notes-Chinese/issues/events{/number}",
- "events_url": "https://api.github.com/repos/imhuay/Algorithm_Interview_Notes-Chinese/events",
- "assignees_url": "https://api.github.com/repos/imhuay/Algorithm_Interview_Notes-Chinese/assignees{/user}",
- "branches_url": "https://api.github.com/repos/imhuay/Algorithm_Interview_Notes-Chinese/branches{/branch}",
- "tags_url": "https://api.github.com/repos/imhuay/Algorithm_Interview_Notes-Chinese/tags",
- "blobs_url": "https://api.github.com/repos/imhuay/Algorithm_Interview_Notes-Chinese/git/blobs{/sha}",
- "git_tags_url": "https://api.github.com/repos/imhuay/Algorithm_Interview_Notes-Chinese/git/tags{/sha}",
- "git_refs_url": "https://api.github.com/repos/imhuay/Algorithm_Interview_Notes-Chinese/git/refs{/sha}",
- "trees_url": "https://api.github.com/repos/imhuay/Algorithm_Interview_Notes-Chinese/git/trees{/sha}",
- "statuses_url": "https://api.github.com/repos/imhuay/Algorithm_Interview_Notes-Chinese/statuses/{sha}",
- "languages_url": "https://api.github.com/repos/imhuay/Algorithm_Interview_Notes-Chinese/languages",
- "stargazers_url": "https://api.github.com/repos/imhuay/Algorithm_Interview_Notes-Chinese/stargazers",
- "contributors_url": "https://api.github.com/repos/imhuay/Algorithm_Interview_Notes-Chinese/contributors",
- "subscribers_url": "https://api.github.com/repos/imhuay/Algorithm_Interview_Notes-Chinese/subscribers",
- "subscription_url": "https://api.github.com/repos/imhuay/Algorithm_Interview_Notes-Chinese/subscription",
- "commits_url": "https://api.github.com/repos/imhuay/Algorithm_Interview_Notes-Chinese/commits{/sha}",
- "git_commits_url": "https://api.github.com/repos/imhuay/Algorithm_Interview_Notes-Chinese/git/commits{/sha}",
- "comments_url": "https://api.github.com/repos/imhuay/Algorithm_Interview_Notes-Chinese/comments{/number}",
- "issue_comment_url": "https://api.github.com/repos/imhuay/Algorithm_Interview_Notes-Chinese/issues/comments{/number}",
- "contents_url": "https://api.github.com/repos/imhuay/Algorithm_Interview_Notes-Chinese/contents/{+path}",
- "compare_url": "https://api.github.com/repos/imhuay/Algorithm_Interview_Notes-Chinese/compare/{base}...{head}",
- "merges_url": "https://api.github.com/repos/imhuay/Algorithm_Interview_Notes-Chinese/merges",
- "archive_url": "https://api.github.com/repos/imhuay/Algorithm_Interview_Notes-Chinese/{archive_format}{/ref}",
- "downloads_url": "https://api.github.com/repos/imhuay/Algorithm_Interview_Notes-Chinese/downloads",
- "issues_url": "https://api.github.com/repos/imhuay/Algorithm_Interview_Notes-Chinese/issues{/number}",
- "pulls_url": "https://api.github.com/repos/imhuay/Algorithm_Interview_Notes-Chinese/pulls{/number}",
- "milestones_url": "https://api.github.com/repos/imhuay/Algorithm_Interview_Notes-Chinese/milestones{/number}",
- "notifications_url": "https://api.github.com/repos/imhuay/Algorithm_Interview_Notes-Chinese/notifications{?since,all,participating}",
- "labels_url": "https://api.github.com/repos/imhuay/Algorithm_Interview_Notes-Chinese/labels{/name}",
- "releases_url": "https://api.github.com/repos/imhuay/Algorithm_Interview_Notes-Chinese/releases{/id}",
- "deployments_url": "https://api.github.com/repos/imhuay/Algorithm_Interview_Notes-Chinese/deployments",
- "created_at": "2018-06-06T12:53:14Z",
- "updated_at": "2019-06-29T08:24:23Z",
- "pushed_at": "2019-05-24T08:16:55Z",
- "git_url": "git://github.com/imhuay/Algorithm_Interview_Notes-Chinese.git",
- "ssh_url": "git@github.com:imhuay/Algorithm_Interview_Notes-Chinese.git",
- "clone_url": "https://github.com/imhuay/Algorithm_Interview_Notes-Chinese.git",
- "svn_url": "https://github.com/imhuay/Algorithm_Interview_Notes-Chinese",
- "homepage": "",
- "size": 233283,
- "stargazers_count": 24134,
- "watchers_count": 24134,
- "language": "Python",
- "has_issues": true,
- "has_projects": true,
- "has_downloads": true,
- "has_wiki": true,
- "has_pages": false,
- "forks_count": 7416,
- "mirror_url": null,
- "archived": false,
- "disabled": false,
- "open_issues_count": 26,
- "license": null,
- "forks": 7416,
- "open_issues": 26,
- "watchers": 24134,
- "default_branch": "master",
- "score": 1.0
- },
- {
- "id": 139824423,
- "node_id": "MDEwOlJlcG9zaXRvcnkxMzk4MjQ0MjM=",
- "name": "100-Days-Of-ML-Code",
- "full_name": "Avik-Jain/100-Days-Of-ML-Code",
- "private": false,
- "owner": {
- "login": "Avik-Jain",
- "id": 30073708,
- "node_id": "MDQ6VXNlcjMwMDczNzA4",
- "avatar_url": "https://avatars1.githubusercontent.com/u/30073708?v=4",
- "gravatar_id": "",
- "url": "https://api.github.com/users/Avik-Jain",
- "html_url": "https://github.com/Avik-Jain",
- "followers_url": "https://api.github.com/users/Avik-Jain/followers",
- "following_url": "https://api.github.com/users/Avik-Jain/following{/other_user}",
- "gists_url": "https://api.github.com/users/Avik-Jain/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/Avik-Jain/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/Avik-Jain/subscriptions",
- "organizations_url": "https://api.github.com/users/Avik-Jain/orgs",
- "repos_url": "https://api.github.com/users/Avik-Jain/repos",
- "events_url": "https://api.github.com/users/Avik-Jain/events{/privacy}",
- "received_events_url": "https://api.github.com/users/Avik-Jain/received_events",
- "type": "User",
- "site_admin": false
- },
- "html_url": "https://github.com/Avik-Jain/100-Days-Of-ML-Code",
- "description": "100 Days of ML Coding",
- "fork": false,
- "url": "https://api.github.com/repos/Avik-Jain/100-Days-Of-ML-Code",
- "forks_url": "https://api.github.com/repos/Avik-Jain/100-Days-Of-ML-Code/forks",
- "keys_url": "https://api.github.com/repos/Avik-Jain/100-Days-Of-ML-Code/keys{/key_id}",
- "collaborators_url": "https://api.github.com/repos/Avik-Jain/100-Days-Of-ML-Code/collaborators{/collaborator}",
- "teams_url": "https://api.github.com/repos/Avik-Jain/100-Days-Of-ML-Code/teams",
- "hooks_url": "https://api.github.com/repos/Avik-Jain/100-Days-Of-ML-Code/hooks",
- "issue_events_url": "https://api.github.com/repos/Avik-Jain/100-Days-Of-ML-Code/issues/events{/number}",
- "events_url": "https://api.github.com/repos/Avik-Jain/100-Days-Of-ML-Code/events",
- "assignees_url": "https://api.github.com/repos/Avik-Jain/100-Days-Of-ML-Code/assignees{/user}",
- "branches_url": "https://api.github.com/repos/Avik-Jain/100-Days-Of-ML-Code/branches{/branch}",
- "tags_url": "https://api.github.com/repos/Avik-Jain/100-Days-Of-ML-Code/tags",
- "blobs_url": "https://api.github.com/repos/Avik-Jain/100-Days-Of-ML-Code/git/blobs{/sha}",
- "git_tags_url": "https://api.github.com/repos/Avik-Jain/100-Days-Of-ML-Code/git/tags{/sha}",
- "git_refs_url": "https://api.github.com/repos/Avik-Jain/100-Days-Of-ML-Code/git/refs{/sha}",
- "trees_url": "https://api.github.com/repos/Avik-Jain/100-Days-Of-ML-Code/git/trees{/sha}",
- "statuses_url": "https://api.github.com/repos/Avik-Jain/100-Days-Of-ML-Code/statuses/{sha}",
- "languages_url": "https://api.github.com/repos/Avik-Jain/100-Days-Of-ML-Code/languages",
- "stargazers_url": "https://api.github.com/repos/Avik-Jain/100-Days-Of-ML-Code/stargazers",
- "contributors_url": "https://api.github.com/repos/Avik-Jain/100-Days-Of-ML-Code/contributors",
- "subscribers_url": "https://api.github.com/repos/Avik-Jain/100-Days-Of-ML-Code/subscribers",
- "subscription_url": "https://api.github.com/repos/Avik-Jain/100-Days-Of-ML-Code/subscription",
- "commits_url": "https://api.github.com/repos/Avik-Jain/100-Days-Of-ML-Code/commits{/sha}",
- "git_commits_url": "https://api.github.com/repos/Avik-Jain/100-Days-Of-ML-Code/git/commits{/sha}",
- "comments_url": "https://api.github.com/repos/Avik-Jain/100-Days-Of-ML-Code/comments{/number}",
- "issue_comment_url": "https://api.github.com/repos/Avik-Jain/100-Days-Of-ML-Code/issues/comments{/number}",
- "contents_url": "https://api.github.com/repos/Avik-Jain/100-Days-Of-ML-Code/contents/{+path}",
- "compare_url": "https://api.github.com/repos/Avik-Jain/100-Days-Of-ML-Code/compare/{base}...{head}",
- "merges_url": "https://api.github.com/repos/Avik-Jain/100-Days-Of-ML-Code/merges",
- "archive_url": "https://api.github.com/repos/Avik-Jain/100-Days-Of-ML-Code/{archive_format}{/ref}",
- "downloads_url": "https://api.github.com/repos/Avik-Jain/100-Days-Of-ML-Code/downloads",
- "issues_url": "https://api.github.com/repos/Avik-Jain/100-Days-Of-ML-Code/issues{/number}",
- "pulls_url": "https://api.github.com/repos/Avik-Jain/100-Days-Of-ML-Code/pulls{/number}",
- "milestones_url": "https://api.github.com/repos/Avik-Jain/100-Days-Of-ML-Code/milestones{/number}",
- "notifications_url": "https://api.github.com/repos/Avik-Jain/100-Days-Of-ML-Code/notifications{?since,all,participating}",
- "labels_url": "https://api.github.com/repos/Avik-Jain/100-Days-Of-ML-Code/labels{/name}",
- "releases_url": "https://api.github.com/repos/Avik-Jain/100-Days-Of-ML-Code/releases{/id}",
- "deployments_url": "https://api.github.com/repos/Avik-Jain/100-Days-Of-ML-Code/deployments",
- "created_at": "2018-07-05T09:11:43Z",
- "updated_at": "2019-06-29T12:48:37Z",
- "pushed_at": "2019-06-08T14:57:19Z",
- "git_url": "git://github.com/Avik-Jain/100-Days-Of-ML-Code.git",
- "ssh_url": "git@github.com:Avik-Jain/100-Days-Of-ML-Code.git",
- "clone_url": "https://github.com/Avik-Jain/100-Days-Of-ML-Code.git",
- "svn_url": "https://github.com/Avik-Jain/100-Days-Of-ML-Code",
- "homepage": "",
- "size": 10970,
- "stargazers_count": 23827,
- "watchers_count": 23827,
- "language": "Python",
- "has_issues": true,
- "has_projects": true,
- "has_downloads": true,
- "has_wiki": true,
- "has_pages": true,
- "forks_count": 5595,
- "mirror_url": null,
- "archived": false,
- "disabled": false,
- "open_issues_count": 41,
- "license": {
- "key": "mit",
- "name": "MIT License",
- "spdx_id": "MIT",
- "url": "https://api.github.com/licenses/mit",
- "node_id": "MDc6TGljZW5zZTEz"
- },
- "forks": 5595,
- "open_issues": 41,
- "watchers": 23827,
- "default_branch": "master",
- "score": 1.0
- },
- {
- "id": 70905478,
- "node_id": "MDEwOlJlcG9zaXRvcnk3MDkwNTQ3OA==",
- "name": "Deep-Learning-Papers-Reading-Roadmap",
- "full_name": "floodsung/Deep-Learning-Papers-Reading-Roadmap",
- "private": false,
- "owner": {
- "login": "floodsung",
- "id": 3880963,
- "node_id": "MDQ6VXNlcjM4ODA5NjM=",
- "avatar_url": "https://avatars0.githubusercontent.com/u/3880963?v=4",
- "gravatar_id": "",
- "url": "https://api.github.com/users/floodsung",
- "html_url": "https://github.com/floodsung",
- "followers_url": "https://api.github.com/users/floodsung/followers",
- "following_url": "https://api.github.com/users/floodsung/following{/other_user}",
- "gists_url": "https://api.github.com/users/floodsung/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/floodsung/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/floodsung/subscriptions",
- "organizations_url": "https://api.github.com/users/floodsung/orgs",
- "repos_url": "https://api.github.com/users/floodsung/repos",
- "events_url": "https://api.github.com/users/floodsung/events{/privacy}",
- "received_events_url": "https://api.github.com/users/floodsung/received_events",
- "type": "User",
- "site_admin": false
- },
- "html_url": "https://github.com/floodsung/Deep-Learning-Papers-Reading-Roadmap",
- "description": "Deep Learning papers reading roadmap for anyone who are eager to learn this amazing tech!",
- "fork": false,
- "url": "https://api.github.com/repos/floodsung/Deep-Learning-Papers-Reading-Roadmap",
- "forks_url": "https://api.github.com/repos/floodsung/Deep-Learning-Papers-Reading-Roadmap/forks",
- "keys_url": "https://api.github.com/repos/floodsung/Deep-Learning-Papers-Reading-Roadmap/keys{/key_id}",
- "collaborators_url": "https://api.github.com/repos/floodsung/Deep-Learning-Papers-Reading-Roadmap/collaborators{/collaborator}",
- "teams_url": "https://api.github.com/repos/floodsung/Deep-Learning-Papers-Reading-Roadmap/teams",
- "hooks_url": "https://api.github.com/repos/floodsung/Deep-Learning-Papers-Reading-Roadmap/hooks",
- "issue_events_url": "https://api.github.com/repos/floodsung/Deep-Learning-Papers-Reading-Roadmap/issues/events{/number}",
- "events_url": "https://api.github.com/repos/floodsung/Deep-Learning-Papers-Reading-Roadmap/events",
- "assignees_url": "https://api.github.com/repos/floodsung/Deep-Learning-Papers-Reading-Roadmap/assignees{/user}",
- "branches_url": "https://api.github.com/repos/floodsung/Deep-Learning-Papers-Reading-Roadmap/branches{/branch}",
- "tags_url": "https://api.github.com/repos/floodsung/Deep-Learning-Papers-Reading-Roadmap/tags",
- "blobs_url": "https://api.github.com/repos/floodsung/Deep-Learning-Papers-Reading-Roadmap/git/blobs{/sha}",
- "git_tags_url": "https://api.github.com/repos/floodsung/Deep-Learning-Papers-Reading-Roadmap/git/tags{/sha}",
- "git_refs_url": "https://api.github.com/repos/floodsung/Deep-Learning-Papers-Reading-Roadmap/git/refs{/sha}",
- "trees_url": "https://api.github.com/repos/floodsung/Deep-Learning-Papers-Reading-Roadmap/git/trees{/sha}",
- "statuses_url": "https://api.github.com/repos/floodsung/Deep-Learning-Papers-Reading-Roadmap/statuses/{sha}",
- "languages_url": "https://api.github.com/repos/floodsung/Deep-Learning-Papers-Reading-Roadmap/languages",
- "stargazers_url": "https://api.github.com/repos/floodsung/Deep-Learning-Papers-Reading-Roadmap/stargazers",
- "contributors_url": "https://api.github.com/repos/floodsung/Deep-Learning-Papers-Reading-Roadmap/contributors",
- "subscribers_url": "https://api.github.com/repos/floodsung/Deep-Learning-Papers-Reading-Roadmap/subscribers",
- "subscription_url": "https://api.github.com/repos/floodsung/Deep-Learning-Papers-Reading-Roadmap/subscription",
- "commits_url": "https://api.github.com/repos/floodsung/Deep-Learning-Papers-Reading-Roadmap/commits{/sha}",
- "git_commits_url": "https://api.github.com/repos/floodsung/Deep-Learning-Papers-Reading-Roadmap/git/commits{/sha}",
- "comments_url": "https://api.github.com/repos/floodsung/Deep-Learning-Papers-Reading-Roadmap/comments{/number}",
- "issue_comment_url": "https://api.github.com/repos/floodsung/Deep-Learning-Papers-Reading-Roadmap/issues/comments{/number}",
- "contents_url": "https://api.github.com/repos/floodsung/Deep-Learning-Papers-Reading-Roadmap/contents/{+path}",
- "compare_url": "https://api.github.com/repos/floodsung/Deep-Learning-Papers-Reading-Roadmap/compare/{base}...{head}",
- "merges_url": "https://api.github.com/repos/floodsung/Deep-Learning-Papers-Reading-Roadmap/merges",
- "archive_url": "https://api.github.com/repos/floodsung/Deep-Learning-Papers-Reading-Roadmap/{archive_format}{/ref}",
- "downloads_url": "https://api.github.com/repos/floodsung/Deep-Learning-Papers-Reading-Roadmap/downloads",
- "issues_url": "https://api.github.com/repos/floodsung/Deep-Learning-Papers-Reading-Roadmap/issues{/number}",
- "pulls_url": "https://api.github.com/repos/floodsung/Deep-Learning-Papers-Reading-Roadmap/pulls{/number}",
- "milestones_url": "https://api.github.com/repos/floodsung/Deep-Learning-Papers-Reading-Roadmap/milestones{/number}",
- "notifications_url": "https://api.github.com/repos/floodsung/Deep-Learning-Papers-Reading-Roadmap/notifications{?since,all,participating}",
- "labels_url": "https://api.github.com/repos/floodsung/Deep-Learning-Papers-Reading-Roadmap/labels{/name}",
- "releases_url": "https://api.github.com/repos/floodsung/Deep-Learning-Papers-Reading-Roadmap/releases{/id}",
- "deployments_url": "https://api.github.com/repos/floodsung/Deep-Learning-Papers-Reading-Roadmap/deployments",
- "created_at": "2016-10-14T11:49:48Z",
- "updated_at": "2019-06-29T11:38:13Z",
- "pushed_at": "2019-05-19T16:02:00Z",
- "git_url": "git://github.com/floodsung/Deep-Learning-Papers-Reading-Roadmap.git",
- "ssh_url": "git@github.com:floodsung/Deep-Learning-Papers-Reading-Roadmap.git",
- "clone_url": "https://github.com/floodsung/Deep-Learning-Papers-Reading-Roadmap.git",
- "svn_url": "https://github.com/floodsung/Deep-Learning-Papers-Reading-Roadmap",
- "homepage": "",
- "size": 3626,
- "stargazers_count": 23304,
- "watchers_count": 23304,
- "language": "Python",
- "has_issues": true,
- "has_projects": true,
- "has_downloads": true,
- "has_wiki": true,
- "has_pages": false,
- "forks_count": 5301,
- "mirror_url": null,
- "archived": false,
- "disabled": false,
- "open_issues_count": 75,
- "license": null,
- "forks": 5301,
- "open_issues": 75,
- "watchers": 23304,
- "default_branch": "master",
- "score": 1.0
- },
- {
- "id": 41058054,
- "node_id": "MDEwOlJlcG9zaXRvcnk0MTA1ODA1NA==",
- "name": "CppCoreGuidelines",
- "full_name": "isocpp/CppCoreGuidelines",
- "private": false,
- "owner": {
- "login": "isocpp",
- "id": 13841574,
- "node_id": "MDEyOk9yZ2FuaXphdGlvbjEzODQxNTc0",
- "avatar_url": "https://avatars3.githubusercontent.com/u/13841574?v=4",
- "gravatar_id": "",
- "url": "https://api.github.com/users/isocpp",
- "html_url": "https://github.com/isocpp",
- "followers_url": "https://api.github.com/users/isocpp/followers",
- "following_url": "https://api.github.com/users/isocpp/following{/other_user}",
- "gists_url": "https://api.github.com/users/isocpp/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/isocpp/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/isocpp/subscriptions",
- "organizations_url": "https://api.github.com/users/isocpp/orgs",
- "repos_url": "https://api.github.com/users/isocpp/repos",
- "events_url": "https://api.github.com/users/isocpp/events{/privacy}",
- "received_events_url": "https://api.github.com/users/isocpp/received_events",
- "type": "Organization",
- "site_admin": false
- },
- "html_url": "https://github.com/isocpp/CppCoreGuidelines",
- "description": "The C++ Core Guidelines are a set of tried-and-true guidelines, rules, and best practices about coding in C++",
- "fork": false,
- "url": "https://api.github.com/repos/isocpp/CppCoreGuidelines",
- "forks_url": "https://api.github.com/repos/isocpp/CppCoreGuidelines/forks",
- "keys_url": "https://api.github.com/repos/isocpp/CppCoreGuidelines/keys{/key_id}",
- "collaborators_url": "https://api.github.com/repos/isocpp/CppCoreGuidelines/collaborators{/collaborator}",
- "teams_url": "https://api.github.com/repos/isocpp/CppCoreGuidelines/teams",
- "hooks_url": "https://api.github.com/repos/isocpp/CppCoreGuidelines/hooks",
- "issue_events_url": "https://api.github.com/repos/isocpp/CppCoreGuidelines/issues/events{/number}",
- "events_url": "https://api.github.com/repos/isocpp/CppCoreGuidelines/events",
- "assignees_url": "https://api.github.com/repos/isocpp/CppCoreGuidelines/assignees{/user}",
- "branches_url": "https://api.github.com/repos/isocpp/CppCoreGuidelines/branches{/branch}",
- "tags_url": "https://api.github.com/repos/isocpp/CppCoreGuidelines/tags",
- "blobs_url": "https://api.github.com/repos/isocpp/CppCoreGuidelines/git/blobs{/sha}",
- "git_tags_url": "https://api.github.com/repos/isocpp/CppCoreGuidelines/git/tags{/sha}",
- "git_refs_url": "https://api.github.com/repos/isocpp/CppCoreGuidelines/git/refs{/sha}",
- "trees_url": "https://api.github.com/repos/isocpp/CppCoreGuidelines/git/trees{/sha}",
- "statuses_url": "https://api.github.com/repos/isocpp/CppCoreGuidelines/statuses/{sha}",
- "languages_url": "https://api.github.com/repos/isocpp/CppCoreGuidelines/languages",
- "stargazers_url": "https://api.github.com/repos/isocpp/CppCoreGuidelines/stargazers",
- "contributors_url": "https://api.github.com/repos/isocpp/CppCoreGuidelines/contributors",
- "subscribers_url": "https://api.github.com/repos/isocpp/CppCoreGuidelines/subscribers",
- "subscription_url": "https://api.github.com/repos/isocpp/CppCoreGuidelines/subscription",
- "commits_url": "https://api.github.com/repos/isocpp/CppCoreGuidelines/commits{/sha}",
- "git_commits_url": "https://api.github.com/repos/isocpp/CppCoreGuidelines/git/commits{/sha}",
- "comments_url": "https://api.github.com/repos/isocpp/CppCoreGuidelines/comments{/number}",
- "issue_comment_url": "https://api.github.com/repos/isocpp/CppCoreGuidelines/issues/comments{/number}",
- "contents_url": "https://api.github.com/repos/isocpp/CppCoreGuidelines/contents/{+path}",
- "compare_url": "https://api.github.com/repos/isocpp/CppCoreGuidelines/compare/{base}...{head}",
- "merges_url": "https://api.github.com/repos/isocpp/CppCoreGuidelines/merges",
- "archive_url": "https://api.github.com/repos/isocpp/CppCoreGuidelines/{archive_format}{/ref}",
- "downloads_url": "https://api.github.com/repos/isocpp/CppCoreGuidelines/downloads",
- "issues_url": "https://api.github.com/repos/isocpp/CppCoreGuidelines/issues{/number}",
- "pulls_url": "https://api.github.com/repos/isocpp/CppCoreGuidelines/pulls{/number}",
- "milestones_url": "https://api.github.com/repos/isocpp/CppCoreGuidelines/milestones{/number}",
- "notifications_url": "https://api.github.com/repos/isocpp/CppCoreGuidelines/notifications{?since,all,participating}",
- "labels_url": "https://api.github.com/repos/isocpp/CppCoreGuidelines/labels{/name}",
- "releases_url": "https://api.github.com/repos/isocpp/CppCoreGuidelines/releases{/id}",
- "deployments_url": "https://api.github.com/repos/isocpp/CppCoreGuidelines/deployments",
- "created_at": "2015-08-19T20:22:52Z",
- "updated_at": "2019-06-29T13:10:17Z",
- "pushed_at": "2019-06-28T08:18:04Z",
- "git_url": "git://github.com/isocpp/CppCoreGuidelines.git",
- "ssh_url": "git@github.com:isocpp/CppCoreGuidelines.git",
- "clone_url": "https://github.com/isocpp/CppCoreGuidelines.git",
- "svn_url": "https://github.com/isocpp/CppCoreGuidelines",
- "homepage": "http://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines",
- "size": 23572,
- "stargazers_count": 23300,
- "watchers_count": 23300,
- "language": "Python",
- "has_issues": true,
- "has_projects": true,
- "has_downloads": true,
- "has_wiki": true,
- "has_pages": true,
- "forks_count": 3018,
- "mirror_url": null,
- "archived": false,
- "disabled": false,
- "open_issues_count": 128,
- "license": {
- "key": "other",
- "name": "Other",
- "spdx_id": "NOASSERTION",
- "url": null,
- "node_id": "MDc6TGljZW5zZTA="
- },
- "forks": 3018,
- "open_issues": 128,
- "watchers": 23300,
- "default_branch": "master",
- "score": 1.0
- },
- {
- "id": 15019962,
- "node_id": "MDEwOlJlcG9zaXRvcnkxNTAxOTk2Mg==",
- "name": "tldr",
- "full_name": "tldr-pages/tldr",
- "private": false,
- "owner": {
- "login": "tldr-pages",
- "id": 7366472,
- "node_id": "MDEyOk9yZ2FuaXphdGlvbjczNjY0NzI=",
- "avatar_url": "https://avatars1.githubusercontent.com/u/7366472?v=4",
- "gravatar_id": "",
- "url": "https://api.github.com/users/tldr-pages",
- "html_url": "https://github.com/tldr-pages",
- "followers_url": "https://api.github.com/users/tldr-pages/followers",
- "following_url": "https://api.github.com/users/tldr-pages/following{/other_user}",
- "gists_url": "https://api.github.com/users/tldr-pages/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/tldr-pages/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/tldr-pages/subscriptions",
- "organizations_url": "https://api.github.com/users/tldr-pages/orgs",
- "repos_url": "https://api.github.com/users/tldr-pages/repos",
- "events_url": "https://api.github.com/users/tldr-pages/events{/privacy}",
- "received_events_url": "https://api.github.com/users/tldr-pages/received_events",
- "type": "Organization",
- "site_admin": false
- },
- "html_url": "https://github.com/tldr-pages/tldr",
- "description": ":books: Simplified and community-driven man pages",
- "fork": false,
- "url": "https://api.github.com/repos/tldr-pages/tldr",
- "forks_url": "https://api.github.com/repos/tldr-pages/tldr/forks",
- "keys_url": "https://api.github.com/repos/tldr-pages/tldr/keys{/key_id}",
- "collaborators_url": "https://api.github.com/repos/tldr-pages/tldr/collaborators{/collaborator}",
- "teams_url": "https://api.github.com/repos/tldr-pages/tldr/teams",
- "hooks_url": "https://api.github.com/repos/tldr-pages/tldr/hooks",
- "issue_events_url": "https://api.github.com/repos/tldr-pages/tldr/issues/events{/number}",
- "events_url": "https://api.github.com/repos/tldr-pages/tldr/events",
- "assignees_url": "https://api.github.com/repos/tldr-pages/tldr/assignees{/user}",
- "branches_url": "https://api.github.com/repos/tldr-pages/tldr/branches{/branch}",
- "tags_url": "https://api.github.com/repos/tldr-pages/tldr/tags",
- "blobs_url": "https://api.github.com/repos/tldr-pages/tldr/git/blobs{/sha}",
- "git_tags_url": "https://api.github.com/repos/tldr-pages/tldr/git/tags{/sha}",
- "git_refs_url": "https://api.github.com/repos/tldr-pages/tldr/git/refs{/sha}",
- "trees_url": "https://api.github.com/repos/tldr-pages/tldr/git/trees{/sha}",
- "statuses_url": "https://api.github.com/repos/tldr-pages/tldr/statuses/{sha}",
- "languages_url": "https://api.github.com/repos/tldr-pages/tldr/languages",
- "stargazers_url": "https://api.github.com/repos/tldr-pages/tldr/stargazers",
- "contributors_url": "https://api.github.com/repos/tldr-pages/tldr/contributors",
- "subscribers_url": "https://api.github.com/repos/tldr-pages/tldr/subscribers",
- "subscription_url": "https://api.github.com/repos/tldr-pages/tldr/subscription",
- "commits_url": "https://api.github.com/repos/tldr-pages/tldr/commits{/sha}",
- "git_commits_url": "https://api.github.com/repos/tldr-pages/tldr/git/commits{/sha}",
- "comments_url": "https://api.github.com/repos/tldr-pages/tldr/comments{/number}",
- "issue_comment_url": "https://api.github.com/repos/tldr-pages/tldr/issues/comments{/number}",
- "contents_url": "https://api.github.com/repos/tldr-pages/tldr/contents/{+path}",
- "compare_url": "https://api.github.com/repos/tldr-pages/tldr/compare/{base}...{head}",
- "merges_url": "https://api.github.com/repos/tldr-pages/tldr/merges",
- "archive_url": "https://api.github.com/repos/tldr-pages/tldr/{archive_format}{/ref}",
- "downloads_url": "https://api.github.com/repos/tldr-pages/tldr/downloads",
- "issues_url": "https://api.github.com/repos/tldr-pages/tldr/issues{/number}",
- "pulls_url": "https://api.github.com/repos/tldr-pages/tldr/pulls{/number}",
- "milestones_url": "https://api.github.com/repos/tldr-pages/tldr/milestones{/number}",
- "notifications_url": "https://api.github.com/repos/tldr-pages/tldr/notifications{?since,all,participating}",
- "labels_url": "https://api.github.com/repos/tldr-pages/tldr/labels{/name}",
- "releases_url": "https://api.github.com/repos/tldr-pages/tldr/releases{/id}",
- "deployments_url": "https://api.github.com/repos/tldr-pages/tldr/deployments",
- "created_at": "2013-12-08T07:34:43Z",
- "updated_at": "2019-06-29T12:19:55Z",
- "pushed_at": "2019-06-29T12:24:07Z",
- "git_url": "git://github.com/tldr-pages/tldr.git",
- "ssh_url": "git@github.com:tldr-pages/tldr.git",
- "clone_url": "https://github.com/tldr-pages/tldr.git",
- "svn_url": "https://github.com/tldr-pages/tldr",
- "homepage": "https://tldr.sh",
- "size": 5333,
- "stargazers_count": 22804,
- "watchers_count": 22804,
- "language": "Python",
- "has_issues": true,
- "has_projects": true,
- "has_downloads": true,
- "has_wiki": true,
- "has_pages": false,
- "forks_count": 1688,
- "mirror_url": null,
- "archived": false,
- "disabled": false,
- "open_issues_count": 85,
- "license": {
- "key": "mit",
- "name": "MIT License",
- "spdx_id": "MIT",
- "url": "https://api.github.com/licenses/mit",
- "node_id": "MDc6TGljZW5zZTEz"
- },
- "forks": 1688,
- "open_issues": 85,
- "watchers": 22804,
- "default_branch": "master",
- "score": 1.0
- },
- {
- "id": 873328,
- "node_id": "MDEwOlJlcG9zaXRvcnk4NzMzMjg=",
- "name": "sentry",
- "full_name": "getsentry/sentry",
- "private": false,
- "owner": {
- "login": "getsentry",
- "id": 1396951,
- "node_id": "MDEyOk9yZ2FuaXphdGlvbjEzOTY5NTE=",
- "avatar_url": "https://avatars0.githubusercontent.com/u/1396951?v=4",
- "gravatar_id": "",
- "url": "https://api.github.com/users/getsentry",
- "html_url": "https://github.com/getsentry",
- "followers_url": "https://api.github.com/users/getsentry/followers",
- "following_url": "https://api.github.com/users/getsentry/following{/other_user}",
- "gists_url": "https://api.github.com/users/getsentry/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/getsentry/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/getsentry/subscriptions",
- "organizations_url": "https://api.github.com/users/getsentry/orgs",
- "repos_url": "https://api.github.com/users/getsentry/repos",
- "events_url": "https://api.github.com/users/getsentry/events{/privacy}",
- "received_events_url": "https://api.github.com/users/getsentry/received_events",
- "type": "Organization",
- "site_admin": false
- },
- "html_url": "https://github.com/getsentry/sentry",
- "description": "Sentry is cross-platform application monitoring, with a focus on error reporting.",
- "fork": false,
- "url": "https://api.github.com/repos/getsentry/sentry",
- "forks_url": "https://api.github.com/repos/getsentry/sentry/forks",
- "keys_url": "https://api.github.com/repos/getsentry/sentry/keys{/key_id}",
- "collaborators_url": "https://api.github.com/repos/getsentry/sentry/collaborators{/collaborator}",
- "teams_url": "https://api.github.com/repos/getsentry/sentry/teams",
- "hooks_url": "https://api.github.com/repos/getsentry/sentry/hooks",
- "issue_events_url": "https://api.github.com/repos/getsentry/sentry/issues/events{/number}",
- "events_url": "https://api.github.com/repos/getsentry/sentry/events",
- "assignees_url": "https://api.github.com/repos/getsentry/sentry/assignees{/user}",
- "branches_url": "https://api.github.com/repos/getsentry/sentry/branches{/branch}",
- "tags_url": "https://api.github.com/repos/getsentry/sentry/tags",
- "blobs_url": "https://api.github.com/repos/getsentry/sentry/git/blobs{/sha}",
- "git_tags_url": "https://api.github.com/repos/getsentry/sentry/git/tags{/sha}",
- "git_refs_url": "https://api.github.com/repos/getsentry/sentry/git/refs{/sha}",
- "trees_url": "https://api.github.com/repos/getsentry/sentry/git/trees{/sha}",
- "statuses_url": "https://api.github.com/repos/getsentry/sentry/statuses/{sha}",
- "languages_url": "https://api.github.com/repos/getsentry/sentry/languages",
- "stargazers_url": "https://api.github.com/repos/getsentry/sentry/stargazers",
- "contributors_url": "https://api.github.com/repos/getsentry/sentry/contributors",
- "subscribers_url": "https://api.github.com/repos/getsentry/sentry/subscribers",
- "subscription_url": "https://api.github.com/repos/getsentry/sentry/subscription",
- "commits_url": "https://api.github.com/repos/getsentry/sentry/commits{/sha}",
- "git_commits_url": "https://api.github.com/repos/getsentry/sentry/git/commits{/sha}",
- "comments_url": "https://api.github.com/repos/getsentry/sentry/comments{/number}",
- "issue_comment_url": "https://api.github.com/repos/getsentry/sentry/issues/comments{/number}",
- "contents_url": "https://api.github.com/repos/getsentry/sentry/contents/{+path}",
- "compare_url": "https://api.github.com/repos/getsentry/sentry/compare/{base}...{head}",
- "merges_url": "https://api.github.com/repos/getsentry/sentry/merges",
- "archive_url": "https://api.github.com/repos/getsentry/sentry/{archive_format}{/ref}",
- "downloads_url": "https://api.github.com/repos/getsentry/sentry/downloads",
- "issues_url": "https://api.github.com/repos/getsentry/sentry/issues{/number}",
- "pulls_url": "https://api.github.com/repos/getsentry/sentry/pulls{/number}",
- "milestones_url": "https://api.github.com/repos/getsentry/sentry/milestones{/number}",
- "notifications_url": "https://api.github.com/repos/getsentry/sentry/notifications{?since,all,participating}",
- "labels_url": "https://api.github.com/repos/getsentry/sentry/labels{/name}",
- "releases_url": "https://api.github.com/repos/getsentry/sentry/releases{/id}",
- "deployments_url": "https://api.github.com/repos/getsentry/sentry/deployments",
- "created_at": "2010-08-30T22:06:41Z",
- "updated_at": "2019-06-29T08:59:37Z",
- "pushed_at": "2019-06-29T00:25:39Z",
- "git_url": "git://github.com/getsentry/sentry.git",
- "ssh_url": "git@github.com:getsentry/sentry.git",
- "clone_url": "https://github.com/getsentry/sentry.git",
- "svn_url": "https://github.com/getsentry/sentry",
- "homepage": "https://sentry.io",
- "size": 114494,
- "stargazers_count": 21305,
- "watchers_count": 21305,
- "language": "Python",
- "has_issues": true,
- "has_projects": true,
- "has_downloads": true,
- "has_wiki": false,
- "has_pages": false,
- "forks_count": 2434,
- "mirror_url": null,
- "archived": false,
- "disabled": false,
- "open_issues_count": 894,
- "license": {
- "key": "bsd-3-clause",
- "name": "BSD 3-Clause \"New\" or \"Revised\" License",
- "spdx_id": "BSD-3-Clause",
- "url": "https://api.github.com/licenses/bsd-3-clause",
- "node_id": "MDc6TGljZW5zZTU="
- },
- "forks": 2434,
- "open_issues": 894,
- "watchers": 21305,
- "default_branch": "master",
- "score": 1.0
- }
- ]
- }
复制代码 |
|