Metadata-Version: 2.1
Name: ecmwflibs
Version: 0.3.13
Summary: Wraps ECMWF tools (experimental)
Home-page: https://github.com/ecmwf/ecmwflibs
Author: ECMWF
Author-email: software.support@ecmwf.int
License: Apache 2.0
Description: # ecmwflibs
        
        A Python package that wraps some of ECMWF libraries to be used by Python interfaces to ECMWF software.
        
        The snippet of code below should return the path to the *ecCodes* shared library.
        
        ```python
        import ecmwflibs
        lib = ecmwflibs.find("eccodes")
        ```
        
        You can  get the versions of libraries:
        
        ```python
        import ecmwflibs
        print(ecmwflibs.versions())
        {'eccodes': '2.19.0', 'magics': '4.4.3', 'ecmwflibs': '0.0.12'}
        ```
        
        ## Possible issues
        
        If you get this message on Windows:
        
        `DLL load failed while importing _ecmwflibs: The specified module could not be found.`
        
        this means that the C++ runtime library is not installed. Please download and install `vc_redist.x86.exe` or `vc_redist.x64.exe`
        from https://support.microsoft.com/en-us/help/2977003/the-latest-supported-visual-c-downloads.
        
        ## Acknowledgements
        
        *ecmwflibs* comes packaged with some third-party open source libraries which are dependencies of *Magics* and *ecCodes*. To display the list of embedded libraries and their copyright notices and/or licenses, please type:
        
        ```bash
        python3 -m ecmwflibs credits
        ```
        
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
