{ "cells": [ { "cell_type": "markdown", "metadata": { "pycharm": { "name": "#%% md\n" } }, "source": [ "# Jobs: Loading Large Tables\n", "\n", "Some tables from the database are quite large and the API provides them in a different way:\n", "\n", "1. The standard request is rejected with code 98\n", "2. However, setting the query parameter `job=true` starts a background task.\n", "3. The final table is then available under `data/resultfile` instead of `data/tablefile`.\n", "\n", "_`pystatis` is handling all these details and the whole process for you!. Thus, you will only notice a larger runtime when requesting larger tables (currently about 1 minute of extra timeout)._\n" ] }, { "cell_type": "code", "execution_count": null, "metadata": { "pycharm": { "name": "#%%\n" } }, "outputs": [], "source": [ "import logging\n", "\n", "from pystatis import Table\n", "\n", "logging.basicConfig(level=logging.INFO)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Let's assume we want to download the table \"AI001-2-5\".\n", "If the table is not cached yet, a warning message tells us that a background job has been started.\n" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "t = Table(name=\"AI001-2-5\")\n", "t.get_data()" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Requesting the same table again will provide the table instantly from the cache.\n" ] }, { "cell_type": "code", "execution_count": 3, "metadata": {}, "outputs": [ { "name": "stderr", "output_type": "stream", "text": [ "INFO:pystatis.http_helper:Code 0: erfolgreich\n" ] } ], "source": [ "t = Table(name=\"AI001-2-5\")\n", "t.get_data()" ] }, { "cell_type": "code", "execution_count": 4, "metadata": { "pycharm": { "name": "#%%\n" } }, "outputs": [ { "data": { "text/html": [ "
\n", " | Jahr | \n", "Amtlicher Gemeindeschlüssel (AGS) | \n", "Gemeinden | \n", "Anteil_der_Flaeche_fuer_Siedlung_an_Gesamtflaeche__Prozent | \n", "Anteil_der_Flaeche_fuer_Verkehr_an_Gesamtflaeche__Prozent | \n", "Anteil_der_Flaeche_fuer_Landwirtschaft_an_Gesamtflaeche__Prozent | \n", "Anteil_der_Flaeche_fuer_Wald_an_Gesamtflaeche__Prozent | \n", "Anteil_Sport-,_Freizeit-,_Erholungsflaeche_an_Gesamtflaeche__Prozent | \n", "Anteil_Siedlungs-_und_Verkehrsflaeche_an_Gesamtflaeche__Prozent | \n", "Siedlungs-_und_Verkehrsflaeche_je_EW__qm | \n", "Freiraumflaeche_je_EW__qm | \n", "
---|---|---|---|---|---|---|---|---|---|---|---|
0 | \n", "2022 | \n", "DG | \n", "Deutschland | \n", "9.5 | \n", "5.1 | \n", "50.4 | \n", "29.9 | \n", "1.5 | \n", "14.1 | \n", "599.4 | \n", "3623.7 | \n", "
1 | \n", "2022 | \n", "01 | \n", "Schleswig-Holstein | \n", "9.3 | \n", "4.4 | \n", "68.3 | \n", "10.3 | \n", "1.3 | \n", "13.4 | \n", "718.3 | \n", "4618.0 | \n", "
2 | \n", "2022 | \n", "01001 | \n", "Flensburg, kreisfreie Stadt | \n", "39.8 | \n", "13.8 | \n", "22.1 | \n", "6.6 | \n", "4.4 | \n", "53.5 | \n", "327.9 | \n", "284.1 | \n", "
3 | \n", "2022 | \n", "01002 | \n", "Kiel, kreisfreie Stadt | \n", "44.9 | \n", "13.9 | \n", "23.4 | \n", "5.6 | \n", "10.3 | \n", "58.8 | \n", "281.5 | \n", "197.4 | \n", "
4 | \n", "2022 | \n", "01003 | \n", "Lübeck, kreisfreie Stadt, Hansestadt | \n", "28.9 | \n", "9.2 | \n", "30.2 | \n", "14.7 | \n", "6.2 | \n", "37.9 | \n", "371.9 | \n", "607.5 | \n", "