Metadata-Version: 2.1
Name: paycek
Version: 0.0.14
Summary: A connector library for communicating with PayCek public API
Author: Electrocoin d.o.o.
Project-URL: Website, https://paycek.io
Project-URL: Source Code, https://github.com/electrocoin-eu/paycek-python
Project-URL: Bug Tracker, https://github.com/electrocoin-eu/paycek-python/issues
Keywords: paycek,cryptocurrency,bitcoin,ether,payment,cryptopayment,exchange
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

# Paycek

This is an official package for the [Paycek crypto payment processor](https://paycek.io). The documentation provided in code explains only minor implementation details.

For in depth information about endpoints, fields and more, read our [API Documentation](https://paycek.io/api/docs).

## Quick Start

### Installation

Install package with pip.

```shell
pip install paycek
```

### Initialization

Under account settings you’ll find your API key and secret. Initialize a paycek instance.

```python
from paycek import Paycek

paycek = Paycek('<api_key>', '<api_secret>')
```

### Usage

#### Get payment
```python
payment = paycek.get_payment('<payment_code>')
```

#### Open payment
```python
payment = paycek.open_payment('<profile_code>', '<dst_amount>', '<location_id>')
```
