{ "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", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
JahrAmtlicher Gemeindeschlüssel (AGS)GemeindenAnteil_der_Flaeche_fuer_Siedlung_an_Gesamtflaeche__ProzentAnteil_der_Flaeche_fuer_Verkehr_an_Gesamtflaeche__ProzentAnteil_der_Flaeche_fuer_Landwirtschaft_an_Gesamtflaeche__ProzentAnteil_der_Flaeche_fuer_Wald_an_Gesamtflaeche__ProzentAnteil_Sport-,_Freizeit-,_Erholungsflaeche_an_Gesamtflaeche__ProzentAnteil_Siedlungs-_und_Verkehrsflaeche_an_Gesamtflaeche__ProzentSiedlungs-_und_Verkehrsflaeche_je_EW__qmFreiraumflaeche_je_EW__qm
02022DGDeutschland9.55.150.429.91.514.1599.43623.7
1202201Schleswig-Holstein9.34.468.310.31.313.4718.34618.0
2202201001Flensburg, kreisfreie Stadt39.813.822.16.64.453.5327.9284.1
3202201002Kiel, kreisfreie Stadt44.913.923.45.610.358.8281.5197.4
4202201003Lübeck, kreisfreie Stadt, Hansestadt28.99.230.214.76.237.9371.9607.5
\n", "
" ], "text/plain": [ " Jahr Amtlicher Gemeindeschlüssel (AGS) Gemeinden Anteil_der_Flaeche_fuer_Siedlung_an_Gesamtflaeche__Prozent Anteil_der_Flaeche_fuer_Verkehr_an_Gesamtflaeche__Prozent Anteil_der_Flaeche_fuer_Landwirtschaft_an_Gesamtflaeche__Prozent Anteil_der_Flaeche_fuer_Wald_an_Gesamtflaeche__Prozent Anteil_Sport-,_Freizeit-,_Erholungsflaeche_an_Gesamtflaeche__Prozent Anteil_Siedlungs-_und_Verkehrsflaeche_an_Gesamtflaeche__Prozent Siedlungs-_und_Verkehrsflaeche_je_EW__qm Freiraumflaeche_je_EW__qm\n", "0 2022 DG Deutschland 9.5 5.1 50.4 29.9 1.5 14.1 599.4 3623.7\n", "1 2022 01 Schleswig-Holstein 9.3 4.4 68.3 10.3 1.3 13.4 718.3 4618.0\n", "2 2022 01001 Flensburg, kreisfreie Stadt 39.8 13.8 22.1 6.6 4.4 53.5 327.9 284.1\n", "3 2022 01002 Kiel, kreisfreie Stadt 44.9 13.9 23.4 5.6 10.3 58.8 281.5 197.4\n", "4 2022 01003 Lübeck, kreisfreie Stadt, Hansestadt 28.9 9.2 30.2 14.7 6.2 37.9 371.9 607.5" ] }, "execution_count": 4, "metadata": {}, "output_type": "execute_result" } ], "source": [ "t.data.head()" ] } ], "metadata": { "kernelspec": { "display_name": "Python 3.9.7 ('.venv': poetry)", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.11.8" }, "vscode": { "interpreter": { "hash": "02e23b522f8c3795158421909d41ced4ef90521258d58d1c53bee449d96f71e3" } } }, "nbformat": 4, "nbformat_minor": 1 }