Created
December 3, 2014 17:51
-
-
Save AmirHooshangi/a61adce405bfb3fe23d7 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(defun search-github() | |
(request | |
"https://api.github.com/search/repositories" | |
:params '(("q" . "*.g8" ) ("sort" . "stars") ("order" . "desc")) | |
:parser 'json-read | |
:success (function* | |
(lambda (&key data &allow-other-keys) | |
(let* ((items (assoc-default 'items data))) | |
items))))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment