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
我將如何得到我想要的輸出?可能嗎?有什麼可以把它變成我想要的陣列嗎?
好吧,那給了我一個清單,'[,]',但它仍然在Buffer中。我如何緩衝它? –
baranskistad
@bjskistad,你在談論什麼樣的'緩衝區'?請先[請閱讀文檔](http://pygithub3.readthedocs.io/en/latest/index.html#)。 – ForceBru
而不是顯示爲字符串,它們出現在我剛剛指定的列表中的東西。 – baranskistad