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>')