A connector library for communicating with PayCek public API


Keywords
paycek, cryptocurrency, bitcoin, ether, payment, cryptopayment, exchange
License
MIT
Install
pip install paycek==1.1.1

Documentation

Paycek

This is an official package for the Paycek crypto 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.

Quick Start

Installation

Install package with pip.

pip install paycek

Initialization

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

from paycek import Paycek

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

Usage

Get payment

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

Open payment

payment = paycek.open_payment('<profile_code>', '<dst_amount>', '<location_id>')