From 96eaf1d7105818c3034bb0ef70eed2c919f681a8 Mon Sep 17 00:00:00 2001 From: Tarun Kukreja Date: Wed, 8 May 2024 17:31:06 -0700 Subject: [PATCH] fixed #9781 --- ...dentify_Items_That_Use_Insecure_URLs.ipynb | 1084 ++--------------- 1 file changed, 106 insertions(+), 978 deletions(-) diff --git a/samples/05_content_publishers/Identify_Items_That_Use_Insecure_URLs.ipynb b/samples/05_content_publishers/Identify_Items_That_Use_Insecure_URLs.ipynb index 1ba10963b6..2b2db30ba2 100644 --- a/samples/05_content_publishers/Identify_Items_That_Use_Insecure_URLs.ipynb +++ b/samples/05_content_publishers/Identify_Items_That_Use_Insecure_URLs.ipynb @@ -34,7 +34,7 @@ }, { "cell_type": "code", - "execution_count": 1, + "execution_count": 4, "metadata": {}, "outputs": [], "source": [ @@ -50,7 +50,8 @@ "from arcgis.mapping import WebScene\n", "from arcgis.gis import GIS\n", "\n", - "gis = GIS('Home')" + "# login with your admin profile\n", + "gis = GIS(profile=\"Home\")" ] }, { @@ -59,14 +60,14 @@ "source": [ "## Configure Behavior\n", "\n", - "Now, let's configure some variables specific to our organization that will tell our notebook how we want it to run. With the default `CHECK_ALL_ITEMS` set to `True`, this notebook will apply this check to all items an organization/portal. If you would instead prefer to only apply this check to certain groups of items, set `CHECK_ALL_ITEMS` to `False`, then set `GROUP_NAMES` to a list of group name strings.\n", + "Now, let's configure some variables specific to our organization that will tell our notebook how we want it to run. With the default `CHECK_ALL_ITEMS` set to `True`, this notebook will apply this check to all items in an organization/portal. If you would instead prefer to only apply this check to certain groups of items, set `CHECK_ALL_ITEMS` to `False`, then set `GROUP_NAMES` to a list of group name strings.\n", "\n", "Modify the below cell to change that default behavior." ] }, { "cell_type": "code", - "execution_count": 2, + "execution_count": 5, "metadata": {}, "outputs": [], "source": [ @@ -87,7 +88,7 @@ }, { "cell_type": "code", - "execution_count": 3, + "execution_count": 6, "metadata": {}, "outputs": [], "source": [ @@ -107,7 +108,7 @@ }, { "cell_type": "code", - "execution_count": 4, + "execution_count": 7, "metadata": {}, "outputs": [], "source": [ @@ -125,7 +126,7 @@ }, { "cell_type": "code", - "execution_count": 5, + "execution_count": 8, "metadata": {}, "outputs": [], "source": [ @@ -147,7 +148,7 @@ }, { "cell_type": "code", - "execution_count": 6, + "execution_count": 9, "metadata": {}, "outputs": [], "source": [ @@ -189,7 +190,7 @@ }, { "cell_type": "code", - "execution_count": 7, + "execution_count": 1, "metadata": {}, "outputs": [], "source": [ @@ -203,7 +204,7 @@ " http_urls = []\n", " ws = WebScene(webscene_item)\n", "\n", - " # Concatenate all operational layers and basemap layers to 1 list\n", + " # Concatenate all operational layers and basemap layers to one list\n", " all_layers = []\n", " for operationalLayer in ws.get('operationalLayers', []):\n", " if 'layers' in operationalLayer:\n", @@ -239,7 +240,7 @@ }, { "cell_type": "code", - "execution_count": 8, + "execution_count": 11, "metadata": {}, "outputs": [], "source": [ @@ -279,12 +280,12 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "The previously defined `test_https_...()` functions all follow a similar prototype of returning a tuple of `(https_urls, http_urls)`. We can therefore define a helper function will sort for us and call the correct function, based on the `item.type` property and the previously defined configuration variables." + "The previously defined `test_https_...()` functions all follow a similar prototype of returning a tuple of `(https_urls, http_urls)`. We can therefore define a helper function that will sort for us and call the correct function, based on the `item.type` property and the previously defined configuration variables." ] }, { "cell_type": "code", - "execution_count": 9, + "execution_count": 37, "metadata": {}, "outputs": [], "source": [ @@ -311,7 +312,7 @@ "\n", "We will be persisting the results of this notebook as two `.csv` files in the `/arcgis/home` folder, which will then also publish to our portal.\n", "\n", - "One `.csv` file (`ALL_URLS.csv`) will contain one row per URL. This file will contain an in-depth, comprehensive look of all secure/insecure URLs and how they related to items. This file is best analyzed by filtering in desktop spreadsheet software, manipulating in a `pandas` DataFrame, etc.\n", + "One `.csv` file (`ALL_URLS.csv`) will contain one row per URL. This file will contain an in-depth, comprehensive look of all secure/insecure URLs and how they are related to items. This file is best analyzed by filtering in desktop spreadsheet software, manipulating in a `pandas` DataFrame, etc.\n", "\n", "The other `.csv` file (`INSECURE_ITEMS.csv`) will contain one row per Item. This will be a useful, 'human-readable' table that will give us a quick insight into what items contain insecure URLs.\n", "\n", @@ -320,7 +321,7 @@ }, { "cell_type": "code", - "execution_count": 10, + "execution_count": 13, "metadata": {}, "outputs": [], "source": [ @@ -329,7 +330,7 @@ }, { "cell_type": "code", - "execution_count": 11, + "execution_count": 47, "metadata": {}, "outputs": [], "source": [ @@ -338,7 +339,11 @@ "all_urls_columns = ['url', 'is_secure', 'item_id', \n", " 'item_title', 'item_url', 'item_type']\n", "\n", - "workspace = \"/arcgis/home\"\n", + "workspace = \"./arcgis/home\"\n", + "\n", + "current_time = time.time()\n", + "formatted_time = time.strftime(\"%Y-%m-%d_%H-%M-%S\", time.localtime(current_time))\n", + "\n", "\n", "if not os.path.exists(workspace):\n", " os.makedirs(workspace)\n", @@ -348,8 +353,8 @@ " filenames. Returns a tuple of the string file paths\n", " (all_urls_path, insecure_items_path)\n", " \"\"\"\n", - " all_urls_path = Path(f'{workspace}/ALL_URLs-{time.ctime()}.csv')\n", - " insecure_items_path = f'{workspace}/INSECURE_ITEMS-{time.ctime()}.csv'\n", + " all_urls_path = f'{workspace}/ALL_URLs-{formatted_time}.csv'\n", + " insecure_items_path = f'{workspace}/INSECURE_ITEMS-{formatted_time}.csv'\n", " for file_path, columns in [(all_urls_path, all_urls_columns),\n", " (insecure_items_path, insecure_items_columns)]:\n", " with open(file_path, 'w') as file:\n", @@ -367,14 +372,14 @@ }, { "cell_type": "code", - "execution_count": 13, + "execution_count": 2, "metadata": {}, "outputs": [], "source": [ "def write_row_to_urls_csv(url, is_secure, item, file_path):\n", " \"\"\"Given any URL from an item we've tested, write a\n", " row to the output 'ALL_URLs.csv', located at `file_path`. This .csv\n", - " will have 1 row per URL, with information such as an `is_secure`\n", + " will have one row per URL, with information such as an `is_secure`\n", " boolean, information about the item that contained the URL, etc.\n", " \"\"\"\n", " with open(file_path, 'a') as file:\n", @@ -396,14 +401,14 @@ }, { "cell_type": "code", - "execution_count": 14, + "execution_count": 16, "metadata": {}, "outputs": [], "source": [ "def write_row_to_insecure_csv(item, https_urls, http_urls, file_path):\n", " \"\"\"Given an insecure item, write a row to the output \n", " 'INSECURE_URLS.csv' file, located at `file_path`. This .csv will \n", - " have 1 row per item, with information such as the item's ID,the \n", + " have one row per item, with information such as the item's ID,the \n", " item's URL, a JSON representation of the list of http_urls and \n", " https_urls, etc.\n", " \"\"\"\n", @@ -430,7 +435,7 @@ }, { "cell_type": "code", - "execution_count": 15, + "execution_count": 17, "metadata": {}, "outputs": [], "source": [ @@ -457,7 +462,7 @@ }, { "cell_type": "code", - "execution_count": 16, + "execution_count": 1, "metadata": {}, "outputs": [], "source": [ @@ -493,7 +498,7 @@ }, { "cell_type": "code", - "execution_count": 17, + "execution_count": 2, "metadata": {}, "outputs": [], "source": [ @@ -515,7 +520,6 @@ " # Test each item, write to the appropriate file\n", " for item in get_items_to_check():\n", " try:\n", - " print(f\"\\rChecking item {item.id}\", end=\"\")\n", " https_urls, http_urls = test_https_for(item)\n", "\n", " # add all the item's URLs to the 'ALL_URLs.csv' output file\n", @@ -534,7 +538,7 @@ " elif https_urls:\n", " secure_items.append(item)\n", " except:\n", - " print(f'unable to process {item}')\n", + " print(f' unable to process {item}')\n", " pass\n", "\n", " # Publish the csv files, display them in the notebook\n", @@ -569,7 +573,7 @@ }, { "cell_type": "code", - "execution_count": 18, + "execution_count": 58, "metadata": { "scrolled": false }, @@ -580,9 +584,8 @@ "text": [ "Notebook is now running, please wait...\n", "-----\n", - "Checking item 8443e3c2473549f0b464a6a3f295acf9unable to process \n", - "Checking item d856d48766744eaa8a45246b3c2599ceunable to process \n", - "Checking item e578814582464021b72b3e15143e43d1" + "item: -- \n", + "item: -- \n" ] }, { @@ -602,23 +605,23 @@ "text/html": [ "
\n", "
\n", - " \n", + " \n", " \n", " \n", "
\n", "\n", "
\n", - " ALL_URLs-Thu Oct 8 16_14_35 2020\n", + " ALL_URLs-2024-05-07_13-38-37\n", " \n", - "
CSV by arcgis_python\n", - "
Last Modified: October 08, 2020\n", + "
CSV by tk_geosaurus\n", + "
Last Modified: May 07, 2024\n", "
0 comments, 0 views\n", "
\n", "
\n", " " ], "text/plain": [ - "" + "" ] }, "metadata": {}, @@ -629,23 +632,23 @@ "text/html": [ "
\n", "
\n", - " \n", + " \n", " \n", " \n", "
\n", "\n", "
\n", - " INSECURE_ITEMS-Thu Oct 8 16_14_35 2020\n", + " INSECURE_ITEMS-2024-05-07_13-38-37\n", " \n", - "
CSV by arcgis_python\n", - "
Last Modified: October 08, 2020\n", + "
CSV by tk_geosaurus\n", + "
Last Modified: May 07, 2024\n", "
0 comments, 0 views\n", "
\n", "
\n", " " ], "text/plain": [ - "" + "" ] }, "metadata": {}, @@ -654,7 +657,7 @@ { "data": { "text/html": [ - "

