Metadata-Version: 2.1
Name: fxapicom
Version: 0.1.2
Summary: Fxapi Python Client
Home-page: https://github.com/everapihq/fxapi-python
Author: Everapi
Author-email: office@everapi.com
License: MIT
Description: # fxapi Python Client #
        
        Fxapi Python Client is the official Python Wrapper around the fxapi [API](https://fxapi.com/).
        
        ## Installation
        
        Install from pip:
        ````sh
        pip install fxapicom
        ````
        
        Install from code:
        ````sh
        pip install git+https://github.com/everapihq/fxapi-python.git
        ````
        
        ## Usage
        
        All curencyapi API requests are made using the `Client` class. This class must be initialized with your API access key string. [Where is my API access key?](https://app.fxapi.com/dashboard)
        
        In your Python application, import `fxapi` and pass authentication information to initialize it:
        
        ````python
        import fxapicom
        client = fxapicom.Client('API_KEY')
        ````
        
        ### Retrieve Status
        
        ```python
        
        print(client.status())
        
        ```
        
        ### Retrieve Currencies
        [https://fxapi.com/docs/currencies](https://fxapi.com/docs/currencies)
        ```python
        
        result = client.currencies(currencies=['EUR', 'CAD'])
        print(result)
        
        ```
        
        ### Retrieve Latest Exchange Rates
        [https://fxapi.com/docs/latest](https://fxapi.com/docs/latest)
        
        ```python
        
        result = client.latest()
        print(result)
        
        ```
        
        ### Retrieve Historical Exchange Rates
        [https://fxapi.com/docs/historical](https://fxapi.com/docs/historical)
        
        ```python
        
        result = client.historical('2022-02-02')
        print(result)
        
        ```
        
        ### Retrieve Historical Range Exchange Rates
        [https://fxapi.com/docs/range](https://fxapi.com/docs/range)
        
        ```python
        
        result = client.range('2022-02-02', '2022-02-04')
        print(result)
        
        ```
        
        ### Retrieve Converted Exchange Rates
        [https://fxapi.com/docs/convert](https://fxapi.com/docs/convert)
        
        ```python
        
        result = client.convert(1234)
        print(result)
        
        ```
        
        
        ### Contact us
        Any feedback? Please feel free to [contact our team](mailto:office@everapi.com).
        
Keywords: exchange rates api,exchange rates,rates api,fxapi
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.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: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Description-Content-Type: text/markdown
