joges

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.

Showing Posts 1 to 10

ityonemo

ityonemo

Looks like they are just escaped json. Unescape it, then Jason.decode

joges

joges OP

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:

[
  "{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}"
]

How can I unescape it?

fuelen

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

ityonemo

ha, I was on mobile so didn’t see that far into the data structure!

+1 on own parser

dimitarvp

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

dimitarvp

Here’s a quick and very dirty and unsafe implementation that works on your both samples:

defmodule CustomParser do
  def sample1(), do: "{subject:\"Elixir\",state:\"in use\",url:\"https://forum.elixirforum.com\",retrieved_on:2019-12-21T00:00:00.000000-00:00}"

  def sample2(), do: "{subject:\"Phoenix\",state:\"in use\",url:\"https://www.phoenixframework.org\",retrieved_on:2019-12-21T00:00:00.000000-00:00}"

  def parse(t) when is_binary(t) do
    t
    |> String.trim_leading("{")
    |> String.trim_trailing("}")
    |> String.split(",")
    |> Enum.map(fn(x) -> String.split(x, ":", parts: 2) end)
    |> Enum.map(fn([key, value]) -> {key, String.replace(value, "\"", "")} end)
    |> Map.new()
  end
end

Now test it in iex:

iex> CustomParser.parse(CustomParser.sample1())
%{
  "retrieved_on" => "2019-12-21T00:00:00.000000-00:00",
  "state" => "in use",
  "subject" => "Elixir",
  "url" => "https://forum.elixirforum.com"
}
iex> CustomParser.parse(CustomParser.sample2())
%{
  "retrieved_on" => "2019-12-21T00:00:00.000000-00:00",
  "state" => "in use",
  "subject" => "Phoenix",
  "url" => "https://www.phoenixframework.org"
}

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

joges OP

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:

def get_result(cursor):
    """
    Pretty print the result set. Returns the number of documents in the result set.

    :type cursor: :py:class:`pyqldb.cursor.stream_cursor.StreamCursor`/
                  :py:class:`pyqldb.cursor.buffered_cursor.BufferedCursor`
    :param cursor: An instance of the StreamCursor or BufferedCursor class.

    :rtype: int
    :return: Number of documents in the result set.
    """

    result = []
    for row in cursor:

        # Each row would be in Ion format.
        result.append(dumps(row, binary=False,
                            omit_version_marker=True))

    return result

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):

['{version:"BGBl. II Nr. 163/2007",valid:true,url:"https://www.ris.bka.gv.at/GeltendeFassung.wxe?Abfrage=Bundesnormen&Gesetzesnummer=20005279",subject:"Einweisungsbest\\xe4tigung",state:"in use",retrieved_on:null,name:"Medizinproduktebetreiberverordnung (MPBV)",id:null,country:"AT",confirmation_template:[]}', '{subject:"Einweisungsbest\\xe4tigung",name:"Medizinproduktebetreiberverordnung (MPBV)",country:"AT",url:"https://www.ris.bka.gv.at/GeltendeFassung.wxe?Abfrage=Bundesnormen&Gesetzesnummer=20005279",retrieved_on:2019-12-21T00:00:00.000000-00:00,version:"BGBl. II Nr. 163/2007",state:"in use",valid:true}']

So in this case, I get a single quoted result.

I also tried to convert this object on python side to json:

def get_result(cursor):
    """
    Pretty print the result set. Returns the number of documents in the result set.

    :type cursor: :py:class:`pyqldb.cursor.stream_cursor.StreamCursor`/
                  :py:class:`pyqldb.cursor.buffered_cursor.BufferedCursor`
    :param cursor: An instance of the StreamCursor or BufferedCursor class.

    :rtype: int
    :return: Number of documents in the result set.
    """

    result = []
    for row in cursor:

        # Each row would be in Ion format.
        result.append(json.dumps(dumps(row, binary=False,
                                       omit_version_marker=True)))

    return result

The result of “already converted to json on python side” is as I posted before single and double quoted:

['"{version:\\"BGBl. II Nr. 163/2007\\",valid:true,url:\\"https://www.ris.bka.gv.at/GeltendeFassung.wxe?Abfrage=Bundesnormen&Gesetzesnummer=20005279\\",subject:\\"Einweisungsbest\\\\xe4tigung\\",state:\\"in use\\",retrieved_on:null,name:\\"Medizinproduktebetreiberverordnung (MPBV)\\",id:null,country:\\"AT\\",confirmation_template:[]}"', '"{subject:\\"Einweisungsbest\\\\xe4tigung\\",name:\\"Medizinproduktebetreiberverordnung (MPBV)\\",country:\\"AT\\",url:\\"https://www.ris.bka.gv.at/GeltendeFassung.wxe?Abfrage=Bundesnormen&Gesetzesnummer=20005279\\",retrieved_on:2019-12-21T00:00:00.000000-00:00,version:\\"BGBl. II Nr. 163/2007\\",state:\\"in use\\",valid:true}"']
dimitarvp

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

joges OP

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

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. :slight_smile:

Good luck!

Where Next? Top

Trending in Questions Top

katta
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
brecabral
Documentation While reading the Scoped Routes section, I noticed that the documentation currently refers to a problem without explainin...
New
nseaSeb
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
kpanic
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
velrest
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
asweet-confluent
I recently noticed that Elixir’s Logger defaults its primary log level to :debug when no :logger, :level application configuration is pre...
New
apz
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 Top

GenericJam
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
JesseHerrick
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
mudasobwa
I am happy to introduce the very α version of the new programming language compiled to BEAM. Welcome Cure. It has literally three kille...
New
garrison
Hobbes is a low-level distributed database for the Elixir programming language. Hobbes provides a simple, safe, and scalable storage lay...
New
mhanberg
Hi everyone! The first release candidate for the Expert language server project is now available! We’ve published a press release detai...
New
budgie
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

We're in Beta

About us Mission Statement

Options

Thread Display Mode




Thread Preview

Skip Thread Previews