Skip to content

Commit 4d23feb

Browse files
committed
Update URLs
1 parent 56ee8f2 commit 4d23feb

16 files changed

+58
-58
lines changed

CONTRIBUTING.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Contributing to Astroquery
33
The first official release of astroquery occurred in September 2013.
44

55
Please see `astropy's contributing guildelines
6-
<http://www.astropy.org/contribute.html>`__ for a general guide to the
6+
<https://www.astropy.org/contribute.html>`__ for a general guide to the
77
workflow involving git, etc. Everything below is astroquery-specific.
88

99
We strongly encourage draft pull requests to be opened early in development.
@@ -73,4 +73,4 @@ handling.
7373

7474
.. _astroquery API: docs/api.rst
7575
.. _template: docs/template.rst
76-
.. _requests: http://docs.python-requests.org/en/master/
76+
.. _requests: https://docs.python-requests.org/en/latest/

README.rst

+7-7
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
Accessing Online Astronomical Data
2626
==================================
2727

28-
Astroquery is an `astropy <http://www.astropy.org>`_ affiliated package that
28+
Astroquery is an `astropy <https://www.astropy.org>`_ affiliated package that
2929
contains a collection of tools to access online Astronomical data. Each web
3030
service has its own sub-package. For example, to interface with the `SIMBAD
3131
website <https://simbad.cds.unistra.fr/simbad/>`_, use the ``simbad`` sub-package:
@@ -47,12 +47,12 @@ As an `astropy`_ affiliate, astroquery requires `astropy`_ version 4.2.1 or late
4747

4848
astroquery uses the `requests <https://requests.readthedocs.io/en/latest/>`_
4949
module to communicate with the internet. `BeautifulSoup
50-
<http://www.crummy.com/software/BeautifulSoup/>`_ and `html5lib'
50+
<https://www.crummy.com/software/BeautifulSoup/>`_ and `html5lib'
5151
<https://html5lib.readthedocs.io/en/latest/>`_ are needed for HTML parsing for
5252
some services. The `keyring <https://pypi.python.org/pypi/keyring>`_ module is
5353
also required for accessing services that require a login. These can all be
5454
installed using `pip <https://pypi.python.org/pypi/pip>`_ or `anaconda
55-
<http://continuum.io/>`_. Running the tests requires `curl
55+
<https://www.anaconda.com/>`_. Running the tests requires `curl
5656
<https://curl.haxx.se/>`_ to be installed.
5757

