Metadata-Version: 2.1
Name: paycek
Version: 0.0.1
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
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 payment processor. 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_key>',
    api_secret='<api_secret>'
)
```

### Usage

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

