-
-
Notifications
You must be signed in to change notification settings - Fork 53
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
27 changed files
with
4,688 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
# Licensed under a 3-clause BSD style license - see LICENSE.rst | ||
""" | ||
This subpackage provides classes to communicate with other applications via the | ||
`Simple Application Messaging Protocal (SAMP) | ||
<http://www.ivoa.net/documents/SAMP/>`_. | ||
Before integration into Astropy (and later PyVO), it was known as | ||
`SAMPy <https://pypi.org/project/sampy/>`_, and was developed by Luigi Paioro | ||
(INAF - Istituto Nazionale di Astrofisica). | ||
""" | ||
|
||
from .constants import * | ||
from .errors import * | ||
from .utils import * | ||
from .hub import * | ||
from .client import * | ||
from .integrated_client import * | ||
from .hub_proxy import * | ||
|
||
|
||
from astropy import config as _config | ||
|
||
|
||
class Conf(_config.ConfigNamespace): | ||
""" | ||
Configuration parameters for `pyvo.astropy_samp`. | ||
""" | ||
|
||
use_internet = _config.ConfigItem( | ||
True, | ||
"Whether to allow `pyvo.astropy_samp` to use " | ||
"the internet, if available.", | ||
aliases=['pyvo.astropy_samp.utils.use_internet']) | ||
|
||
n_retries = _config.ConfigItem(10, | ||
"How many times to retry communications when they fail") | ||
|
||
|
||
conf = Conf() |
Oops, something went wrong.