New branch for exploring data storage and retreival.

This commit is contained in:
Mike Holloway 2020-11-15 21:46:21 -05:00
parent bb21d54da6
commit a267389110

View File

@ -42,3 +42,8 @@ headers: '( ("x-rapidapi-host" . "apidojo-yahoo-finance-v1.p.rapidapi.com")
(map (lambda (x) (display (string-append
api-url "query?function=" api-function "&symbol=" (symbol->string x) "&apikey=" api-key "\n")))
stock-symbols ) )
(let
((test-input-file (open-input-file "test.json"))
(foo "bar") )
(write-json (read-json test-input-file))
(close-input-port test-input-file) )