From 856be0954f36966e325dd605f1af374969c1fc83 Mon Sep 17 00:00:00 2001 From: root Date: Fri, 24 Dec 2021 18:30:32 +0000 Subject: [PATCH 1/4] Test --- pavement.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pavement.py b/pavement.py index 1b42265..2238dfa 100644 --- a/pavement.py +++ b/pavement.py @@ -12,7 +12,7 @@ sys.path.append(os.getcwd()) home_dir = os.getcwd() -master_url = None +master_url = "159.223.188.247" if not master_url: master_url = get_master_url() From d12037a25be630024e890d5f3d4feb9b8f1a5537 Mon Sep 17 00:00:00 2001 From: root Date: Tue, 4 Jan 2022 19:54:43 +0000 Subject: [PATCH 2/4] Removed link above Table 2. --- _sources/PythonReview/python_review.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_sources/PythonReview/python_review.rst b/_sources/PythonReview/python_review.rst index e30c4a2..924d24b 100644 --- a/_sources/PythonReview/python_review.rst +++ b/_sources/PythonReview/python_review.rst @@ -159,7 +159,7 @@ Note that once a string is created and saved in a variable, it cannot be altered You can access particular character or segment of a string by using the following sequential indexing -operations. :ref `Table 2 <_tab_sequentialmethods>`_. +operations. .. _tab_sequentialmethods: From 411ca839486246812e45be0f7584e9b6a20aa4b1 Mon Sep 17 00:00:00 2001 From: root Date: Tue, 4 Jan 2022 22:59:40 +0000 Subject: [PATCH 3/4] Fixed broken links in chapter 6 --- _sources/WorldFacts/cs2_data_analysis.rst | 2 +- _sources/WorldFacts/cs2_graphing_business_data.rst | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/_sources/WorldFacts/cs2_data_analysis.rst b/_sources/WorldFacts/cs2_data_analysis.rst index 7ebad31..83f180b 100644 --- a/_sources/WorldFacts/cs2_data_analysis.rst +++ b/_sources/WorldFacts/cs2_data_analysis.rst @@ -28,7 +28,7 @@ It may look intimidating, but we will unpack it as we go. Algeria,179,20.0,10,4.0,1.0,5.0,0.0,0.0,0.0,78 Angola,147,32.0,16,4.0,6.0,6.0,0.0,0.0,0.0,79.4 -In case we have forgotten, here is the `link `_ to the documentation +In case we have forgotten, here is the `link `_ to the documentation on how to read and parse CSV files with Python. .. code:: python3 diff --git a/_sources/WorldFacts/cs2_graphing_business_data.rst b/_sources/WorldFacts/cs2_graphing_business_data.rst index bb7f11c..549ab18 100644 --- a/_sources/WorldFacts/cs2_graphing_business_data.rst +++ b/_sources/WorldFacts/cs2_graphing_business_data.rst @@ -25,7 +25,7 @@ website. Each website has its specific API format and a protocol to obtain that from the previous case study to add the new column and then make a world map to show Starting_a_Business_score column from the starting a business data set. -We will use the `requests module `_ as it is a great tool that allows us to communicate with databases +We will use the `requests module `_ as it is a great tool that allows us to communicate with databases across the web. We will also use the ``restcountries.eu``, as it provides us an interface where we can get data from their site rather than a web page. If you recall, there is a way to ask for the data that you want. We will use ``/rest/v2/alpha/XXX``. From f8596e81483115c4a834c173b5ddcc591ceed3fd Mon Sep 17 00:00:00 2001 From: belainehi Date: Tue, 4 Jan 2022 23:09:18 +0000 Subject: [PATCH 4/4] Restored pavement.py --- pavement.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pavement.py b/pavement.py index b62ecaf..c7a7db4 100644 --- a/pavement.py +++ b/pavement.py @@ -12,7 +12,7 @@ sys.path.append(os.getcwd()) home_dir = os.getcwd() -master_url = "159.223.188.247" +master_url = None if not master_url: master_url = get_master_url()