Update readme and doc for #184

This commit is contained in:
Vincent Jacques
2013-08-21 13:12:26 +02:00
parent 6a92d3ed63
commit cbeea79a40
2 changed files with 6 additions and 0 deletions
+5
View File
@@ -94,6 +94,11 @@ class PaginatedList(PaginatedListBase):
second_repo = user.get_repos()[1]
first_repos = user.get_repos()[:10]
If you want to iterate in reversed order, just do::
for repo in user.get_repos().reversed:
print repo.name
And if you really need it, you can explicitely access a specific page::
some_repos = user.get_repos().get_page(0)