{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "# surplus 2.0.0 playground notebook" ] }, { "cell_type": "code", "execution_count": 7, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "OUTPUT_LINE_X_KEYS: Final[tuple[str, ...]] = (\"region\",\"county\",\"state\",\"state_district\",\"country\",\"continent\",)\n" ] } ], "source": [ "# converting nominatim keys to OUTPUT_LINE_X_KEYS format\n", "\n", "keys = \"\"\"\n", "region, county, state, state_district, country, continent\n", "\"\"\"\n", "\n", "split_keys = [f'\"{key.strip()}\"' for key in keys.strip().split(\",\")]\n", "\n", "print(f\"OUTPUT_LINE_X_KEYS: Final[tuple[str, ...]] = ({','.join(split_keys)},)\")" ] } ], "metadata": { "kernelspec": { "display_name": "Python 3", "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.10.12" }, "orig_nbformat": 4 }, "nbformat": 4, "nbformat_minor": 2 }