0

pygithub3組織のリポジトリを受信するために API を呼び出すために使用していますが、次の結果が得られます。

<pygithub3.core.result.smart.Result object at 0x7f97e9c03d50>

これはバッファオブジェクトだと思います。なぜこうなった?私は結果が欲しい

['express-file', 'users']

私のコードは次のようになります。

import pygithub3

auth = dict(username="******", password="******") # I hashed these for SO.
gh = pygithub3.Github(**auth)

repos = gh.repos.list_by_org(org="incrosoft", type="all")
print repos

どうすれば目的の出力を得ることができますか? 出来ますか?それを私の目的の配列に変えるものはありますか?

4

1 に答える 1