diff options
author | elioat <elioat@tilde.institute> | 2022-12-03 11:00:00 -0500 |
---|---|---|
committer | elioat <elioat@tilde.institute> | 2022-12-03 11:00:00 -0500 |
commit | 7d320a17b570a6607bdfd993aae84fcd46594aa1 (patch) | |
tree | ca361d7b2a0fe42e87f2c22c530a57611c66fdb9 | |
parent | 3129b99ece4ebbb4111dfd8cb64cb0c1c1332129 (diff) | |
download | december-2022-7d320a17b570a6607bdfd993aae84fcd46594aa1.tar.gz |
thinking through data things
-rw-r--r-- | src/pokedex.rkt | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/pokedex.rkt b/src/pokedex.rkt index e1fad97..f014f0c 100644 --- a/src/pokedex.rkt +++ b/src/pokedex.rkt @@ -52,5 +52,6 @@ (hash-ref (inspector (dex-entry 5)) "types") ;; struggling to figure out how to access the nested hash tables stats and types... - +;; the other option not yet considered is to make individual API calls for each bit of data, rather than 1 call and plucking out the data I want. +;; this may lead to an easier data shape, but means a lot more network traffic. |