Github API调用用户帐户

时间:2018-03-14 10:53:09

标签: api github github-api

您好我正在尝试从Github API获取用户的数据,他们编程的语言,他们的回购以及他们与之关联的关注者及其号码。

我已阅读文档,但未找到任何特定于我需要的查询的内容。

目前,我已使用此查询来调用https://api.github.com/search/users?q=location:uk&sort=stars&order=desc&page=1&per_page=100

但是,这会返回帐户名称,网址以及与我要实现的内容无关的其他内容。我正在使用Jupyter笔记本上的json和python请求分析这些数据。

任何人都可以分享他们的意见,谢谢。

1 个答案:

答案 0 :(得分:0)

您可以使用GraphQL Api v4向用户请求您想要的特定信息。在以下查询中,您使用location:uk&提取他们的登录名,姓名,关注者,关注者数量,存储库,存储库数量,语言等......

{
  search(query: "location:uk", type: USER, first: 100) {
    userCount
    pageInfo {
      hasNextPage
      endCursor
    }
    nodes {
      ... on User {
        login
        name
        location
        repositories(first: 10) {
          totalCount
          nodes {
            languages(first: 2) {
              nodes {
                name
              }
            }
            name
          }
        }
        followers(first: 10) {
          totalCount
          nodes {
            login
          }
        }
      }
    }
  }
}

Try it in the explorer

对于分页,请使用first: 100来请求前100个项目&amp;使用after: <cursor_value>请求下一页,光标值是上一页的最后一个光标,例如前一个查询中pageInfo.endCursor的值。

在Python中,这将是:

import json
import requests

access_token = "YOUR_ACCESS_TOKEN"

query = """
{
    search(query: "location:uk", type: USER, first: 100) {
        userCount
        pageInfo {
          hasNextPage
          endCursor
        }
        nodes {
          ... on User {
            login
            name
            location
            repositories(first: 10) {
              totalCount
              nodes {
                languages(first: 2) {
                  nodes {
                    name
                  }
                }
                name
              }
            }
            followers(first: 10) {
              totalCount
              nodes {
                login
              }
            }
          }
        }
    }
}"""

data = {'query': query.replace('\n', ' ')}
headers = {'Authorization': 'token ' + access_token, 'Content-Type': 'application/json'}
r = requests.post('https://api.github.com/graphql', headers=headers, json=data)
print(json.loads(r.text))