File: __init__.py

package info (click to toggle)
astroquery 0.4.11%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 26,524 kB
  • sloc: python: 53,595; xml: 36,604; makefile: 140; ansic: 69
file content (20 lines) | stat: -rw-r--r-- 467 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# Licensed under a 3-clause BSD style license - see LICENSE.rst
from astropy import config as _config


class Conf(_config.ConfigNamespace):
    """
    Configuration parameters for `astroquery.skyview`.
    """
    url = _config.ConfigItem(
        'https://skyview.gsfc.nasa.gov/current/cgi/basicform.pl',
        'SkyView URL')


conf = Conf()

from .core import SkyView, SkyViewClass

__all__ = ['SkyView', 'SkyViewClass',
           'Conf', 'conf',
           ]