Metadata-Version: 2.1
Name: sunpy-soar
Version: 1.0b1
Summary: A sunpy plugin for accessing data in the Solar Orbiter Archive (SOAR).
Home-page: UNKNOWN
Author: David Stansby
Author-email: d.stansby@ucl.ac.uk
License: BSD-2
Description: sunpy-soar
        ==========
        
        A sunpy plugin for accessing data in the Solar Orbiter Archive (SOAR).
        
        |build-status| |coverage|
        
        .. |build-status| image:: https://github.com/dstansby/sunpy-soar/actions/workflows/python-test.yml/badge.svg
            :alt: build status
        
        
        .. |coverage| image:: https://codecov.io/gh/dstansby/sunpy-soar/branch/main/graph/badge.svg?token=5NKZHBX3AW
           :target: https://codecov.io/gh/dstansby/sunpy-soar
           :alt: code coverage
        
        Installation
        ------------
        
        .. code-block:: bash
        
           pip install sunpy-soar
        
        Example usage
        -------------
        
        .. code-block:: python
        
           # Importing sunpy_soar registers the client with sunpy
           import sunpy_soar
           from sunpy.net import Fido
        
           from sunpy.net.attrs import Instrument, Level, Time
           from sunpy_soar.attrs import Identifier
        
           instrument = Instrument('EUI')
           time = Time('2020-02-01', '2021-02-02')
           level = a.Level(1)
           identifier = Identifier('EUI-FSI174-IMAGE')
        
           res = Fido.search(instrument, time, level, identifier)
           print(res)
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: BSD License
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Topic :: Scientific/Engineering :: Physics
Provides-Extra: tests
