Metadata-Version: 2.1
Name: revolut-merchant-python
Version: 0.0.2
Summary: Revolut Merchant API client for Python
Home-page: https://github.com/the-veloper/revolut-merchant-python/
Author: Georgi Georgiev
Author-email: g.georgiev@theorigamicorporation.com
License: Apache License 2.0
Keywords: revolut payments merchant api client
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Description-Content-Type: text/markdown
License-File: LICENSE

# Python Revolut Merchant API Client

DISCLAIMER:
**This client is a WIP and still in a very beta stage. Please use at your own risk!**

## Installation

```
pip install revolut-merchant-python
```

## Initialize the Client

To initialize the client install and import the library.

```
import revolut_merchant

client = revolut_merchant.Client(access_token="<YOUR_TOKEN>", environment="<production/sandbox>")
```

## Fetch Order by ID

```
order_id = "e5aa96ca-7ba1-4b5a-gj5a-03273877f3dc"
client.get_order(order_id) # This will return an Order object
```
