paycek


Namepaycek JSON
Version 1.0.0 PyPI version JSON
download
home_page
SummaryA connector library for communicating with PayCek public API
upload_time2023-02-02 09:43:55
maintainer
docs_urlNone
authorElectrocoin d.o.o.
requires_python>=3.6
license
keywords paycek cryptocurrency bitcoin ether payment cryptopayment exchange
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # 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>')
```

            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "paycek",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.6",
    "maintainer_email": "",
    "keywords": "paycek,cryptocurrency,bitcoin,ether,payment,cryptopayment,exchange",
    "author": "Electrocoin d.o.o.",
    "author_email": "",
    "download_url": "https://files.pythonhosted.org/packages/43/ac/9498d92987a727963dddaef255d39223512bfc222417a299766a171159a6/paycek-1.0.0.tar.gz",
    "platform": null,
    "description": "# Paycek\n\nThis is an official package for the [Paycek crypto payment processor](https://paycek.io). The documentation provided in code explains only minor implementation details.\n\nFor in depth information about endpoints, fields and more, read our [API Documentation](https://paycek.io/api/docs).\n\n## Quick Start\n\n### Installation\n\nInstall package with pip.\n\n```shell\npip install paycek\n```\n\n### Initialization\n\nUnder account settings you\u2019ll find your API key and secret. Initialize a paycek instance.\n\n```python\nfrom paycek import Paycek\n\npaycek = Paycek('<api_key>', '<api_secret>')\n```\n\n### Usage\n\n#### Get payment\n```python\npayment = paycek.get_payment('<payment_code>')\n```\n\n#### Open payment\n```python\npayment = paycek.open_payment('<profile_code>', '<dst_amount>', '<location_id>')\n```\n",
    "bugtrack_url": null,
    "license": "",
    "summary": "A connector library for communicating with PayCek public API",
    "version": "1.0.0",
    "split_keywords": [
        "paycek",
        "cryptocurrency",
        "bitcoin",
        "ether",
        "payment",
        "cryptopayment",
        "exchange"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "37ca107df29667b091a5a2bdb62a823b18f9bdcf8b7fd67cddd8ff8661756778",
                "md5": "1838d722f2bd8be423071dc04855312c",
                "sha256": "8ad201f9e0e6d366dfee35c8ff205df26b5fad26f22bcff5637ba364e1d11219"
            },
            "downloads": -1,
            "filename": "paycek-1.0.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "1838d722f2bd8be423071dc04855312c",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.6",
            "size": 4329,
            "upload_time": "2023-02-02T09:43:53",
            "upload_time_iso_8601": "2023-02-02T09:43:53.823536Z",
            "url": "https://files.pythonhosted.org/packages/37/ca/107df29667b091a5a2bdb62a823b18f9bdcf8b7fd67cddd8ff8661756778/paycek-1.0.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "43ac9498d92987a727963dddaef255d39223512bfc222417a299766a171159a6",
                "md5": "799663537c99d0100925c2fc594dccf9",
                "sha256": "3319ba56dff031c7830479ef8e8ee2af055fb71177153705df3b2fe96474d3a3"
            },
            "downloads": -1,
            "filename": "paycek-1.0.0.tar.gz",
            "has_sig": false,
            "md5_digest": "799663537c99d0100925c2fc594dccf9",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.6",
            "size": 4076,
            "upload_time": "2023-02-02T09:43:55",
            "upload_time_iso_8601": "2023-02-02T09:43:55.450955Z",
            "url": "https://files.pythonhosted.org/packages/43/ac/9498d92987a727963dddaef255d39223512bfc222417a299766a171159a6/paycek-1.0.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-02-02 09:43:55",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "lcname": "paycek"
}
        
Elapsed time: 0.03442s