pyconiq


Namepyconiq JSON
Version 0.0.3 PyPI version JSON
download
home_page
SummaryUnofficial Python package to interface with the payment processor Payconiq.
upload_time2023-11-27 19:46:28
maintainer
docs_urlNone
authorJoeri Hermans
requires_python>=3.11,<4.0
license
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            <div align="center">
  <img src="https://github.com/peinser/pyconiq/actions/workflows/docs.yml/badge.svg">
  <img src="https://github.com/peinser/pyconiq/actions/workflows/image.yml/badge.svg">
  <img src="https://github.com/peinser/pyconiq/actions/workflows/pypi.yml/badge.svg">
  <img src="https://badgen.net/badge/license/Apache-2.0/blue">
  <img src="https://img.shields.io/pypi/v/pyconiq">
  <img src="https://badgen.net/badge/code%20style/black/black">
  <img src="https://img.shields.io/docker/v/peinser/pyconiq">
</div>

<p align="center">
   <img src="docs/assets/logo.png" height=100%>
</p>

--------------------------------------------------------------------------------

_Unofficial_ `async` Python module to interface with the payment processor
[Payconiq](https://www.payconiq.com/).

## Introduction

> [!WARNING]
> This is an initial PoC and integration of the module. The API will most likely change in future releases.

### Installation

The module can be directly installed through pip:

```bash
pip install pyconiq
```

For development purposes, and once the project cloned or the codespace ready,
you can install the project
dependencies. You can use the `dev` extra to install the development
dependencies.

```bash
poetry install --with=dev
```

Or using pip:

```bash
pip install -e .[dev]
```

### Getting started

Before you can integrate your application with [Payconiq](https://www.payconiq.com/),
you need access to a so-called _Merchant_ profile. The process of onboarding with
Payconiq, both for their development (`EXT`) and production (`PROD`) environment
involves opening a support ticket (e-mail) and exchanging some information to setup
your account. In particular, your mobile phone number, address, Tax ID (if availablef),
and company name amongst others. The onboarding procedure is outlined
[here](https://developer.payconiq.com/online-payments-dock/).

> [!IMPORTANT]
> You will have to provide a _default_ callback URL to the support team that Payconiq will use to send updates regarding payment requests and transactions.

Once onboarded by the support team, you'll most likely have access to the
`EXT` infrastructure. This means you have access to the necessary API keys and unique
merchant identifier. In the wild, the most common integration a consumer will experience
(we think) is the _Static QR_ code integration. This QR code is uniquely tied to a
specific _Point of Sale_ (PoS) of a merchant. Meaning, a Point of Sale is uniquely
identified by the tuple (Merchant ID and PoS ID), the latter is in _your_ control.

### Environment variables

`pyconiq` supports to inject several runtime defaults through environment variables.
This is especially useful when targetting the `EXT` infrastructure compared to the
_default_ `PROD` infrastructure.

| Variable | Default | Context |
|---|---|---|
| `PYCONIQ_BASE` | `https://payconiq.com` | Base endpoint of Payconiq.com. |
| `PYCONIQ_API_BASE` | `https://api.payconiq.com` | The primary API endpoint of Payconiq (or some mock service). By default this variable will target the Payconiq production environment. For the `EXT` environment this variable should be set to `https://api.ext.payconiq.com`. Note that setting this environment variable is not necessary. It can be defined in the codebase when allocating specific integrations. |
| `PYCONIQ_DEFAULT_MERCHANT` | `None` | Default Merchant ID that will be used when allocating merchants. |
| `PYCONIQ_API_KEY_STATIC` | `None` | Default API key for the Static QR code integration. |
| `PYCONIQ_API_KEY_INVOICE` | `None` | Default API key for the Invoice integration whenever no key is manually specified. |
| `PYCONIQ_API_KEY_RECEIPT` | `None` | Default API key for the Receipt integration whenever no key is manually specified. |
| `PYCONIQ_API_KEY_APP2APP` | `None` | Default API key for the App2App integration whenever no key is manually specified. |                                                                                                                                                                                    |
| `PYCONIQ_PAYMENT_PROFILE_STATIC` | `None` | Payment profile identifier of the Static QR code integration |

### Example

First, before you use the [Static QR](https://developer.payconiq.com/online-payments-dock/#payconiq-instore-v3-static-qr-sticker)
integration, you need a QR code for your customers to scan. You can obtain this QR
code through Payconiq's API. However, `pyconiq` provides a utility to generate
this on the fly for you, with various error correction levels and customization options.
This functionality is powered by the awesome [`qrcode`](https://github.com/lincolnloop/python-qrcode) module.

> [!TIP]
> Note, the default merchant identifier and the default payment profile for the static can be set through the `PYCONIQ_DEFAULT_MERCHANT` and `PYCONIQ_PAYMENT_PROFILE_STATIC` environment variables respectively.

```python
import pyconiq.qr

# Assign a unique identifier to your point of sale.
# This is managed by us, the merchant.
point_of_sale_id = "test"

# Set your merchant configuration, this will implicetly use the
# `PYCONIQ_DEFAULT_MERCHANT` environment variable for populating
# the merchant identifier.
merchant = pyconiq.merchant()

# Alternatively, the merchant can be generated as.
merchant = pyconiq.merchant(merchant_id="YourMerchantIdentifier")

integration = StaticIntegration(merchant=merchant, profile="YourPaymentProfileId)

# Second, we need a QR code that is associated with our PoS (point of sale).
# In this case, the identifier of the PoS is `test`.
qr = pyconiq.qr.static(integration=integration, pos=point_of_sale_id)
# Show the QR code in the terminal.
qr.print_ascii(tty=True)
```

this produces the following QR code (in your terminal) for our test Merchant;

```console
█▀▀▀▀▀▀▀██▀██▀█▀███▀█▀█▀▀▀▀▀▀▀█
█ █▀▀▀█ █▀▀ ▄ █▀ ▄███▀█ █▀▀▀█ █
█ █   █ ██▄ ▄█▄ ██▄  ▄█ █   █ █
█ ▀▀▀▀▀ █▀▄▀█▀▄▀▄▀▄▀▄▀█ ▀▀▀▀▀ █
█▀▀▀█▀▀▀▀ ▄ ▀▄▄▀▀█ ▄ █▀▀███▀███
███▄▀ ▀▀▀█▀▄▄█▀██ █ ▄▄▄▄█▄██ ▀█
█▄▀   ▄▀█ ██▄▀██▄ ▄▀ ▀▄█▀█ █▀▀█
████▄█▀▀█▄▄▀  ▄▀█▀█   ▀███▀   █
█  █▀▀▄▀▄▀▀▀▀▄▄ ▀▄█▀ ▄▀█▄█▀ ▄▄█
█▀▄▀█▀█▀▀▀  ▄█▀▄▄  █▄█▄▄  █▀▄▄█
█▀▄▀  ▀▀▀▀ █▄▀██ █  ▄ ▀▀▀ ███▀█
█▀▀▀▀▀▀▀█ ▄▄  ▄▀▀ █▀█ █▀█ ▀▄█ █
█ █▀▀▀█ █ ▄▀▀▄▄ █▀▄█  ▀▀▀ █ █▄█
█ █   █ █▀ ▀▄█▀▄▄ █▄▀  ██ ▄▀█▀█
█ ▀▀▀▀▀ █ █▀▄▀██▀▀▄█▄██ █▀▀ ▄ █
▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
```

Once the QR code has been generated, we can now create payment requests (which we
call transactions internally). Such requests are allocated through "Integrations".
For this particular type, we're using a `StaticIntegration`, which corresponds to the
integration supported the previously generated static QR code.

```python
# Initiate a payment request with a static QR integration.
transaction = await integration.create(
  amount=2000,  # IMPORTANT: Amount is in Eurocent
  pos=point_of_sale_id,
  reference="PYCONIQ TEST",  # Reference that will appear as a reference in the bank log.
)
```

> [!TIP]
> You can specify custom Callback URL's using the `callback` parameter when creating transactions.

At this point, the transaction has been allocated and is currently in a `PENDING` state.
For the Static QR integration, transactions remain in a `PENDING` state for about 2
minutes before expiring. Updates regarding payment information will be provided through
the callback URL. However, if you're simply testing locally, you can poll the status
of the transaction like this:

```python
#Just scan the QR code now.
while not transaction.terminal():  # Is the transaction in a `terminal` state?
  await asyncio.sleep(1)
  await transaction.update()

if transaction.expired():
  print("Failed to pay on time :(")
elif transaction.succeeded():
  print("Paid!")
elif transaction.cancelled():
  print("The transaction was cancelled!")
else:
  print("Some other status :/")
```

> [!IMPORTANT]
> The infrastructure supporting the External build is switched off each day from 21h30(CET) to 6h00 (CET) and during the weekends from Friday 21h30 (CET) until Monday 6h00 (CET).

Detailed information regarding the Payconiq's API specification can be found
[here](https://developer.payconiq.com/online-payments-dock/).

## Roadmap

Currently, only the [Static QR](https://developer.payconiq.com/online-payments-dock/#payconiq-instore-v3-static-qr-sticker) code integration is supported.
In the near future,
we intent to support the [Invoice](https://developer.payconiq.com/online-payments-dock/#payconiq-invoice-v3-invoice) integration.

            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "pyconiq",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.11,<4.0",
    "maintainer_email": "",
    "keywords": "",
    "author": "Joeri Hermans",
    "author_email": "joeri@peinser.com",
    "download_url": "https://files.pythonhosted.org/packages/1d/20/cb8b59a8508689f1d1e768badf9c9f2a877f78fd693b4382e1d4702f70f0/pyconiq-0.0.3.tar.gz",
    "platform": null,
    "description": "<div align=\"center\">\n  <img src=\"https://github.com/peinser/pyconiq/actions/workflows/docs.yml/badge.svg\">\n  <img src=\"https://github.com/peinser/pyconiq/actions/workflows/image.yml/badge.svg\">\n  <img src=\"https://github.com/peinser/pyconiq/actions/workflows/pypi.yml/badge.svg\">\n  <img src=\"https://badgen.net/badge/license/Apache-2.0/blue\">\n  <img src=\"https://img.shields.io/pypi/v/pyconiq\">\n  <img src=\"https://badgen.net/badge/code%20style/black/black\">\n  <img src=\"https://img.shields.io/docker/v/peinser/pyconiq\">\n</div>\n\n<p align=\"center\">\n   <img src=\"docs/assets/logo.png\" height=100%>\n</p>\n\n--------------------------------------------------------------------------------\n\n_Unofficial_ `async` Python module to interface with the payment processor\n[Payconiq](https://www.payconiq.com/).\n\n## Introduction\n\n> [!WARNING]\n> This is an initial PoC and integration of the module. The API will most likely change in future releases.\n\n### Installation\n\nThe module can be directly installed through pip:\n\n```bash\npip install pyconiq\n```\n\nFor development purposes, and once the project cloned or the codespace ready,\nyou can install the project\ndependencies. You can use the `dev` extra to install the development\ndependencies.\n\n```bash\npoetry install --with=dev\n```\n\nOr using pip:\n\n```bash\npip install -e .[dev]\n```\n\n### Getting started\n\nBefore you can integrate your application with [Payconiq](https://www.payconiq.com/),\nyou need access to a so-called _Merchant_ profile. The process of onboarding with\nPayconiq, both for their development (`EXT`) and production (`PROD`) environment\ninvolves opening a support ticket (e-mail) and exchanging some information to setup\nyour account. In particular, your mobile phone number, address, Tax ID (if availablef),\nand company name amongst others. The onboarding procedure is outlined\n[here](https://developer.payconiq.com/online-payments-dock/).\n\n> [!IMPORTANT]\n> You will have to provide a _default_ callback URL to the support team that Payconiq will use to send updates regarding payment requests and transactions.\n\nOnce onboarded by the support team, you'll most likely have access to the\n`EXT` infrastructure. This means you have access to the necessary API keys and unique\nmerchant identifier. In the wild, the most common integration a consumer will experience\n(we think) is the _Static QR_ code integration. This QR code is uniquely tied to a\nspecific _Point of Sale_ (PoS) of a merchant. Meaning, a Point of Sale is uniquely\nidentified by the tuple (Merchant ID and PoS ID), the latter is in _your_ control.\n\n### Environment variables\n\n`pyconiq` supports to inject several runtime defaults through environment variables.\nThis is especially useful when targetting the `EXT` infrastructure compared to the\n_default_ `PROD` infrastructure.\n\n| Variable | Default | Context |\n|---|---|---|\n| `PYCONIQ_BASE` | `https://payconiq.com` | Base endpoint of Payconiq.com. |\n| `PYCONIQ_API_BASE` | `https://api.payconiq.com` | The primary API endpoint of Payconiq (or some mock service). By default this variable will target the Payconiq production environment. For the `EXT` environment this variable should be set to `https://api.ext.payconiq.com`. Note that setting this environment variable is not necessary. It can be defined in the codebase when allocating specific integrations. |\n| `PYCONIQ_DEFAULT_MERCHANT` | `None` | Default Merchant ID that will be used when allocating merchants. |\n| `PYCONIQ_API_KEY_STATIC` | `None` | Default API key for the Static QR code integration. |\n| `PYCONIQ_API_KEY_INVOICE` | `None` | Default API key for the Invoice integration whenever no key is manually specified. |\n| `PYCONIQ_API_KEY_RECEIPT` | `None` | Default API key for the Receipt integration whenever no key is manually specified. |\n| `PYCONIQ_API_KEY_APP2APP` | `None` | Default API key for the App2App integration whenever no key is manually specified. |                                                                                                                                                                                    |\n| `PYCONIQ_PAYMENT_PROFILE_STATIC` | `None` | Payment profile identifier of the Static QR code integration |\n\n### Example\n\nFirst, before you use the [Static QR](https://developer.payconiq.com/online-payments-dock/#payconiq-instore-v3-static-qr-sticker)\nintegration, you need a QR code for your customers to scan. You can obtain this QR\ncode through Payconiq's API. However, `pyconiq` provides a utility to generate\nthis on the fly for you, with various error correction levels and customization options.\nThis functionality is powered by the awesome [`qrcode`](https://github.com/lincolnloop/python-qrcode) module.\n\n> [!TIP]\n> Note, the default merchant identifier and the default payment profile for the static can be set through the `PYCONIQ_DEFAULT_MERCHANT` and `PYCONIQ_PAYMENT_PROFILE_STATIC` environment variables respectively.\n\n```python\nimport pyconiq.qr\n\n# Assign a unique identifier to your point of sale.\n# This is managed by us, the merchant.\npoint_of_sale_id = \"test\"\n\n# Set your merchant configuration, this will implicetly use the\n# `PYCONIQ_DEFAULT_MERCHANT` environment variable for populating\n# the merchant identifier.\nmerchant = pyconiq.merchant()\n\n# Alternatively, the merchant can be generated as.\nmerchant = pyconiq.merchant(merchant_id=\"YourMerchantIdentifier\")\n\nintegration = StaticIntegration(merchant=merchant, profile=\"YourPaymentProfileId)\n\n# Second, we need a QR code that is associated with our PoS (point of sale).\n# In this case, the identifier of the PoS is `test`.\nqr = pyconiq.qr.static(integration=integration, pos=point_of_sale_id)\n# Show the QR code in the terminal.\nqr.print_ascii(tty=True)\n```\n\nthis produces the following QR code (in your terminal) for our test Merchant;\n\n```console\n\u2588\u2580\u2580\u2580\u2580\u2580\u2580\u2580\u2588\u2588\u2580\u2588\u2588\u2580\u2588\u2580\u2588\u2588\u2588\u2580\u2588\u2580\u2588\u2580\u2580\u2580\u2580\u2580\u2580\u2580\u2588\n\u2588\u00a0\u2588\u2580\u2580\u2580\u2588\u00a0\u2588\u2580\u2580\u00a0\u2584\u00a0\u2588\u2580\u00a0\u2584\u2588\u2588\u2588\u2580\u2588\u00a0\u2588\u2580\u2580\u2580\u2588\u00a0\u2588\n\u2588\u00a0\u2588\u00a0\u00a0\u00a0\u2588\u00a0\u2588\u2588\u2584\u00a0\u2584\u2588\u2584\u00a0\u2588\u2588\u2584\u00a0\u00a0\u2584\u2588\u00a0\u2588\u00a0\u00a0\u00a0\u2588\u00a0\u2588\n\u2588\u00a0\u2580\u2580\u2580\u2580\u2580\u00a0\u2588\u2580\u2584\u2580\u2588\u2580\u2584\u2580\u2584\u2580\u2584\u2580\u2584\u2580\u2588\u00a0\u2580\u2580\u2580\u2580\u2580\u00a0\u2588\n\u2588\u2580\u2580\u2580\u2588\u2580\u2580\u2580\u2580\u00a0\u2584\u00a0\u2580\u2584\u2584\u2580\u2580\u2588\u00a0\u2584\u00a0\u2588\u2580\u2580\u2588\u2588\u2588\u2580\u2588\u2588\u2588\n\u2588\u2588\u2588\u2584\u2580\u00a0\u2580\u2580\u2580\u2588\u2580\u2584\u2584\u2588\u2580\u2588\u2588\u00a0\u2588\u00a0\u2584\u2584\u2584\u2584\u2588\u2584\u2588\u2588\u00a0\u2580\u2588\n\u2588\u2584\u2580\u00a0\u00a0\u00a0\u2584\u2580\u2588\u00a0\u2588\u2588\u2584\u2580\u2588\u2588\u2584\u00a0\u2584\u2580\u00a0\u2580\u2584\u2588\u2580\u2588\u00a0\u2588\u2580\u2580\u2588\n\u2588\u2588\u2588\u2588\u2584\u2588\u2580\u2580\u2588\u2584\u2584\u2580\u00a0\u00a0\u2584\u2580\u2588\u2580\u2588\u00a0\u00a0\u00a0\u2580\u2588\u2588\u2588\u2580\u00a0\u00a0\u00a0\u2588\n\u2588\u00a0\u00a0\u2588\u2580\u2580\u2584\u2580\u2584\u2580\u2580\u2580\u2580\u2584\u2584\u00a0\u2580\u2584\u2588\u2580\u00a0\u2584\u2580\u2588\u2584\u2588\u2580\u00a0\u2584\u2584\u2588\n\u2588\u2580\u2584\u2580\u2588\u2580\u2588\u2580\u2580\u2580\u00a0\u00a0\u2584\u2588\u2580\u2584\u2584\u00a0\u00a0\u2588\u2584\u2588\u2584\u2584\u00a0\u00a0\u2588\u2580\u2584\u2584\u2588\n\u2588\u2580\u2584\u2580\u00a0\u00a0\u2580\u2580\u2580\u2580\u00a0\u2588\u2584\u2580\u2588\u2588\u00a0\u2588\u00a0\u00a0\u2584\u00a0\u2580\u2580\u2580\u00a0\u2588\u2588\u2588\u2580\u2588\n\u2588\u2580\u2580\u2580\u2580\u2580\u2580\u2580\u2588\u00a0\u2584\u2584\u00a0\u00a0\u2584\u2580\u2580\u00a0\u2588\u2580\u2588\u00a0\u2588\u2580\u2588\u00a0\u2580\u2584\u2588\u00a0\u2588\n\u2588\u00a0\u2588\u2580\u2580\u2580\u2588\u00a0\u2588\u00a0\u2584\u2580\u2580\u2584\u2584\u00a0\u2588\u2580\u2584\u2588\u00a0\u00a0\u2580\u2580\u2580\u00a0\u2588\u00a0\u2588\u2584\u2588\n\u2588\u00a0\u2588\u00a0\u00a0\u00a0\u2588\u00a0\u2588\u2580\u00a0\u2580\u2584\u2588\u2580\u2584\u2584\u00a0\u2588\u2584\u2580\u00a0\u00a0\u2588\u2588\u00a0\u2584\u2580\u2588\u2580\u2588\n\u2588\u00a0\u2580\u2580\u2580\u2580\u2580\u00a0\u2588\u00a0\u2588\u2580\u2584\u2580\u2588\u2588\u2580\u2580\u2584\u2588\u2584\u2588\u2588\u00a0\u2588\u2580\u2580\u00a0\u2584\u00a0\u2588\n\u2580\u2580\u2580\u2580\u2580\u2580\u2580\u2580\u2580\u2580\u2580\u2580\u2580\u2580\u2580\u2580\u2580\u2580\u2580\u2580\u2580\u2580\u2580\u2580\u2580\u2580\u2580\u2580\u2580\u2580\u2580\n```\n\nOnce the QR code has been generated, we can now create payment requests (which we\ncall transactions internally). Such requests are allocated through \"Integrations\".\nFor this particular type, we're using a `StaticIntegration`, which corresponds to the\nintegration supported the previously generated static QR code.\n\n```python\n# Initiate a payment request with a static QR integration.\ntransaction = await integration.create(\n  amount=2000,  # IMPORTANT: Amount is in Eurocent\n  pos=point_of_sale_id,\n  reference=\"PYCONIQ TEST\",  # Reference that will appear as a reference in the bank log.\n)\n```\n\n> [!TIP]\n> You can specify custom Callback URL's using the `callback` parameter when creating transactions.\n\nAt this point, the transaction has been allocated and is currently in a `PENDING` state.\nFor the Static QR integration, transactions remain in a `PENDING` state for about 2\nminutes before expiring. Updates regarding payment information will be provided through\nthe callback URL. However, if you're simply testing locally, you can poll the status\nof the transaction like this:\n\n```python\n#Just scan the QR code now.\nwhile not transaction.terminal():  # Is the transaction in a `terminal` state?\n  await asyncio.sleep(1)\n  await transaction.update()\n\nif transaction.expired():\n  print(\"Failed to pay on time :(\")\nelif transaction.succeeded():\n  print(\"Paid!\")\nelif transaction.cancelled():\n  print(\"The transaction was cancelled!\")\nelse:\n  print(\"Some other status :/\")\n```\n\n> [!IMPORTANT]\n> The infrastructure supporting the External build is switched off each day from 21h30(CET) to 6h00 (CET) and during the weekends from Friday 21h30 (CET) until Monday 6h00 (CET).\n\nDetailed information regarding the Payconiq's API specification can be found\n[here](https://developer.payconiq.com/online-payments-dock/).\n\n## Roadmap\n\nCurrently, only the [Static QR](https://developer.payconiq.com/online-payments-dock/#payconiq-instore-v3-static-qr-sticker) code integration is supported.\nIn the near future,\nwe intent to support the [Invoice](https://developer.payconiq.com/online-payments-dock/#payconiq-invoice-v3-invoice) integration.\n",
    "bugtrack_url": null,
    "license": "",
    "summary": "Unofficial Python package to interface with the payment processor Payconiq.",
    "version": "0.0.3",
    "project_urls": null,
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2312c84e3653862b4482eb274fd8ed832c5aa3078866850d3ea422da68bd6ba7",
                "md5": "c25d4cebc2b4751955feb3790509f588",
                "sha256": "58097bd66fbb846a2ad4a2a11fc64b6f63df80e51be81863a80d12ca34174ae7"
            },
            "downloads": -1,
            "filename": "pyconiq-0.0.3-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "c25d4cebc2b4751955feb3790509f588",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.11,<4.0",
            "size": 15871,
            "upload_time": "2023-11-27T19:46:23",
            "upload_time_iso_8601": "2023-11-27T19:46:23.189549Z",
            "url": "https://files.pythonhosted.org/packages/23/12/c84e3653862b4482eb274fd8ed832c5aa3078866850d3ea422da68bd6ba7/pyconiq-0.0.3-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1d20cb8b59a8508689f1d1e768badf9c9f2a877f78fd693b4382e1d4702f70f0",
                "md5": "af37b0e1b0e9b64f3601e375081ef719",
                "sha256": "83cfa8ac5566029841b06a466e7b5b42bd8ff2bb4aa79fcf0ef8a2c21c2e577e"
            },
            "downloads": -1,
            "filename": "pyconiq-0.0.3.tar.gz",
            "has_sig": false,
            "md5_digest": "af37b0e1b0e9b64f3601e375081ef719",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.11,<4.0",
            "size": 16428,
            "upload_time": "2023-11-27T19:46:28",
            "upload_time_iso_8601": "2023-11-27T19:46:28.717428Z",
            "url": "https://files.pythonhosted.org/packages/1d/20/cb8b59a8508689f1d1e768badf9c9f2a877f78fd693b4382e1d4702f70f0/pyconiq-0.0.3.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-11-27 19:46:28",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "pyconiq"
}
        
Elapsed time: 0.14755s