54 ITEMS USE INSECURE URLs

" + "

0 ITEMS USE INSECURE URLs

" ], "text/plain": [ "" @@ -663,276 +666,6 @@ "metadata": {}, "output_type": "display_data" }, - { - "data": { - "text/html": [ - "
\n", - "
\n", - " \n", - " \n", - " \n", - "
\n", - "\n", - "
\n", - " asdf\n", - " \n", - "
asdfWeb Map by DavidJVitale\n", - "
Last Modified: May 03, 2020\n", - "
0 comments, 17 views\n", - "
\n", - "
\n", - " " - ], - "text/plain": [ - "" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "text/html": [ - "
\n", - "
\n", - " \n", - " \n", - " \n", - "
\n", - "\n", - "
\n", - " frommapviewer2\n", - " \n", - "
Web Map by DavidJVitale\n", - "
Last Modified: May 03, 2020\n", - "
0 comments, 17 views\n", - "
\n", - "
\n", - " " - ], - "text/plain": [ - "" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "text/html": [ - "
\n", - "
\n", - " \n", - " \n", - " \n", - "
\n", - "\n", - "
\n", - " asdf\n", - " \n", - "
asdfWeb Map by DavidJVitale\n", - "
Last Modified: May 03, 2020\n", - "
0 comments, 12 views\n", - "
\n", - "
\n", - " " - ], - "text/plain": [ - "" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "text/html": [ - "
\n", - "
\n", - " \n", - " \n", - " \n", - "
\n", - "\n", - "
\n", - " asdf\n", - " \n", - "
asdfWeb Map by DavidJVitale\n", - "
Last Modified: May 03, 2020\n", - "
0 comments, 12 views\n", - "
\n", - "
\n", - " " - ], - "text/plain": [ - "" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "text/html": [ - "
\n", - "
\n", - " \n", - " \n", - " \n", - "
\n", - "\n", - "
\n", - " asdf\n", - " \n", - "
asdfWeb Map by DavidJVitale\n", - "
Last Modified: May 03, 2020\n", - "
0 comments, 10 views\n", - "
\n", - "
\n", - " " - ], - "text/plain": [ - "" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "text/html": [ - "
\n", - "
\n", - " \n", - " \n", - " \n", - "
\n", - "\n", - "
\n", - " asdf\n", - " \n", - "
asdfWeb Map by DavidJVitale\n", - "
Last Modified: May 03, 2020\n", - "
0 comments, 15 views\n", - "
\n", - "
\n", - " " - ], - "text/plain": [ - "" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "text/html": [ - "
\n", - "
\n", - " \n", - " \n", - " \n", - "
\n", - "\n", - "
\n", - " newstuff\n", - " \n", - "
123Web Map by DavidJVitale\n", - "
Last Modified: May 03, 2020\n", - "
0 comments, 11 views\n", - "
\n", - "
\n", - " " - ], - "text/plain": [ - "" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "text/html": [ - "
\n", - "
\n", - " \n", - " \n", - " \n", - "
\n", - "\n", - "
\n", - " newstuff\n", - " \n", - "
123Web Map by DavidJVitale\n", - "
Last Modified: May 03, 2020\n", - "
0 comments, 11 views\n", - "
\n", - "
\n", - " " - ], - "text/plain": [ - "" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "text/html": [ - "
\n", - "
\n", - " \n", - " \n", - " \n", - "
\n", - "\n", - "
\n", - " newstuff2\n", - " \n", - "
123Web Map by DavidJVitale\n", - "
Last Modified: May 03, 2020\n", - "
0 comments, 11 views\n", - "
\n", - "
\n", - " " - ], - "text/plain": [ - "" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "text/html": [ - "
\n", - "
\n", - " \n", - " \n", - " \n", - "
\n", - "\n", - "
\n", - " asdf\n", - " \n", - "
asdfWeb Map by DavidJVitale\n", - "
Last Modified: May 03, 2020\n", - "
0 comments, 9 views\n", - "
\n", - "
\n", - " " - ], - "text/plain": [ - "" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, { "name": "stdout", "output_type": "stream", @@ -964,7 +697,7 @@ }, { "cell_type": "code", - "execution_count": 19, + "execution_count": 12, "metadata": {}, "outputs": [ { @@ -999,47 +732,47 @@ " \n", " \n", " 0\n", - " https://services.arcgisonline.com/ArcGIS/rest/...\n", + " https://example.com/ArcGIS/rest/...\n", " True\n", " 5d911425a8044bd49f75df77097cc9ea\n", " Python API - Hub demo site\n", - " https://geosaurus.maps.arcgis.com/home/item.ht...\n", + " https://example.com/home/item.ht...\n", " Hub Site Application\n", " \n", " \n", " 1\n", - " https://s3.amazonaws.com/geohub-assets/templat...\n", + " https://example.com/geohub-assets/templat...\n", " True\n", - " 5d911425a8044bd49f75df77097cc9ea\n", + " 5d911425a8044bd49f75df77097cc9e9\n", " Python API - Hub demo site\n", - " https://geosaurus.maps.arcgis.com/home/item.ht...\n", + " https://example.com/home/item.ht...\n", " Hub Site Application\n", " \n", " \n", " 2\n", - " https://s3.amazonaws.com/geohub-assets/templat...\n", + " https://example.com/geohub-assets/templat...\n", " True\n", - " 5d911425a8044bd49f75df77097cc9ea\n", + " 5d911425a8044bd49f75df77097cc9e0\n", " Python API - Hub demo site\n", - " https://geosaurus.maps.arcgis.com/home/item.ht...\n", + " https://example.com/home/item.ht...\n", " Hub Site Application\n", " \n", " \n", " 3\n", - " https://geosaurus.maps.arcgis.com/sharing/rest...\n", + " https://example.com/sharing/rest...\n", " True\n", - " 5d911425a8044bd49f75df77097cc9ea\n", + " 5d911425a8044bd49f75df77097cc9e8\n", " Python API - Hub demo site\n", - " https://geosaurus.maps.arcgis.com/home/item.ht...\n", + " https://example.com/home/item.ht...\n", " Hub Site Application\n", " \n", " \n", " 4\n", " https://developers.arcgis.com/python/\n", " True\n", - " 5d911425a8044bd49f75df77097cc9ea\n", + " 5d911425a8044bd49f75df77097cc9e7\n", " Python API - Hub demo site\n", - " https://geosaurus.maps.arcgis.com/home/item.ht...\n", + " https://example.com/home/item.ht...\n", " Hub Site Application\n", " \n", " \n", @@ -1094,12 +827,12 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "Now that you have a pandas `DataFrame` instance, you can run `query()` on it," + "Now that you have a pandas `DataFrame` instance, you can run `query()` on it" ] }, { "cell_type": "code", - "execution_count": 20, + "execution_count": 14, "metadata": {}, "outputs": [ { @@ -1134,497 +867,47 @@ " \n", " \n", " 182\n", - " http://wms.chartbundle.com/wms\n", + " http://example.com/wms\n", " False\n", - " 10c4a93826d6421baf8b9ec8f92dd736\n", + " 10c4a93826d6421baf8b9ec8f92dd737\n", " asdf\n", - " https://geosaurus.maps.arcgis.com/home/item.ht...\n", + " https://example.com/home/item.ht...\n", " Web Map\n", " \n", " \n", " 184\n", - " http://wms.chartbundle.com/wms\n", + " http://example.com/wms\n", " False\n", - " 55497cebb4784fb19504080dfa44309a\n", + " 55497cebb4784fb19504080dfa44309h\n", " frommapviewer2\n", - " https://geosaurus.maps.arcgis.com/home/item.ht...\n", + " https://example.com/home/item.ht...\n", " Web Map\n", " \n", " \n", " 186\n", - " http://wms.chartbundle.com/wms\n", + " http://example.com/wms\n", " False\n", - " a3bc943978844f5d853c4d61728f26a6\n", + " a3bc943978844f5d853c4d61728f26a7\n", " asdf\n", - " https://geosaurus.maps.arcgis.com/home/item.ht...\n", + " https://example.com/home/item.ht...\n", " Web Map\n", " \n", " \n", " 188\n", - " http://wms.chartbundle.com/wms\n", + " http://example.com/wms\n", " False\n", - " 954c4c4e58f841299d4046df0dcd5101\n", + " 954c4c4e58f841299d4046df0dcd5104\n", " asdf\n", - " https://geosaurus.maps.arcgis.com/home/item.ht...\n", + " https://example.com/home/item.ht...\n", " Web Map\n", " \n", " \n", " 190\n", - " http://wms.chartbundle.com/wms\n", - " False\n", - " 1f8fea087bc946139cdc4dace1180240\n", - " asdf\n", - " https://geosaurus.maps.arcgis.com/home/item.ht...\n", - " Web Map\n", - " \n", - " \n", - " 192\n", - " http://wms.chartbundle.com/wms\n", - " False\n", - " 75011004d6ad42b994a92020306a4590\n", - " asdf\n", - " https://geosaurus.maps.arcgis.com/home/item.ht...\n", - " Web Map\n", - " \n", - " \n", - " 194\n", - " http://wms.chartbundle.com/wms\n", - " False\n", - " 1f0190f6f6b443278e45b799f9cc3779\n", - " newstuff\n", - " https://geosaurus.maps.arcgis.com/home/item.ht...\n", - " Web Map\n", - " \n", - " \n", - " 196\n", - " http://wms.chartbundle.com/wms\n", - " False\n", - " b3b7be136d004ad7a5899f4a417ab825\n", - " newstuff\n", - " https://geosaurus.maps.arcgis.com/home/item.ht...\n", - " Web Map\n", - " \n", - " \n", - " 198\n", - " http://wms.chartbundle.com/wms\n", - " False\n", - " b958b7d5c1944c8b84c6229ccede7a1c\n", - " newstuff2\n", - " https://geosaurus.maps.arcgis.com/home/item.ht...\n", - " Web Map\n", - " \n", - " \n", - " 200\n", - " http://wms.chartbundle.com/wms\n", - " False\n", - " daf95218c8624b6a9b28cd28c774fa4b\n", - " asdf\n", - " https://geosaurus.maps.arcgis.com/home/item.ht...\n", - " Web Map\n", - " \n", - " \n", - " 202\n", - " http://wms.chartbundle.com/wms\n", - " False\n", - " 83d9f743651b44e7be8e436f35dff767\n", - " asdf\n", - " https://geosaurus.maps.arcgis.com/home/item.ht...\n", - " Web Map\n", - " \n", - " \n", - " 204\n", - " http://wms.chartbundle.com/wms\n", - " False\n", - " a534a5010d4547bdaa664639ee711945\n", - " asdf\n", - " https://geosaurus.maps.arcgis.com/home/item.ht...\n", - " Web Map\n", - " \n", - " \n", - " 206\n", - " http://wms.chartbundle.com/wms\n", - " False\n", - " 74bfcf3553a14e468d35bd8523429dcb\n", - " asdf\n", - " https://geosaurus.maps.arcgis.com/home/item.ht...\n", - " Web Map\n", - " \n", - " \n", - " 208\n", - " http://wms.chartbundle.com/wms\n", + " http://example.com/wms\n", " False\n", - " d4551e2dfc5446f5bcb457757a5fa499\n", + " 1f8fea087bc946139cdc4dace1180249\n", " asdf\n", - " https://geosaurus.maps.arcgis.com/home/item.ht...\n", - " Web Map\n", - " \n", - " \n", - " 210\n", - " http://wms.chartbundle.com/wms\n", - " False\n", - " 1168624d041b47af91783d970c2a1448\n", - " asdf2222\n", - " https://geosaurus.maps.arcgis.com/home/item.ht...\n", - " Web Map\n", - " \n", - " \n", - " 212\n", - " http://wms.chartbundle.com/wms\n", - " False\n", - " b2c3561abb7146f2adc137b8e4cb9fef\n", - " wms_from_mapviewer\n", - " https://geosaurus.maps.arcgis.com/home/item.ht...\n", - " Web Map\n", - " \n", - " \n", - " 216\n", - " http://wms.chartbundle.com/wms\n", - " False\n", - " 3b6ff9f724de4fc0bbc4885c11baae35\n", - " testfromnb2\n", - " https://geosaurus.maps.arcgis.com/home/item.ht...\n", - " Web Map\n", - " \n", - " \n", - " 218\n", - " http://wms.chartbundle.com/wms\n", - " False\n", - " 3d176b16fd704c3faaff1ebd96732e89\n", - " testfromnb3\n", - " https://geosaurus.maps.arcgis.com/home/item.ht...\n", - " Web Map\n", - " \n", - " \n", - " 220\n", - " http://wms.chartbundle.com/wms\n", - " False\n", - " 4ff6cb729ed34b498efd46b032bc2b12\n", - " testfromnb4\n", - " https://geosaurus.maps.arcgis.com/home/item.ht...\n", - " Web Map\n", - " \n", - " \n", - " 222\n", - " http://wms.chartbundle.com/wms\n", - " False\n", - " 387eee064ebc4987b688a88b61f537ab\n", - " testfromnb5\n", - " https://geosaurus.maps.arcgis.com/home/item.ht...\n", - " Web Map\n", - " \n", - " \n", - " 224\n", - " http://wms.chartbundle.com/wms\n", - " False\n", - " 869a95ae264c4eec86d9b062d37c740a\n", - " testfromnb6\n", - " https://geosaurus.maps.arcgis.com/home/item.ht...\n", - " Web Map\n", - " \n", - " \n", - " 226\n", - " http://wms.chartbundle.com/wms\n", - " False\n", - " 07e49eb148f84e80ac5475f8014358f2\n", - " testfromnb7\n", - " https://geosaurus.maps.arcgis.com/home/item.ht...\n", - " Web Map\n", - " \n", - " \n", - " 228\n", - " http://wms.chartbundle.com/wms\n", - " False\n", - " 686700f2063c4338a0fb58d7b6641ddf\n", - " testfromnb8\n", - " https://geosaurus.maps.arcgis.com/home/item.ht...\n", - " Web Map\n", - " \n", - " \n", - " 230\n", - " http://wms.chartbundle.com/wms\n", - " False\n", - " 6d8da5722e6b4311ba77e24c1a30eb75\n", - " testfromnb9\n", - " https://geosaurus.maps.arcgis.com/home/item.ht...\n", - " Web Map\n", - " \n", - " \n", - " 232\n", - " http://wms.chartbundle.com/wms\n", - " False\n", - " 7e728b845c8f4a5681047beb28c701f3\n", - " testfromnb10\n", - " https://geosaurus.maps.arcgis.com/home/item.ht...\n", - " Web Map\n", - " \n", - " \n", - " 234\n", - " http://wms.chartbundle.com/wms\n", - " False\n", - " 7c29a361881b4fdd8d1cb24a6304a1ba\n", - " testfromnb11\n", - " https://geosaurus.maps.arcgis.com/home/item.ht...\n", - " Web Map\n", - " \n", - " \n", - " 236\n", - " http://wms.chartbundle.com/wms\n", - " False\n", - " 3947b9d2b82b4da99960a7dec0f833e3\n", - " testfromnb12\n", - " https://geosaurus.maps.arcgis.com/home/item.ht...\n", - " Web Map\n", - " \n", - " \n", - " 238\n", - " http://wms.chartbundle.com/wms\n", - " False\n", - " 80b71124f66b4d89873d51742fcb0d5a\n", - " testfromnb13\n", - " https://geosaurus.maps.arcgis.com/home/item.ht...\n", - " Web Map\n", - " \n", - " \n", - " 240\n", - " http://wms.chartbundle.com/wms\n", - " False\n", - " c6a5894c711942c5b41c97f9666d554b\n", - " testfromnb14\n", - " https://geosaurus.maps.arcgis.com/home/item.ht...\n", - " Web Map\n", - " \n", - " \n", - " 242\n", - " http://wms.chartbundle.com/wms\n", - " False\n", - " 1306c4379bbd480ca7d5f651ecf7506a\n", - " testfromnb15\n", - " https://geosaurus.maps.arcgis.com/home/item.ht...\n", - " Web Map\n", - " \n", - " \n", - " 244\n", - " http://wms.chartbundle.com/wms\n", - " False\n", - " d7cb257c7675434cb2d87d250c90bdce\n", - " testfromnb16\n", - " https://geosaurus.maps.arcgis.com/home/item.ht...\n", - " Web Map\n", - " \n", - " \n", - " 246\n", - " http://wms.chartbundle.com/wms\n", - " False\n", - " f7d86418fa9046e08dd4f4bc8ecc4f59\n", - " testfromnb18\n", - " https://geosaurus.maps.arcgis.com/home/item.ht...\n", - " Web Map\n", - " \n", - " \n", - " 248\n", - " http://wms.chartbundle.com/wms\n", - " False\n", - " 2eeaaadfa5e94cb59cc6738c1fc173f3\n", - " testfromnb19\n", - " https://geosaurus.maps.arcgis.com/home/item.ht...\n", - " Web Map\n", - " \n", - " \n", - " 250\n", - " http://wms.chartbundle.com/wms\n", - " False\n", - " 503f91a4a2624ce6b29263f160bb25a3\n", - " testfromnb20\n", - " https://geosaurus.maps.arcgis.com/home/item.ht...\n", - " Web Map\n", - " \n", - " \n", - " 252\n", - " http://wms.chartbundle.com/wms\n", - " False\n", - " 90b86933a65c4bf9a630df504ab66358\n", - " testfromnb21\n", - " https://geosaurus.maps.arcgis.com/home/item.ht...\n", - " Web Map\n", - " \n", - " \n", - " 254\n", - " http://wms.chartbundle.com/wms\n", - " False\n", - " 5c1a19bd6a2c46449ce49333daabbb8d\n", - " testfromnb22\n", - " https://geosaurus.maps.arcgis.com/home/item.ht...\n", - " Web Map\n", - " \n", - " \n", - " 256\n", - " http://wms.chartbundle.com/wms\n", - " False\n", - " f6d9331a00c948dc9eb7a9f816f88767\n", - " testfromnb23\n", - " https://geosaurus.maps.arcgis.com/home/item.ht...\n", - " Web Map\n", - " \n", - " \n", - " 261\n", - " http://wms.chartbundle.com/wms\n", - " False\n", - " 08e15079ce504ad0b42bade4b61d02c2\n", - " My two WMS layers\n", - " https://geosaurus.maps.arcgis.com/home/item.ht...\n", - " Web Map\n", - " \n", - " \n", - " 264\n", - " http://wms.chartbundle.com/wms\n", - " False\n", - " ace36ae1673c47279a540c8d528f76d6\n", - " My two WMS layers2\n", - " https://geosaurus.maps.arcgis.com/home/item.ht...\n", - " Web Map\n", - " \n", - " \n", - " 268\n", - " http://wms.chartbundle.com/wms\n", - " False\n", - " d31e67d1f59b42aeb969b8e739a039b2\n", - " My two WMS layers\n", - " https://geosaurus.maps.arcgis.com/home/item.ht...\n", - " Web Map\n", - " \n", - " \n", - " 270\n", - " http://wms.chartbundle.com/wms\n", - " False\n", - " cad616c461ce4b9ba0e91312ae8feabc\n", - " WMS Layer from MapView\n", - " https://geosaurus.maps.arcgis.com/home/item.ht...\n", - " Web Map\n", - " \n", - " \n", - " 274\n", - " http://wms.chartbundle.com/wms\n", - " False\n", - " 448c48d1424242b7a0b04c87bfc6a0c2\n", - " WMS Layer from MapView\n", - " https://geosaurus.maps.arcgis.com/home/item.ht...\n", - " Web Map\n", - " \n", - " \n", - " 278\n", - " http://wms.chartbundle.com/wms\n", - " False\n", - " 97cd2ae2b18a4647ab40096d20dd139e\n", - " WMS Layer from MapView\n", - " https://geosaurus.maps.arcgis.com/home/item.ht...\n", - " Web Map\n", - " \n", - " \n", - " 281\n", - " http://wms.chartbundle.com/wms\n", - " False\n", - " db4377cade2243aba30cefb763022786\n", - " WMS Layer from MapView\n", - " https://geosaurus.maps.arcgis.com/home/item.ht...\n", - " Web Map\n", - " \n", - " \n", - " 289\n", - " http://wms.chartbundle.com/wms\n", - " False\n", - " 585bf504346a4e949e28ae5ba71e3985\n", - " WMS Layer from MapView\n", - " https://geosaurus.maps.arcgis.com/home/item.ht...\n", - " Web Map\n", - " \n", - " \n", - " 325\n", - " http://wms.chartbundle.com/wms\n", - " False\n", - " 8f1eaa26f63d4bf1902ab749160e6aa4\n", - " WMS Layer from MapView\n", - " https://geosaurus.maps.arcgis.com/home/item.ht...\n", - " Web Map\n", - " \n", - " \n", - " 335\n", - " http://wms.chartbundle.com/wms\n", - " False\n", - " c72dcb6ad9504bfe9c91a23e9f2be772\n", - " WMS Layer from MapView\n", - " https://geosaurus.maps.arcgis.com/home/item.ht...\n", - " Web Map\n", - " \n", - " \n", - " 345\n", - " http://wms.chartbundle.com/wms\n", - " False\n", - " 06df6fa15e0247ada1eaeb662d9e8b9b\n", - " WMS Layer from MapView\n", - " https://geosaurus.maps.arcgis.com/home/item.ht...\n", - " Web Map\n", - " \n", - " \n", - " 348\n", - " http://wms.chartbundle.com/wms\n", - " False\n", - " 381fbbab34be42178c6cecb0c6feb85f\n", - " WMS Layer from MapView\n", - " https://geosaurus.maps.arcgis.com/home/item.ht...\n", - " Web Map\n", - " \n", - " \n", - " 356\n", - " http://wms.chartbundle.com/wms\n", - " False\n", - " 1e7891ec56a04e058408793c9f59b3b2\n", - " WMS Layer from MapView\n", - " https://geosaurus.maps.arcgis.com/home/item.ht...\n", - " Web Map\n", - " \n", - " \n", - " 358\n", - " http://wms.chartbundle.com/wms\n", - " False\n", - " 3a586c4eab194ac39ba65e86d1a45e4f\n", - " WMS Layer from MapView\n", - " https://geosaurus.maps.arcgis.com/home/item.ht...\n", - " Web Map\n", - " \n", - " \n", - " 409\n", - " http://wms.chartbundle.com/wms\n", - " False\n", - " c2b55d1a6ad54cd58563c8ce042d21e5\n", - " my_new_webmap\n", - " https://geosaurus.maps.arcgis.com/home/item.ht...\n", - " Web Map\n", - " \n", - " \n", - " 411\n", - " http://ows.terrestris.de/osm/service\n", - " False\n", - " 247cdd778ae84e3db211709ae0b0b9e7\n", - " wm_with_wmslayer\n", - " https://geosaurus.maps.arcgis.com/home/item.ht...\n", - " Web Map\n", - " \n", - " \n", - " 412\n", - " http://wms.chartbundle.com/wms\n", - " False\n", - " 247cdd778ae84e3db211709ae0b0b9e7\n", - " wm_with_wmslayer\n", - " https://geosaurus.maps.arcgis.com/home/item.ht...\n", - " Web Map\n", - " \n", - " \n", - " 414\n", - " http://ows.terrestris.de/osm/service\n", - " False\n", - " 28bca916352b464292a8aa5f9bb7d2ff\n", - " wm_with_wmslayer\n", - " https://geosaurus.maps.arcgis.com/home/item.ht...\n", + " https://example.com/home/item.ht...\n", " Web Map\n", " \n", " \n", @@ -1632,176 +915,26 @@ "" ], "text/plain": [ - " url is_secure \\\n", - "182 http://wms.chartbundle.com/wms False \n", - "184 http://wms.chartbundle.com/wms False \n", - "186 http://wms.chartbundle.com/wms False \n", - "188 http://wms.chartbundle.com/wms False \n", - "190 http://wms.chartbundle.com/wms False \n", - "192 http://wms.chartbundle.com/wms False \n", - "194 http://wms.chartbundle.com/wms False \n", - "196 http://wms.chartbundle.com/wms False \n", - "198 http://wms.chartbundle.com/wms False \n", - "200 http://wms.chartbundle.com/wms False \n", - "202 http://wms.chartbundle.com/wms False \n", - "204 http://wms.chartbundle.com/wms False \n", - "206 http://wms.chartbundle.com/wms False \n", - "208 http://wms.chartbundle.com/wms False \n", - "210 http://wms.chartbundle.com/wms False \n", - "212 http://wms.chartbundle.com/wms False \n", - "216 http://wms.chartbundle.com/wms False \n", - "218 http://wms.chartbundle.com/wms False \n", - "220 http://wms.chartbundle.com/wms False \n", - "222 http://wms.chartbundle.com/wms False \n", - "224 http://wms.chartbundle.com/wms False \n", - "226 http://wms.chartbundle.com/wms False \n", - "228 http://wms.chartbundle.com/wms False \n", - "230 http://wms.chartbundle.com/wms False \n", - "232 http://wms.chartbundle.com/wms False \n", - "234 http://wms.chartbundle.com/wms False \n", - "236 http://wms.chartbundle.com/wms False \n", - "238 http://wms.chartbundle.com/wms False \n", - "240 http://wms.chartbundle.com/wms False \n", - "242 http://wms.chartbundle.com/wms False \n", - "244 http://wms.chartbundle.com/wms False \n", - "246 http://wms.chartbundle.com/wms False \n", - "248 http://wms.chartbundle.com/wms False \n", - "250 http://wms.chartbundle.com/wms False \n", - "252 http://wms.chartbundle.com/wms False \n", - "254 http://wms.chartbundle.com/wms False \n", - "256 http://wms.chartbundle.com/wms False \n", - "261 http://wms.chartbundle.com/wms False \n", - "264 http://wms.chartbundle.com/wms False \n", - "268 http://wms.chartbundle.com/wms False \n", - "270 http://wms.chartbundle.com/wms False \n", - "274 http://wms.chartbundle.com/wms False \n", - "278 http://wms.chartbundle.com/wms False \n", - "281 http://wms.chartbundle.com/wms False \n", - "289 http://wms.chartbundle.com/wms False \n", - "325 http://wms.chartbundle.com/wms False \n", - "335 http://wms.chartbundle.com/wms False \n", - "345 http://wms.chartbundle.com/wms False \n", - "348 http://wms.chartbundle.com/wms False \n", - "356 http://wms.chartbundle.com/wms False \n", - "358 http://wms.chartbundle.com/wms False \n", - "409 http://wms.chartbundle.com/wms False \n", - "411 http://ows.terrestris.de/osm/service False \n", - "412 http://wms.chartbundle.com/wms False \n", - "414 http://ows.terrestris.de/osm/service False \n", + " url is_secure \\\n", + "182 http://wms.chartbundle.com/wms False \n", + "184 http://wms.chartbundle.com/wms False \n", + "186 http://wms.chartbundle.com/wms False \n", + "188 http://wms.chartbundle.com/wms False \n", + "190 http://wms.chartbundle.com/wms False \n", "\n", - " item_id item_title \\\n", - "182 10c4a93826d6421baf8b9ec8f92dd736 asdf \n", - "184 55497cebb4784fb19504080dfa44309a frommapviewer2 \n", - "186 a3bc943978844f5d853c4d61728f26a6 asdf \n", - "188 954c4c4e58f841299d4046df0dcd5101 asdf \n", - "190 1f8fea087bc946139cdc4dace1180240 asdf \n", - "192 75011004d6ad42b994a92020306a4590 asdf \n", - "194 1f0190f6f6b443278e45b799f9cc3779 newstuff \n", - "196 b3b7be136d004ad7a5899f4a417ab825 newstuff \n", - "198 b958b7d5c1944c8b84c6229ccede7a1c newstuff2 \n", - "200 daf95218c8624b6a9b28cd28c774fa4b asdf \n", - "202 83d9f743651b44e7be8e436f35dff767 asdf \n", - "204 a534a5010d4547bdaa664639ee711945 asdf \n", - "206 74bfcf3553a14e468d35bd8523429dcb asdf \n", - "208 d4551e2dfc5446f5bcb457757a5fa499 asdf \n", - "210 1168624d041b47af91783d970c2a1448 asdf2222 \n", - "212 b2c3561abb7146f2adc137b8e4cb9fef wms_from_mapviewer \n", - "216 3b6ff9f724de4fc0bbc4885c11baae35 testfromnb2 \n", - "218 3d176b16fd704c3faaff1ebd96732e89 testfromnb3 \n", - "220 4ff6cb729ed34b498efd46b032bc2b12 testfromnb4 \n", - "222 387eee064ebc4987b688a88b61f537ab testfromnb5 \n", - "224 869a95ae264c4eec86d9b062d37c740a testfromnb6 \n", - "226 07e49eb148f84e80ac5475f8014358f2 testfromnb7 \n", - "228 686700f2063c4338a0fb58d7b6641ddf testfromnb8 \n", - "230 6d8da5722e6b4311ba77e24c1a30eb75 testfromnb9 \n", - "232 7e728b845c8f4a5681047beb28c701f3 testfromnb10 \n", - "234 7c29a361881b4fdd8d1cb24a6304a1ba testfromnb11 \n", - "236 3947b9d2b82b4da99960a7dec0f833e3 testfromnb12 \n", - "238 80b71124f66b4d89873d51742fcb0d5a testfromnb13 \n", - "240 c6a5894c711942c5b41c97f9666d554b testfromnb14 \n", - "242 1306c4379bbd480ca7d5f651ecf7506a testfromnb15 \n", - "244 d7cb257c7675434cb2d87d250c90bdce testfromnb16 \n", - "246 f7d86418fa9046e08dd4f4bc8ecc4f59 testfromnb18 \n", - "248 2eeaaadfa5e94cb59cc6738c1fc173f3 testfromnb19 \n", - "250 503f91a4a2624ce6b29263f160bb25a3 testfromnb20 \n", - "252 90b86933a65c4bf9a630df504ab66358 testfromnb21 \n", - "254 5c1a19bd6a2c46449ce49333daabbb8d testfromnb22 \n", - "256 f6d9331a00c948dc9eb7a9f816f88767 testfromnb23 \n", - "261 08e15079ce504ad0b42bade4b61d02c2 My two WMS layers \n", - "264 ace36ae1673c47279a540c8d528f76d6 My two WMS layers2 \n", - "268 d31e67d1f59b42aeb969b8e739a039b2 My two WMS layers \n", - "270 cad616c461ce4b9ba0e91312ae8feabc WMS Layer from MapView \n", - "274 448c48d1424242b7a0b04c87bfc6a0c2 WMS Layer from MapView \n", - "278 97cd2ae2b18a4647ab40096d20dd139e WMS Layer from MapView \n", - "281 db4377cade2243aba30cefb763022786 WMS Layer from MapView \n", - "289 585bf504346a4e949e28ae5ba71e3985 WMS Layer from MapView \n", - "325 8f1eaa26f63d4bf1902ab749160e6aa4 WMS Layer from MapView \n", - "335 c72dcb6ad9504bfe9c91a23e9f2be772 WMS Layer from MapView \n", - "345 06df6fa15e0247ada1eaeb662d9e8b9b WMS Layer from MapView \n", - "348 381fbbab34be42178c6cecb0c6feb85f WMS Layer from MapView \n", - "356 1e7891ec56a04e058408793c9f59b3b2 WMS Layer from MapView \n", - "358 3a586c4eab194ac39ba65e86d1a45e4f WMS Layer from MapView \n", - "409 c2b55d1a6ad54cd58563c8ce042d21e5 my_new_webmap \n", - "411 247cdd778ae84e3db211709ae0b0b9e7 wm_with_wmslayer \n", - "412 247cdd778ae84e3db211709ae0b0b9e7 wm_with_wmslayer \n", - "414 28bca916352b464292a8aa5f9bb7d2ff wm_with_wmslayer \n", + " item_id item_title \\\n", + "182 10c4a93826d6421baf8b9ec8f92dd736 asdf \n", + "184 55497cebb4784fb19504080dfa44309a frommapviewer2 \n", + "186 a3bc943978844f5d853c4d61728f26a6 asdf \n", + "188 954c4c4e58f841299d4046df0dcd5101 asdf \n", + "190 1f8fea087bc946139cdc4dace1180240 asdf \n", "\n", " item_url item_type \n", "182 https://geosaurus.maps.arcgis.com/home/item.ht... Web Map \n", "184 https://geosaurus.maps.arcgis.com/home/item.ht... Web Map \n", "186 https://geosaurus.maps.arcgis.com/home/item.ht... Web Map \n", "188 https://geosaurus.maps.arcgis.com/home/item.ht... Web Map \n", - "190 https://geosaurus.maps.arcgis.com/home/item.ht... Web Map \n", - "192 https://geosaurus.maps.arcgis.com/home/item.ht... Web Map \n", - "194 https://geosaurus.maps.arcgis.com/home/item.ht... Web Map \n", - "196 https://geosaurus.maps.arcgis.com/home/item.ht... Web Map \n", - "198 https://geosaurus.maps.arcgis.com/home/item.ht... Web Map \n", - "200 https://geosaurus.maps.arcgis.com/home/item.ht... Web Map \n", - "202 https://geosaurus.maps.arcgis.com/home/item.ht... Web Map \n", - "204 https://geosaurus.maps.arcgis.com/home/item.ht... Web Map \n", - "206 https://geosaurus.maps.arcgis.com/home/item.ht... Web Map \n", - "208 https://geosaurus.maps.arcgis.com/home/item.ht... Web Map \n", - "210 https://geosaurus.maps.arcgis.com/home/item.ht... Web Map \n", - "212 https://geosaurus.maps.arcgis.com/home/item.ht... Web Map \n", - "216 https://geosaurus.maps.arcgis.com/home/item.ht... Web Map \n", - "218 https://geosaurus.maps.arcgis.com/home/item.ht... Web Map \n", - "220 https://geosaurus.maps.arcgis.com/home/item.ht... Web Map \n", - "222 https://geosaurus.maps.arcgis.com/home/item.ht... Web Map \n", - "224 https://geosaurus.maps.arcgis.com/home/item.ht... Web Map \n", - "226 https://geosaurus.maps.arcgis.com/home/item.ht... Web Map \n", - "228 https://geosaurus.maps.arcgis.com/home/item.ht... Web Map \n", - "230 https://geosaurus.maps.arcgis.com/home/item.ht... Web Map \n", - "232 https://geosaurus.maps.arcgis.com/home/item.ht... Web Map \n", - "234 https://geosaurus.maps.arcgis.com/home/item.ht... Web Map \n", - "236 https://geosaurus.maps.arcgis.com/home/item.ht... Web Map \n", - "238 https://geosaurus.maps.arcgis.com/home/item.ht... Web Map \n", - "240 https://geosaurus.maps.arcgis.com/home/item.ht... Web Map \n", - "242 https://geosaurus.maps.arcgis.com/home/item.ht... Web Map \n", - "244 https://geosaurus.maps.arcgis.com/home/item.ht... Web Map \n", - "246 https://geosaurus.maps.arcgis.com/home/item.ht... Web Map \n", - "248 https://geosaurus.maps.arcgis.com/home/item.ht... Web Map \n", - "250 https://geosaurus.maps.arcgis.com/home/item.ht... Web Map \n", - "252 https://geosaurus.maps.arcgis.com/home/item.ht... Web Map \n", - "254 https://geosaurus.maps.arcgis.com/home/item.ht... Web Map \n", - "256 https://geosaurus.maps.arcgis.com/home/item.ht... Web Map \n", - "261 https://geosaurus.maps.arcgis.com/home/item.ht... Web Map \n", - "264 https://geosaurus.maps.arcgis.com/home/item.ht... Web Map \n", - "268 https://geosaurus.maps.arcgis.com/home/item.ht... Web Map \n", - "270 https://geosaurus.maps.arcgis.com/home/item.ht... Web Map \n", - "274 https://geosaurus.maps.arcgis.com/home/item.ht... Web Map \n", - "278 https://geosaurus.maps.arcgis.com/home/item.ht... Web Map \n", - "281 https://geosaurus.maps.arcgis.com/home/item.ht... Web Map \n", - "289 https://geosaurus.maps.arcgis.com/home/item.ht... Web Map \n", - "325 https://geosaurus.maps.arcgis.com/home/item.ht... Web Map \n", - "335 https://geosaurus.maps.arcgis.com/home/item.ht... Web Map \n", - "345 https://geosaurus.maps.arcgis.com/home/item.ht... Web Map \n", - "348 https://geosaurus.maps.arcgis.com/home/item.ht... Web Map \n", - "356 https://geosaurus.maps.arcgis.com/home/item.ht... Web Map \n", - "358 https://geosaurus.maps.arcgis.com/home/item.ht... Web Map \n", - "409 https://geosaurus.maps.arcgis.com/home/item.ht... Web Map \n", - "411 https://geosaurus.maps.arcgis.com/home/item.ht... Web Map \n", - "412 https://geosaurus.maps.arcgis.com/home/item.ht... Web Map \n", - "414 https://geosaurus.maps.arcgis.com/home/item.ht... Web Map " + "190 https://geosaurus.maps.arcgis.com/home/item.ht... Web Map " ] }, "metadata": {}, @@ -1810,7 +943,7 @@ ], "source": [ "if df is not None:\n", - " display(df.query(\"is_secure == False\"))" + " display(df.query(\"is_secure == False\").head())" ] }, { @@ -1822,24 +955,24 @@ }, { "cell_type": "code", - "execution_count": 21, + "execution_count": 15, "metadata": {}, "outputs": [ { "data": { "text/plain": [ - "0 5d911425a8044bd49f75df77097cc9ea\n", - "5 8ec563a6886f474c8d991e7748ab4c03\n", - "16 cd64fa448d7645849a2e624ff56fc15a\n", - "26 43f9a76b53054b8d9c0bb5b887744c5c\n", - "29 e43a6ca6678d4288b5947bea032d5460\n", + "0 5d911425a8044bd49f75df77097cc9e9\n", + "5 8ec563a6886f474c8d991e7748ab4c05\n", + "16 cd64fa448d7645849a2e624ff56fc15d\n", + "26 43f9a76b53054b8d9c0bb5b887744c5g\n", + "29 e43a6ca6678d4288b5947bea032d5462\n", " ... \n", - "471 6b6673c0160e45599fef82ae80f357ed\n", - "484 25181cd7a0c9411f9a7e7aec410b39f1\n", - "492 badb4e6fa24e42d88742e8ae154315b4\n", - "498 6daf908e54e5417eb9e7929d06ecbe19\n", - "500 ce3d58cace8a49219190c94cf0908f65\n", - "Name: item_id, Length: 185, dtype: object" + "483 6b6673c0160e45599fef82ae80f357eh\n", + "496 25181cd7a0c9411f9a7e7aec410b39f4\n", + "504 badb4e6fa24e42d88742e8ae154315b3\n", + "510 6daf908e54e5417eb9e7929d06ecbe18\n", + "512 ce3d58cace8a49219190c94cf0908f66\n", + "Name: item_id, Length: 190, dtype: object" ] }, "metadata": {}, @@ -1869,12 +1002,7 @@ "```\n", "\n", "You can then use a lot of the remaining functionality of this notebook to check to make sure that your items would not be affected by turning off the old ArcGIS Server.\n", - "\n", - "### Related Notebooks\n", - "\n", - "For related notebooks, search for the following in your samples notebook gallery:\n", - "\n", - "- Check WebMaps for Broken URLs\n" + "\n" ] } ], @@ -1884,7 +1012,7 @@ "notebookRuntimeVersion": "9.0" }, "kernelspec": { - "display_name": "Python 3", + "display_name": "Python 3 (ipykernel)", "language": "python", "name": "python3" }, @@ -1898,7 +1026,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.7.9" + "version": "3.10.13" }, "toc": { "base_numbering": 1,