paycek


Namepaycek JSON
Version 1.1.1 PyPI version JSON
download
home_pageNone
SummaryA connector library for communicating with PayCek public API
upload_time2024-05-29 19:25:00
maintainerNone
docs_urlNone
authorElectrocoin d.o.o.
requires_python>=3.6
licenseNone
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": null,
    "name": "paycek",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.6",
    "maintainer_email": null,
    "keywords": "paycek, cryptocurrency, bitcoin, ether, payment, cryptopayment, exchange",
    "author": "Electrocoin d.o.o.",
    "author_email": null,
    "download_url": "https://files.pythonhosted.org/packages/6f/6f/c1419d2c964393218f48f8cfe2854a89f7e8b9942549849ad1c369b48225/paycek-1.1.1.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": null,
    "summary": "A connector library for communicating with PayCek public API",
    "version": "1.1.1",
    "project_urls": {
        "Bug Tracker": "https://github.com/electrocoin-eu/paycek-python/issues",
        "Source Code": "https://github.com/electrocoin-eu/paycek-python",
        "Website": "https://paycek.io"
    },
    "split_keywords": [
        "paycek",
        " cryptocurrency",
        " bitcoin",
        " ether",
        " payment",
        " cryptopayment",
        " exchange"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d49cf46551554d2b004be558da352dae0ebade2d37adbc42535fc45deab80462",
                "md5": "b9bf7a4cb814b8a744a6989e16263a19",
                "sha256": "91d8683d45288de2b95473ffbbe1507fbf72053916007d419b1a4b1d2b6157f7"
            },
            "downloads": -1,
            "filename": "paycek-1.1.1-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "b9bf7a4cb814b8a744a6989e16263a19",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.6",
            "size": 4347,
            "upload_time": "2024-05-29T19:24:58",
            "upload_time_iso_8601": "2024-05-29T19:24:58.933913Z",
            "url": "https://files.pythonhosted.org/packages/d4/9c/f46551554d2b004be558da352dae0ebade2d37adbc42535fc45deab80462/paycek-1.1.1-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6f6fc1419d2c964393218f48f8cfe2854a89f7e8b9942549849ad1c369b48225",
                "md5": "bf53e5257b50802a8afc2eeeeceaa14a",
                "sha256": "178cd23ca6cffe2836475aad1ccab99319f7713a452c498246e4e201afd331b6"
            },
            "downloads": -1,
            "filename": "paycek-1.1.1.tar.gz",
            "has_sig": false,
            "md5_digest": "bf53e5257b50802a8afc2eeeeceaa14a",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.6",
            "size": 4068,
            "upload_time": "2024-05-29T19:25:00",
            "upload_time_iso_8601": "2024-05-29T19:25:00.668685Z",
            "url": "https://files.pythonhosted.org/packages/6f/6f/c1419d2c964393218f48f8cfe2854a89f7e8b9942549849ad1c369b48225/paycek-1.1.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-05-29 19:25:00",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "electrocoin-eu",
    "github_project": "paycek-python",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "requirements": [],
    "lcname": "paycek"
}
        
Elapsed time: 0.26032s