From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00,FREEMAIL_FROM autolearn=unavailable autolearn_force=no version=3.4.4 X-Received: by 2002:a37:a08b:: with SMTP id j133mr3704824qke.265.1585835891048; Thu, 02 Apr 2020 06:58:11 -0700 (PDT) X-Received: by 2002:aca:7213:: with SMTP id p19mr2216651oic.44.1585835890625; Thu, 02 Apr 2020 06:58:10 -0700 (PDT) Path: eternal-september.org!reader01.eternal-september.org!feeder.eternal-september.org!aioe.org!peer01.am4!peer.am4.highwinds-media.com!peer02.iad!feed-me.highwinds-media.com!news.highwinds-media.com!news-out.google.com!nntp.google.com!postnews.google.com!google-groups.googlegroups.com!not-for-mail Newsgroups: comp.lang.ada Date: Thu, 2 Apr 2020 06:58:10 -0700 (PDT) Complaints-To: groups-abuse@google.com Injection-Info: google-groups.googlegroups.com; posting-host=179.35.31.165; posting-account=TRgI1QoAAABSsYi-ox3Pi6N-JEKKU0cu NNTP-Posting-Host: 179.35.31.165 User-Agent: G2/1.0 MIME-Version: 1.0 Message-ID: <7dc6d888-696c-4936-b678-66e1c8198449@googlegroups.com> Subject: Simple parse from https website From: "Rego, P." Injection-Date: Thu, 02 Apr 2020 13:58:11 +0000 Content-Type: text/plain; charset="UTF-8" X-Received-Bytes: 2040 X-Received-Body-CRC: 43353505 Xref: reader01.eternal-september.org comp.lang.ada:58280 Date: 2020-04-02T06:58:10-07:00 List-Id: Hi folks, how are you? I hope everyone is safe and healthy. I am trying to make a simple parser for an https website push, so trying to follow from the example from http://rosettacode.org/wiki/HTTP#Ada, just changing the address from a website. So I tried with Ada.Text_IO; use Ada.Text_IO; with AWS.Client; with AWS.Response; procedure Main_Other is begin Put_Line (AWS.Response.Message_Body (AWS.Client.Get (URL => "https://google.com"))); end Main_Other; But I got an exception raised PROGRAM_ERROR : aws-client.adb:398 finalize/adjust raised exception [2020-04-02 10:41:20] process exited with status 1, elapsed time: 00.80s So, any thoughts on how to fix that? I'd like to parse the current status of some tables in a website, similar of making something like that in Python import pandas as pd def retrieve_json(json_url): return pd.read_json(json_url) Thanks Pablo.