removed pandas

This commit is contained in:
seangreaves
2023-01-07 18:38:11 +00:00
parent 3da6400606
commit ec030ba1bf

View File

@@ -16,7 +16,7 @@
"outputs": [],
"source": [
"from sugartrail import mapview, api, base\n",
"import pandas as pd\n",
"# import pandas as pd\n",
"import ipywidgets as widgets\n",
"from IPython.display import display, HTML\n",
"import requests"
@@ -126,12 +126,12 @@
"\n",
"def init_network():\n",
" init_button.disabled=True\n",
"# api.basic_auth.username = API_input.value\n",
" response = api.get_company(str(company_text.value))\n",
" network.company_id = str(company_text.value)\n",
" response = api.get_company(network.company_id)\n",
" company_text.disabled=True\n",
" if response:\n",
"# network.company_id = str(company_text.value)\n",
" network = base.Network(company=str(company_text.value))\n",
"# network = base.Network(company=str(company_text.value))\n",
" init_status.value = u'\\u2705: Initialisation successful for ' + str(response['company_name']) \n",
" depth_selector.disabled = False\n",
" generate_network_button.disabled = False\n",