Xion / gisht

Gists in the shell
GNU General Public License v2.0
27 stars 0 forks source link

Stop when a GitHub gist is found #3

Closed Xion closed 7 years ago

Xion commented 7 years ago

When looking for a GitHub gist, the entire list of gists for a user is looked through. This makes more HTTP requests to GitHub API than necessary.

Turn list_gists function into an Iterator which dispenses gists semi-lazily, only talking to the API when strictly necessary.

Xion commented 7 years ago

Fixed.