joges
After querying database tables from amazon ledger database via python/erlport I get a list of amazon ion objects like
[
'"{subject:\\"Elixir\\",state:\\"in use\\",url:\\"https://forum.elixirforum.com",retrieved_on:2019-12-21T00:00:00.000000-00:00}"',
'"{subject:\\"Phoenix\\",state:\\"in use\\",url:\\"https://www.phoenixframework.org",retrieved_on:2019-12-21T00:00:00.000000-00:00}"'
]
The objects represent neither elixir types nor valid json.
How can I convert such objects or the list of objects into a list of maps or into json to use in elixir.
Trending in Questions
I having some trouble figuring out if I have set myself too strict of standards for my production server. Currently I can handle 75% of r...
New
Documentation
While reading the Scoped Routes section, I noticed that the documentation currently refers to a problem without explainin...
New
Hello,
I know there is an approach for handling lists that allows for optimized traversal, but I can’t recall the specific method (somet...
New
Hi everyone,
I am toying with the idea of building a “match maker” for giving personal help to people that wants to start coding.
I sta...
New
So my question is quite simple and i have found no conclusive answer on forum, google or AI.
Should we use :erlang.float for Integer to ...
New
I recently noticed that Elixir’s Logger defaults its primary log level to :debug when no :logger, :level application configuration is pre...
New
I’m new to elixir and just tried to install the elixirLS extension for VScode(ium) and it is throwing some errors that I would like help ...
New
Other Trending Topics
Edit: 2026 May 15 - This post is archived.
Mob is alive!!
Main docs: mob v0.7.11 — Documentation
A bit of explanation for the slightly c...
New
Hey, I’m Jesse and I’m the main contributor behind Dexter, a full-featured, lightning-fast Elixir LSP optimized for large codebases. It s...
New
I am happy to introduce the very α version of the new programming language compiled to BEAM.
Welcome Cure.
It has literally three kille...
New
Hobbes is a low-level distributed database for the Elixir programming language.
Hobbes provides a simple, safe, and scalable storage lay...
New
Hi everyone!
The first release candidate for the Expert language server project is now available!
We’ve published a press release detai...
New
A little off-topic, but I feel like people here have a good head on their shoulders.
I used to be quite good at making software. Was luc...
New
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #library
- #deployment
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #elixirconf
- #channels
- #exunit
- #discussion
- #code-sync
- #podcasts
- #javascript
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ai
- #ecto-query
- #elixirconf-us
- #blog-post
- #elixir-ls
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #elixirconf-eu
- #api
- #forms
- #metaprogramming
- #hex










Showing Posts 1 to 10- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
ityonemo
Looks like they are just escaped json. Unescape it, then Jason.decode
joges
You are right. They call it a superset of json.
I have already tryed to use Jason.decode but all I got get was the same list without the leading and closing single quote like:
How can I unescape it?
fuelen
It is not a json, it contains own data structures, like datetime in UTC
retrieved_on:2019-12-21T00:00:00.000000-00:00, so Jason isn’t able to parse this.@joges you need your own parser or just do deserialization into JSON on python side.
ityonemo
ha, I was on mobile so didn’t see that far into the data structure!
+1 on own parser
dimitarvp
How exactly do the objects arrive, in which form?
Do they start with a single quote, or a double quote? It’s not very clear from the snippet you posted in your OP.
Ideally, please post exactly how you see them in
iex. Show us an assignment to a variable and the output in the console.dimitarvp
Here’s a quick and very dirty and unsafe implementation that works on your both samples:
Now test it in
iex:I am not sure if this code properly assumes the shape of the input data though. The assumptions are shown in the hardcoded text samples.
From then on, you can additionally parse the date/times into proper Elixir objects. It’s pretty easy when you use timex.
I’d strongly recommend using something more proper like nimble_parsec for this task though!
joges
The looks like a solution! Many thanks!!
But maybe there is potential for improvements, so in order to answer your questions and in order to explain better what I do on python side:
I have a function on python side, which converts an ion object into python:
When I print this function in python or call it via erlport in elixir and make an IO.inspect() I get the following result in iex (this time with original and not example data):
So in this case, I get a single quoted result.
I also tried to convert this object on python side to json:
The result of “already converted to json on python side” is as I posted before single and double quoted:
dimitarvp
I don’t know Python but this doesn’t look right; it does not even attempt to format the keys to JSON – namely enclose them in double quotes. If you want to just pass a valid JSON to the Elixir code – which you should IMO, and you should ignore my code because it’s unsafe and makes too many assumptions – then fight with your Python code and make it format your key/value pairs as JSON. Shouldn’t be that hard I reckon.
You also have your double quotes strangely escaped: you have the backslash itself escaped. Pretty weird.
joges
Thanks for your help and advise. I am going to play around on python side again. By the way the python side code is an example code snippet directly catched from the amazon python driver example code for the ledger database.
dimitarvp
Eh, I didn’t help much.
I’d additionally advise you to go to StackOverflow and ask how can you format Amazon Ions to valid JSON in Python. Once you have that solved, the Elixir part is a piece of cake – just a matter of
Jason.decode.Good luck!