File tree Expand file tree Collapse file tree 3 files changed +0
-57
lines changed
Expand file tree Collapse file tree 3 files changed +0
-57
lines changed Original file line number Diff line number Diff line change 1- # Check SSL limitations
2- import sys
3- sys .path .append ('.' ) # Ensure the current directory is in the path
4- try :
5- from ssl_utils import disable_ssl_verification
6- disable_ssl_verification ()
7- except ImportError :
8- import ssl
9- import warnings
10- import urllib3
11-
12- # Fallback if ssl_utils.py is not available
13- warnings .filterwarnings ('ignore' , message = 'Unverified HTTPS request' )
14- urllib3 .disable_warnings (urllib3 .exceptions .InsecureRequestWarning )
15- try :
16- ssl ._create_default_https_context = ssl ._create_unverified_context
17- except AttributeError :
18- pass
19-
201# Import necessary libraries
212import leafmap .foliumap as leafmap
223import geopandas as gpd
Original file line number Diff line number Diff line change 1- # Check SSL limitations
2- import sys
3- sys .path .append ('.' ) # Ensure the current directory is in the path
4- try :
5- from ssl_utils import disable_ssl_verification
6- disable_ssl_verification ()
7- except ImportError :
8- import ssl
9- import warnings
10- import urllib3
11-
12- # Fallback if ssl_utils.py is not available
13- warnings .filterwarnings ('ignore' , message = 'Unverified HTTPS request' )
14- urllib3 .disable_warnings (urllib3 .exceptions .InsecureRequestWarning )
15- try :
16- ssl ._create_default_https_context = ssl ._create_unverified_context
17- except AttributeError :
18- pass
19-
201# Import necessary libraries
212import folium
223from folium .plugins import MiniMap , Fullscreen
Original file line number Diff line number Diff line change 1- # Check SSL limitations
2- import sys
3- sys .path .append ('.' ) # Ensure the current directory is in the path
4- try :
5- from ssl_utils import disable_ssl_verification
6- disable_ssl_verification ()
7- except ImportError :
8- import ssl
9- import warnings
10- import urllib3
11-
12- # Fallback if ssl_utils.py is not available
13- warnings .filterwarnings ('ignore' , message = 'Unverified HTTPS request' )
14- urllib3 .disable_warnings (urllib3 .exceptions .InsecureRequestWarning )
15- try :
16- ssl ._create_default_https_context = ssl ._create_unverified_context
17- except AttributeError :
18- pass
19-
201# Import necessary libraries
212import common
223import folium
You can’t perform that action at this time.
0 commit comments