continuing

This commit is contained in:
frankknoll
2023-04-01 02:01:23 +02:00
parent 0b231d12dd
commit 74ebd55a47
2 changed files with 24 additions and 1 deletions

View File

@@ -232,7 +232,29 @@
"source": [
"from CountriesMerger import CountriesMerger\n",
"\n",
"CountriesMerger.mergeSrcIntoDst(dst = batchCodeTable['Countries'], src = countriesByBatchcodeBeforeDeletion['Countries'])"
"mergedCountries = CountriesMerger.mergeSrcIntoDst(dst = batchCodeTable['Countries'], src = countriesByBatchcodeBeforeDeletion['Countries'])\n",
"mergedCountries"
]
},
{
"cell_type": "code",
"execution_count": null,
"id": "6ae58448",
"metadata": {},
"outputs": [],
"source": [
"batchCodeTable['Countries'] = mergedCountries\n",
"batchCodeTable"
]
},
{
"cell_type": "code",
"execution_count": null,
"id": "12593012",
"metadata": {},
"outputs": [],
"source": [
"mergedCountries.to_excel('tmp/mergedCountries.xlsx')"
]
},
{