Plaster
New
List
Login
common-lisp
default
anonymous
2021.04.19 13:21:36
(defun google-search-uri (querystring) (quri:render-uri (quri:make-uri :scheme "https" :host "suggestqueries.google.com" :path "/complete" :query '(("output" . "firefox") ("search" . querystring))))) (google-search-uri "hello world") ;; "https://suggestqueries.google.com/complete?output=firefox&search=QUERYSTRING"
Raw
Annotate
Repaste
Edit