5858
The latest version of astroquery can be pip installed (note the ``--pre`` for
@@ -107,7 +107,7 @@ Citing Astroquery
107107
-----------------
108108

109109
If you use ``astroquery``, please cite the paper we published in `The
110-
Astronomical Journal <http://adsabs.harvard.edu/abs/2019AJ....157...98G>`__.
110+
Astronomical Journal <https://adsabs.harvard.edu/abs/2019AJ....157...98G>`__.
111111

112112
The BibTeX entry is available from the package itself::
113113

@@ -133,8 +133,8 @@ Maintained by `Adam Ginsburg`_ and `Brigitta Sipocz <https://github.com/bsipocz>
133133
.. _Download Stable ZIP: https://github.com/astropy/astroquery/zipball/stable
134134
.. _Download Stable TAR: https://github.com/astropy/astroquery/tarball/stable
135135
.. _View on Github: https://github.com/astropy/astroquery/
136-
.. _Documentation: http://astroquery.readthedocs.io
136+
.. _Documentation: https://astroquery.readthedocs.io
137137
138-
.. _Adam Ginsburg: http://www.adamgginsburg.com
138+
.. _Adam Ginsburg: https://www.adamgginsburg.com
139139
.. _Blog: http://astropy.org/astroquery-blog
140-
.. _API: http://astroquery.readthedocs.io/en/latest/api.html
140+
.. _API: https://astroquery.readthedocs.io/en/latest/api.html

ah_bootstrap.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -846,7 +846,7 @@ def run_cmd(cmd):
846846
except ValueError:
847847
# Due to an OSX oddity locale.getdefaultlocale() can also crash
848848
# depending on the user's locale/language settings. See:
849-
# http://bugs.python.org/issue18378
849+
# https://bugs.python.org/issue18378
850850
stdio_encoding = 'latin1'
851851

852852
# Unlikely to fail at this point but even then let's be flexible

astroquery/CITATION

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,6 @@ archivePrefix = "arXiv",
2626
eid = {98},
2727
pages = {98},
2828
doi = {10.3847/1538-3881/aafc33},
29-
adsurl = {http://adsabs.harvard.edu/abs/2019AJ....157...98G},
29+
adsurl = {https://adsabs.harvard.edu/abs/2019AJ....157...98G},
3030
adsnote = {Provided by the SAO/NASA Astrophysics Data System}
3131
}

astroquery/alma/core.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1021,7 +1021,7 @@ def get_cycle0_uid_contents(self, uid):
10211021
List the file contents of a UID from Cycle 0. Will raise an error
10221022
if the UID is from cycle 1+, since those data have been released in
10231023
a different and more consistent format. See
1024-
http://almascience.org/documents-and-tools/cycle-2/ALMAQA2Productsv1.01.pdf
1024+
https://almascience.org/documents-and-tools/cycle-2/ALMAQA2Productsv1.01.pdf
10251025
for details.
10261026
"""
10271027

astroquery/atomic/core.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ def query_object(self, *, wavelength_range=None, wavelength_type=None, wavelengt
147147
148148
References
149149
----------
150-
.. [1] http://www.pa.uky.edu/~peter/atomic/instruction.html
150+
.. [1] https://linelist.pa.uky.edu/atomic/instruction.html
151151
"""
152152
response = self.query_object_async(
153153
wavelength_range=wavelength_range, wavelength_type=wavelength_type,

astroquery/besancon/__init__.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Besancon Query Tool
44
-------------------
55
A tool to query the Besancon model of the galaxy
6-
http://model.obs-besancon.fr/
6+
https://model.obs-besancon.fr/
77
88
:Author: Adam Ginsburg ([email protected])
99
"""
@@ -21,7 +21,7 @@ class Conf(_config.ConfigNamespace):
2121
],
2222
'Besancon download URL. Changed to modele2003 in 2013.')
2323
model_form = _config.ConfigItem(
24-
['http://model.obs-besancon.fr/modele_form.php'],
24+
['https://model.obs-besancon.fr/modele_form.php'],
2525
'Besancon model form URL')
2626
ping_delay = _config.ConfigItem(
2727
30.0,

astroquery/besancon/core.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ def _parse_args(self, glon, glat, email, *, smallfield=True, extinction=0.7,
182182
"""
183183
Perform a query on the Besancon model of the galaxy.
184184
185-
http://model.obs-besancon.fr/
185+
https://model.obs-besancon.fr/
186186
187187
Parameters
188188
----------

astroquery/cadc/tests/test_cadctap.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -368,7 +368,7 @@ def __init__(self, **param_dict):
368368
def test_exec_sync(tmp_path):
369369
# save results in a file
370370
# create the VOTable result
371-
# example from http://docs.astropy.org/en/stable/io/votable/
371+
# example from https://docs.astropy.org/en/stable/io/votable/
372372
votable = VOTableFile()
373373
resource = Resource()
374374
votable.resources.append(resource)

astroquery/cds/__init__.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
88
This package is for querying the CDS MOC service, primarily hosted at:
99
10-
* http://alasky.unistra.fr/MocServer/query
11-
* http://alaskybis.unistra.fr/MocServer/query (mirror)
10+
* https://alasky.unistra.fr/MocServer/query
11+
* https://alaskybis.unistra.fr/MocServer/query (mirror)
1212
1313
Note: If the access to MOCs with the MOCServer tool was helpful for your research
1414
work, the following acknowledgment would be appreciated::

astroquery/query.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -316,7 +316,7 @@ def _request(self, method, url,
316316
Optional, if specified, overrides global cache settings.
317317
verify : bool
318318
Verify the server's TLS certificate?
319-
(see http://docs.python-requests.org/en/master/_modules/requests/sessions/?highlight=verify)
319+
(see https://docs.python-requests.org/en/master/_modules/requests/sessions/?highlight=verify)
320320
continuation : bool
321321
If the file is partly downloaded to the target location, this
322322
parameter will try to continue the download where it left off.

astroquery/utils/process_asyncs.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ def async_to_sync(cls):
1313
Convert all query_x_async methods to query_x methods
1414
1515
(see
16-
http://stackoverflow.com/questions/18048341/add-methods-to-a-class-generated-from-other-methods
16+
https://stackoverflow.com/questions/18048341/add-methods-to-a-class-generated-from-other-methods
1717
for help understanding)
1818
"""
1919

astroquery/utils/timer.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -308,7 +308,7 @@ def plot(self, *, xscale='linear', yscale='linear', xlabeltext='args',
308308
save_as=''): # pragma: no cover
309309
"""Plot prediction.
310310
311-
.. note:: Uses `matplotlib <http://matplotlib.org/>`_.
311+
.. note:: Uses `matplotlib <https://matplotlib.org/>`_.
312312
313313
Parameters
314314
----------

docs/index.rst

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Astroquery
22
==========
33

44
This is the documentation for the Astroquery coordinated package of `astropy
5-
<http://www.astropy.org>`__.
5+
<https://www.astropy.org>`__.
66

77
Code and issue tracker are on `GitHub <https://github.com/astropy/astroquery>`_.
88

@@ -99,8 +99,8 @@ Astroquery works with Python 3.7 or later.
9999

100100
The following packages are required for astroquery installation & use:
101101

102-
* `numpy <http://www.numpy.org>`_ >= 1.18
103-
* `astropy <http://www.astropy.org>`__ (>=4.2.1)
102+
* `numpy <https://numpy.org>`_ >= 1.18
103+
* `astropy <https://www.astropy.org>`__ (>=4.2.1)
104104
* `pyVO`_ (>=1.1)
105105
* `requests <https://requests.readthedocs.io/en/latest/>`_
106106
* `keyring <https://pypi.python.org/pypi/keyring>`_

docs/template.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ module for a new online service.
77
:language: python
88

99

10-
.. _Madhura Parikh: http://github.com/jdnc
10+
.. _Madhura Parikh: https://github.com/jdnc

0 commit comments

Comments
 (0)