1414__all__ = ['SvoFpsClass' , 'SvoFps' ]
1515
1616# Valid query parameters taken from
17- # http ://svo2.cab.inta-csic.es/theory/fps/index.php?mode=voservice
17+ # https ://svo2.cab.inta-csic.es/theory/fps/index.php?mode=voservice
1818_params_with_range = {"WavelengthRef" , "WavelengthMean" , "WavelengthEff" ,
1919 "WavelengthMin" , "WavelengthMax" , "WidthEff" , "FWHM" }
2020QUERY_PARAMETERS = _params_with_range .copy ()
@@ -45,7 +45,7 @@ def data_from_svo(self, query, *, cache=True, timeout=None,
4545 Used to create a HTTP query string i.e. send to SVO FPS to get data.
4646 In dictionary, specify keys as search parameters (str) and
4747 values as required. Description of search parameters can be found at
48- http ://svo2.cab.inta-csic.es/theory/fps/index.php?mode=voservice
48+ https ://svo2.cab.inta-csic.es/theory/fps/index.php?mode=voservice
4949 error_msg : str, optional
5050 Error message to be shown in case no table element found in the
5151 responded VOTable. Use this to make error message verbose in context
@@ -65,7 +65,7 @@ def data_from_svo(self, query, *, cache=True, timeout=None,
6565 f"parameter{ 's' if len (bad_params ) > 1 else '' } "
6666 f"{ ', ' .join (bad_params )} { 'are' if len (bad_params ) > 1 else 'is' } "
6767 f"invalid. For a description of valid query parameters see "
68- "http ://svo2.cab.inta-csic.es/theory/fps/index.php?mode=voservice"
68+ "https ://svo2.cab.inta-csic.es/theory/fps/index.php?mode=voservice"
6969 )
7070 response = self ._request ("GET" , self .SVO_MAIN_URL , params = query ,
7171 timeout = timeout or self .TIMEOUT ,
0 commit comments