aws

souenzzo 2025-09-26T18:46:52.049559Z

How do you all unpack dynamodb data? I know that it is easy But I would like to know if you already have libraries ready, or maybe within the aws api itself

2025-09-26T18:54:17.135959Z

This is a nice, small, single source file library for working with ddb (using aws-api): https://github.com/ctorrisi/franklin/blob/master/src/franklin/core.clj I took a lot of inspiration from that last time i worked with ddb

👍 1
raspasov 2025-09-30T01:36:54.191509Z

What do you mean specifically by “unpack”? I’ve worked with dynamodb from Clojure but it’s been a while. Are you using the Java libraries?

souenzzo 2025-09-30T01:39:05.635629Z

dynamodb always expect (on insertion) and returns structures like {:id {:S "123213-3213-32131"} :addresses {:V [{:M {:zip "123434"}}]}} (with extra :S before string, extra :M before maps, etc)