Metadata-Version: 2.1
Name: gwdatafind
Version: 1.0.2
Summary: The client library for the LIGO Data Replicator (LDR) service.
Home-page: https://gwdatafind.readthedocs.io/
Author: Duncan Macleod
Author-email: duncan.macleod@ligo.org
License: GPLv3
Description: # GWDataFind
        
        The client library for the LIGO Data Replicator (LDR) service.
        
        The DataFind service allows users to query for the location of
        Gravitational-Wave Frame (GWF) files containing data from the current
        gravitational-wave detectors.
        
        [![PyPI version](https://badge.fury.io/py/gwdatafind.svg)](http://badge.fury.io/py/gwdatafind)
        [![Pipeline status](https://git.ligo.org/lscsoft/gwdatafind/badges/master/pipeline.svg)](https://git.ligo.org/lscsoft/gwdatafind/commits/master)
        [![License](https://img.shields.io/pypi/l/gwdatafind.svg)](https://choosealicense.com/licenses/gpl-3.0/)
        [![Documentation status](https://readthedocs.org/projects/gwdatafind/badge/?version=latest)](https://gwdatafind.readthedocs.io/en/latest/?badge=latest)
        
        ## Installation
        
        The simplest installation is via `pip`:
        
        ```bash
        python -m pip install gwdatafind
        ```
        
        This package is also available as a Conda package:
        
        ```bash
        conda install -c conda-forge gwdatafind
        ```
        
        ## Basic Usage
        
        To find the URLs of all `H1_R` files for the LIGO-Hanford observatory in
        a given GPS interval:
        
        ```python
        >>> from gwdatafind import connect
        >>> conn = connect()
        >>> conn.find_urls('H', 'H1_R', 1198800018, 1198800618)
        ```
        
        This can be shortened for single interactions to
        
        ```python
        >>> from gwdatafind import find_urls
        >>> find_urls('H', 'H1_R', 1198800018, 1198800618)
        ```
        
        ## On the command-line
        
        GWDataFind can also be executed via the command-line client, for full details
        run
        
        ```bash
        $ python -m gwdatafind --help
        ```
        
        For more documentation, see gwdatafind.readthedocs.org.
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Natural Language :: English
Classifier: Operating System :: Unix
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Topic :: Scientific/Engineering
Classifier: Topic :: Scientific/Engineering :: Astronomy
Classifier: Topic :: Scientific/Engineering :: Physics
Description-Content-Type: text/markdown
