cirque-pinnacle


Namecirque-pinnacle JSON
Version 1.0.1 PyPI version JSON
download
home_page
SummaryA python package for the wrapping CirquePinnacle C++ library.
upload_time2023-04-21 04:33:58
maintainer
docs_urlNone
author
requires_python>=3.7
licenseMIT
keywords cirque pinnacle raspberry pi linux driver touch sensor
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            
.. image:: https://readthedocs.org/projects/cirquepinnacle/badge/?version=latest
    :target: https://cirquepinnacle.readthedocs.io/en/latest/?badge=latest
    :alt: Documentation Status
.. image:: https://github.com/2bndy5/CirquePinnacle/actions/workflows/build_arduino.yml/badge.svg
    :target: https://github.com/2bndy5/CirquePinnacle/actions/workflows/build_arduino.yml
    :alt: Arduino build
.. image:: https://github.com/2bndy5/CirquePinnacle/actions/workflows/build_platformio.yml/badge.svg
    :target: https://github.com/2bndy5/CirquePinnacle/actions/workflows/build_platformio.yml
    :alt: PlatformIO build
.. image:: https://github.com/2bndy5/CirquePinnacle/actions/workflows/build_pico_sdk.yml/badge.svg
    :target: https://github.com/2bndy5/CirquePinnacle/actions/workflows/build_pico_sdk.yml
    :alt: Pico SDK build
.. image:: https://github.com/2bndy5/CirquePinnacle/actions/workflows/build_linux.yml/badge.svg
    :target: https://github.com/2bndy5/CirquePinnacle/actions/workflows/build_linux.yml
    :alt: Linux build
.. image:: https://github.com/2bndy5/CirquePinnacle/actions/workflows/build_python.yml/badge.svg
    :target: https://github.com/2bndy5/CirquePinnacle/actions/workflows/build_python.yml
    :alt: Python build

Introduction
============

A driver library for interfacing with the Cirque Pinnacle (1CA027) touch controller used in Cirque Glidepoint Circle Trackpads.

This library was originally ported from
`CircuitPython_Cirque_Pinnacle  <https://gitHub.com/2bndy5/CircuitPython_Cirque_Pinnacle>`_.

Supported Features
------------------

* Use SPI or I2C bus protocols to interface with the Pinnacle ASIC (Application
  Specific Integrated Circuit) touch controller.
* Relative mode data reporting (AKA Mouse mode) with optional tap detection.
* Absolute mode data reporting (x, y, & z axis positions).
* AnyMeas mode data reporting. This mode exposes the ADC (Analog to Digital Converter) values and is
  not well documented in the numerous datasheets provided by the Cirque corporation about the
  Pinnacle (1CA027), thus this is a rather experimental mode.
* Hardware input buttons' states included in data reports. There are 3 button input lines on
  the Cirque circle trackpads -- see `Pinout`_ section.
* Configure measurements for finger or stylus (or automatically determine either) touch
  events. The Cirque circle trackpads are natively capable of measuring only 1 touch
  point per event.
* Download/upload the underlying compensation matrix for ADC measurements.
* Adjust the ADC matrix gain (sensitivity).

.. tip:: The SPI protocol is the preferred method for interfacing with more than 1 Cirque circle
    trackpad from the same MCU (microcontroller). The Cirque Pinnacle does not allow
    changing the I2C slave device address (via software); this means only 1 Cirque circle trackpad
    can be accessed over the I2C bus in the lifecycle of an application. That said, you could change
    the I2C address from ``0x2A`` to ``0x2C`` by soldering a 470K ohm resistor at the junction
    labeled "ADR" (see picture in `Pinout`_ section), although this is untested.

Unsupported Features
--------------------

* The legacy PS\\2 interface is pretty limited.
  Therefore, it has been neglected in this library.
* Cirque's circle trackpads ship with the newer non-AG (Advanced Gestures) variant of the
  Pinnacle touch controller ASIC. Thus, this library focuses on the the non-AG variant's
  functionality via testing, and it does not provide access to the older AG variant's features
  (register addresses slightly differ which breaks compatibility).

Pinout
======

.. warning::
    The GPIO pins on these trackpads are **not** 5v tolerant. If your microcontroller uses 5v logic
    (ie Arduino Nano, Uno, Pro, Micro), then you must remove the resistors at junctions "R7" and "R8".
    Reportedly, this allows powering the trackpad with 5v (to VDD pin) and the trackpad GPIO pins become
    tolerant of 5v logic levels.
.. image:: https://github.com/2bndy5/CircuitPython_Cirque_Pinnacle/raw/master/docs/_static/Cirque_GlidePoint-Circle-Trackpad.png
    :target: https://www.mouser.com/new/cirque/glidepoint-circle-trackpads/

The above picture is a example of the Cirque GlidePoint circle trackpad. This picture
is chosen as the test pads (larger copper circular pads) are clearly labeled. The test pads
are extended to the `12-pin FFC/FPC cable
<https://www.mouser.com/c/connectors/ffc-fpc/ffc-fpc-jumper-cables/?number%20of%20conductors=12%20Conductor&pitch=0.5%20mm>`_
connector (the white block near the bottom). The following table shows how the pins are connected in
the `examples <https://cirquepinnacle.readthedocs.io/en/latest/examples.html>`_

.. csv-table:: pinout (ordered the same as the FFC/FPC cable connector)
    :header: "cable pin number",Label,"MCU pin","RPi pin",Description

    1,SCK,SCK,"SCLK (GPIO11)","SPI clock line"
    2,SO,MISO,"MISO (GPIO9)","SPI Master Input Slave Output"
    3,SS,D2,"CE0 (GPIO8)","Slave Select (AKA Chip Select)"
    4,DR,D7,GPIO25,"Data Ready interrupt"
    5,SI,MOSI,"MOSI (GPIO10)","SPI Master Output Slave Input"
    6,B2,N/A,N/A,"Hardware input button #2"
    7,B3,N/A,N/A,"Hardware input button #3"
    8,B1,N/A,N/A,"Hardware input button #1"
    9,SCL,SCL,"SCL (GPIO3)","I2C clock line (no builtin pull-up resistor)"
    10,SDA,SDA,"SDA (GPIO2)","I2C data line (no builtin pull-up resistor)"
    11,GND,GND,Ground,Ground
    12,VDD,3V,3V3,"3V power supply"

.. tip::
    Of course, you can capture button data manually (if your application utilizes more
    than 3 buttons), but if you connect the pins B1, B2, B3 to momentary push buttons that
    (when pressed) provide a path to ground, the Pinnacle touch controller will report all 3
    buttons' states for each touch (or even button only) events.

.. note::
    These trackpads have no builtin pull-up resistors on the I2C bus' SDA and SCL lines.
    Examples were tested with a 4.7K ohm resistor for each I2C line tied to 3v.

    The Raspberry Pi boards (excluding any RP2040 boards) all have builtin 1.8K ohm pull-up
    resistors, so the Linux examples were tested with no addition pull-up resistance.

.. _HCO:

Model Labeling Scheme
---------------------

TM\ ``yyyxxx``\ -202\ ``i``\ -\ ``cc``\ ``o``

- ``yyyxxx`` stands for the respective vertical & horizontal width of the trackpad in millimeters.
- ``i`` stands for the hardwired interface protocol (3 = I2C, 4 = SPI). Notice, if there is a
  resistor populated at the R1 (470K ohm) junction (located just above the Pinnacle ASIC), it
  is configured for SPI, otherwise it is configured for I2C.
- ``cc`` stands for Custom Configuration which describes if a 470K ohm resistor is populated at
  junction R4. "30" (resistor at R4 exists) means that the hardware is configured to disable
  certain features despite what this library does. "00" (no resistor at R4) means that the
  hardware is configured to allow certain features to be manipulated by this library. These
  features include "secondary tap" (thought of as "right mouse button" in relative data mode),
  Intellimouse scrolling (Microsoft patented scroll wheel behavior -- a throw back to when
  scroll wheels were first introduced), and 180 degree orientation (your application can invert
  the axis data anyway).
- ``o`` stands for the overlay type (0 = none, 1 = adhesive, 2 = flat, 3 = curved)

Sphinx documentation
-----------------------

Sphinx is used to build the documentation. First, install dependencies (Python 3 & Python's pip
is required):

.. code-block:: shell

    pip3 install -r docs/requirements.txt

Now, run sphinx. The following command is executed from the repository's root folder.

.. code-block:: shell

    sphinx-build -E -W docs docs/_build/html

This will output the documentation to ``docs/_build/html``. Open the index.html in your browser to
view them. It will also (due to ``-W``) error out on any warning. This is a good way to locally verify
it will pass the CI workflow (and ReadTheDocs builds).

            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "cirque-pinnacle",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": "",
    "keywords": "cirque,pinnacle,raspberry,pi,linux,driver,touch,sensor",
    "author": "",
    "author_email": "Brendan Doherty <2bndy5@gmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/de/8d/0abba40548916920d10ea885a8ccaa7f72690773d06de32265b0e38e53ac/cirque_pinnacle-1.0.1.tar.gz",
    "platform": null,
    "description": "\n.. image:: https://readthedocs.org/projects/cirquepinnacle/badge/?version=latest\n    :target: https://cirquepinnacle.readthedocs.io/en/latest/?badge=latest\n    :alt: Documentation Status\n.. image:: https://github.com/2bndy5/CirquePinnacle/actions/workflows/build_arduino.yml/badge.svg\n    :target: https://github.com/2bndy5/CirquePinnacle/actions/workflows/build_arduino.yml\n    :alt: Arduino build\n.. image:: https://github.com/2bndy5/CirquePinnacle/actions/workflows/build_platformio.yml/badge.svg\n    :target: https://github.com/2bndy5/CirquePinnacle/actions/workflows/build_platformio.yml\n    :alt: PlatformIO build\n.. image:: https://github.com/2bndy5/CirquePinnacle/actions/workflows/build_pico_sdk.yml/badge.svg\n    :target: https://github.com/2bndy5/CirquePinnacle/actions/workflows/build_pico_sdk.yml\n    :alt: Pico SDK build\n.. image:: https://github.com/2bndy5/CirquePinnacle/actions/workflows/build_linux.yml/badge.svg\n    :target: https://github.com/2bndy5/CirquePinnacle/actions/workflows/build_linux.yml\n    :alt: Linux build\n.. image:: https://github.com/2bndy5/CirquePinnacle/actions/workflows/build_python.yml/badge.svg\n    :target: https://github.com/2bndy5/CirquePinnacle/actions/workflows/build_python.yml\n    :alt: Python build\n\nIntroduction\n============\n\nA driver library for interfacing with the Cirque Pinnacle (1CA027) touch controller used in Cirque Glidepoint Circle Trackpads.\n\nThis library was originally ported from\n`CircuitPython_Cirque_Pinnacle  <https://gitHub.com/2bndy5/CircuitPython_Cirque_Pinnacle>`_.\n\nSupported Features\n------------------\n\n* Use SPI or I2C bus protocols to interface with the Pinnacle ASIC (Application\n  Specific Integrated Circuit) touch controller.\n* Relative mode data reporting (AKA Mouse mode) with optional tap detection.\n* Absolute mode data reporting (x, y, & z axis positions).\n* AnyMeas mode data reporting. This mode exposes the ADC (Analog to Digital Converter) values and is\n  not well documented in the numerous datasheets provided by the Cirque corporation about the\n  Pinnacle (1CA027), thus this is a rather experimental mode.\n* Hardware input buttons' states included in data reports. There are 3 button input lines on\n  the Cirque circle trackpads -- see `Pinout`_ section.\n* Configure measurements for finger or stylus (or automatically determine either) touch\n  events. The Cirque circle trackpads are natively capable of measuring only 1 touch\n  point per event.\n* Download/upload the underlying compensation matrix for ADC measurements.\n* Adjust the ADC matrix gain (sensitivity).\n\n.. tip:: The SPI protocol is the preferred method for interfacing with more than 1 Cirque circle\n    trackpad from the same MCU (microcontroller). The Cirque Pinnacle does not allow\n    changing the I2C slave device address (via software); this means only 1 Cirque circle trackpad\n    can be accessed over the I2C bus in the lifecycle of an application. That said, you could change\n    the I2C address from ``0x2A`` to ``0x2C`` by soldering a 470K ohm resistor at the junction\n    labeled \"ADR\" (see picture in `Pinout`_ section), although this is untested.\n\nUnsupported Features\n--------------------\n\n* The legacy PS\\\\2 interface is pretty limited.\n  Therefore, it has been neglected in this library.\n* Cirque's circle trackpads ship with the newer non-AG (Advanced Gestures) variant of the\n  Pinnacle touch controller ASIC. Thus, this library focuses on the the non-AG variant's\n  functionality via testing, and it does not provide access to the older AG variant's features\n  (register addresses slightly differ which breaks compatibility).\n\nPinout\n======\n\n.. warning::\n    The GPIO pins on these trackpads are **not** 5v tolerant. If your microcontroller uses 5v logic\n    (ie Arduino Nano, Uno, Pro, Micro), then you must remove the resistors at junctions \"R7\" and \"R8\".\n    Reportedly, this allows powering the trackpad with 5v (to VDD pin) and the trackpad GPIO pins become\n    tolerant of 5v logic levels.\n.. image:: https://github.com/2bndy5/CircuitPython_Cirque_Pinnacle/raw/master/docs/_static/Cirque_GlidePoint-Circle-Trackpad.png\n    :target: https://www.mouser.com/new/cirque/glidepoint-circle-trackpads/\n\nThe above picture is a example of the Cirque GlidePoint circle trackpad. This picture\nis chosen as the test pads (larger copper circular pads) are clearly labeled. The test pads\nare extended to the `12-pin FFC/FPC cable\n<https://www.mouser.com/c/connectors/ffc-fpc/ffc-fpc-jumper-cables/?number%20of%20conductors=12%20Conductor&pitch=0.5%20mm>`_\nconnector (the white block near the bottom). The following table shows how the pins are connected in\nthe `examples <https://cirquepinnacle.readthedocs.io/en/latest/examples.html>`_\n\n.. csv-table:: pinout (ordered the same as the FFC/FPC cable connector)\n    :header: \"cable pin number\",Label,\"MCU pin\",\"RPi pin\",Description\n\n    1,SCK,SCK,\"SCLK (GPIO11)\",\"SPI clock line\"\n    2,SO,MISO,\"MISO (GPIO9)\",\"SPI Master Input Slave Output\"\n    3,SS,D2,\"CE0 (GPIO8)\",\"Slave Select (AKA Chip Select)\"\n    4,DR,D7,GPIO25,\"Data Ready interrupt\"\n    5,SI,MOSI,\"MOSI (GPIO10)\",\"SPI Master Output Slave Input\"\n    6,B2,N/A,N/A,\"Hardware input button #2\"\n    7,B3,N/A,N/A,\"Hardware input button #3\"\n    8,B1,N/A,N/A,\"Hardware input button #1\"\n    9,SCL,SCL,\"SCL (GPIO3)\",\"I2C clock line (no builtin pull-up resistor)\"\n    10,SDA,SDA,\"SDA (GPIO2)\",\"I2C data line (no builtin pull-up resistor)\"\n    11,GND,GND,Ground,Ground\n    12,VDD,3V,3V3,\"3V power supply\"\n\n.. tip::\n    Of course, you can capture button data manually (if your application utilizes more\n    than 3 buttons), but if you connect the pins B1, B2, B3 to momentary push buttons that\n    (when pressed) provide a path to ground, the Pinnacle touch controller will report all 3\n    buttons' states for each touch (or even button only) events.\n\n.. note::\n    These trackpads have no builtin pull-up resistors on the I2C bus' SDA and SCL lines.\n    Examples were tested with a 4.7K ohm resistor for each I2C line tied to 3v.\n\n    The Raspberry Pi boards (excluding any RP2040 boards) all have builtin 1.8K ohm pull-up\n    resistors, so the Linux examples were tested with no addition pull-up resistance.\n\n.. _HCO:\n\nModel Labeling Scheme\n---------------------\n\nTM\\ ``yyyxxx``\\ -202\\ ``i``\\ -\\ ``cc``\\ ``o``\n\n- ``yyyxxx`` stands for the respective vertical & horizontal width of the trackpad in millimeters.\n- ``i`` stands for the hardwired interface protocol (3 = I2C, 4 = SPI). Notice, if there is a\n  resistor populated at the R1 (470K ohm) junction (located just above the Pinnacle ASIC), it\n  is configured for SPI, otherwise it is configured for I2C.\n- ``cc`` stands for Custom Configuration which describes if a 470K ohm resistor is populated at\n  junction R4. \"30\" (resistor at R4 exists) means that the hardware is configured to disable\n  certain features despite what this library does. \"00\" (no resistor at R4) means that the\n  hardware is configured to allow certain features to be manipulated by this library. These\n  features include \"secondary tap\" (thought of as \"right mouse button\" in relative data mode),\n  Intellimouse scrolling (Microsoft patented scroll wheel behavior -- a throw back to when\n  scroll wheels were first introduced), and 180 degree orientation (your application can invert\n  the axis data anyway).\n- ``o`` stands for the overlay type (0 = none, 1 = adhesive, 2 = flat, 3 = curved)\n\nSphinx documentation\n-----------------------\n\nSphinx is used to build the documentation. First, install dependencies (Python 3 & Python's pip\nis required):\n\n.. code-block:: shell\n\n    pip3 install -r docs/requirements.txt\n\nNow, run sphinx. The following command is executed from the repository's root folder.\n\n.. code-block:: shell\n\n    sphinx-build -E -W docs docs/_build/html\n\nThis will output the documentation to ``docs/_build/html``. Open the index.html in your browser to\nview them. It will also (due to ``-W``) error out on any warning. This is a good way to locally verify\nit will pass the CI workflow (and ReadTheDocs builds).\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "A python package for the wrapping CirquePinnacle C++ library.",
    "version": "1.0.1",
    "split_keywords": [
        "cirque",
        "pinnacle",
        "raspberry",
        "pi",
        "linux",
        "driver",
        "touch",
        "sensor"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "63de64f7aa52904750b5ad1f3727a0b596dc18111a615863b08f39bfe6fca8b0",
                "md5": "5fa246a603aff3aab982dd873ea1290d",
                "sha256": "0827bea6aab5747e93d5acc0a44e1ed4624130f78cb009e2f2b71b9444fed087"
            },
            "downloads": -1,
            "filename": "cirque_pinnacle-1.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "5fa246a603aff3aab982dd873ea1290d",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 141794,
            "upload_time": "2023-04-21T03:56:16",
            "upload_time_iso_8601": "2023-04-21T03:56:16.970337Z",
            "url": "https://files.pythonhosted.org/packages/63/de/64f7aa52904750b5ad1f3727a0b596dc18111a615863b08f39bfe6fca8b0/cirque_pinnacle-1.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9c353541149f86ff10827391c706b32fd193db3f06b59fb68ac814d5890179f7",
                "md5": "aec9a55465422bfaf25790fd1943c738",
                "sha256": "f51ab0292a543a69abdd3337995387de3475e511542836fdbb8fb09ae2b4915d"
            },
            "downloads": -1,
            "filename": "cirque_pinnacle-1.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "aec9a55465422bfaf25790fd1943c738",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 154909,
            "upload_time": "2023-04-21T03:56:19",
            "upload_time_iso_8601": "2023-04-21T03:56:19.891999Z",
            "url": "https://files.pythonhosted.org/packages/9c/35/3541149f86ff10827391c706b32fd193db3f06b59fb68ac814d5890179f7/cirque_pinnacle-1.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "30dd5620d40919bccd1643b98f9713f09d80c034021d0639896885ed0efe7a7b",
                "md5": "23efda0738de48e1edb4c7b239e56d06",
                "sha256": "9861d4babf19eb612f3a09a2e9e2d5d8e8f6e23160ac335a934f5df181d18a30"
            },
            "downloads": -1,
            "filename": "cirque_pinnacle-1.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "23efda0738de48e1edb4c7b239e56d06",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 141793,
            "upload_time": "2023-04-21T03:56:21",
            "upload_time_iso_8601": "2023-04-21T03:56:21.531736Z",
            "url": "https://files.pythonhosted.org/packages/30/dd/5620d40919bccd1643b98f9713f09d80c034021d0639896885ed0efe7a7b/cirque_pinnacle-1.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e6764c4b404704b285cf1926f50d91cf60c9bac328d30689871e56d9736709fd",
                "md5": "a5cb1a87c2f235e38a1da84db26e1eab",
                "sha256": "1037d8b99eb13f25b0693f23ab0c5177465cafa3e053937dcba320b04358eb36"
            },
            "downloads": -1,
            "filename": "cirque_pinnacle-1.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a5cb1a87c2f235e38a1da84db26e1eab",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 154852,
            "upload_time": "2023-04-21T03:56:23",
            "upload_time_iso_8601": "2023-04-21T03:56:23.900001Z",
            "url": "https://files.pythonhosted.org/packages/e6/76/4c4b404704b285cf1926f50d91cf60c9bac328d30689871e56d9736709fd/cirque_pinnacle-1.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "492467ac8750e6044376f357fbed5fb7d18574b6d3d3080746fe7e53721c8153",
                "md5": "5ded4dfc9379a234a3157ea8ea94ff4c",
                "sha256": "9c1dd5b7b5b692f2beb3b1253cddef0e1c5dffd02890ddd1851cda5836002e73"
            },
            "downloads": -1,
            "filename": "cirque_pinnacle-1.0.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "5ded4dfc9379a234a3157ea8ea94ff4c",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 150865,
            "upload_time": "2023-04-21T03:56:25",
            "upload_time_iso_8601": "2023-04-21T03:56:25.939413Z",
            "url": "https://files.pythonhosted.org/packages/49/24/67ac8750e6044376f357fbed5fb7d18574b6d3d3080746fe7e53721c8153/cirque_pinnacle-1.0.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "92db9d8e60e339636dde483e74ab0f3fc54d05f31f2a3a8e37cec55385368381",
                "md5": "cee779325fedc2b8dd6d9b2cc223f434",
                "sha256": "6740c83a13c5e1abb75c68bbf21333389ca8c8f60ec46e06ffdf0d85c49795f4"
            },
            "downloads": -1,
            "filename": "cirque_pinnacle-1.0.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "cee779325fedc2b8dd6d9b2cc223f434",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 162497,
            "upload_time": "2023-04-21T03:56:27",
            "upload_time_iso_8601": "2023-04-21T03:56:27.034501Z",
            "url": "https://files.pythonhosted.org/packages/92/db/9d8e60e339636dde483e74ab0f3fc54d05f31f2a3a8e37cec55385368381/cirque_pinnacle-1.0.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4b47dbc5d4f37965d69bbc3bc20d1805dde330b6f36f3c6f7a3a2ac1e8358a3d",
                "md5": "453415485d81ddff9924c12e1860fc57",
                "sha256": "9fed56d6fb0e04fff8c7cdeadd68b90f6155cc54d418cdf156134366deee33f2"
            },
            "downloads": -1,
            "filename": "cirque_pinnacle-1.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "453415485d81ddff9924c12e1860fc57",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 141409,
            "upload_time": "2023-04-21T03:56:28",
            "upload_time_iso_8601": "2023-04-21T03:56:28.540158Z",
            "url": "https://files.pythonhosted.org/packages/4b/47/dbc5d4f37965d69bbc3bc20d1805dde330b6f36f3c6f7a3a2ac1e8358a3d/cirque_pinnacle-1.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "034e71d19a0b60261a8f9e7f8705ceedb563fb4ee251e5448db2a1a144eff819",
                "md5": "4ead07e734575bd589e2b8bc6ee051c3",
                "sha256": "a2996b4290f3d3e2d67958284a408f067d1df5d3fd96547debe6125c583067fe"
            },
            "downloads": -1,
            "filename": "cirque_pinnacle-1.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4ead07e734575bd589e2b8bc6ee051c3",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 155032,
            "upload_time": "2023-04-21T03:56:30",
            "upload_time_iso_8601": "2023-04-21T03:56:30.315343Z",
            "url": "https://files.pythonhosted.org/packages/03/4e/71d19a0b60261a8f9e7f8705ceedb563fb4ee251e5448db2a1a144eff819/cirque_pinnacle-1.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9c81ac4ba84b33e82598c9c6ab670cc8c0b1f84995298c9aae5ef1be685f31ca",
                "md5": "7fd19f2c4fa35b1de6fbd4f2af42d09b",
                "sha256": "d0c29db71de05c427a2f0eb8316a7467eacbf911c26bc988636a5748d6187618"
            },
            "downloads": -1,
            "filename": "cirque_pinnacle-1.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "7fd19f2c4fa35b1de6fbd4f2af42d09b",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 142330,
            "upload_time": "2023-04-21T03:56:31",
            "upload_time_iso_8601": "2023-04-21T03:56:31.670710Z",
            "url": "https://files.pythonhosted.org/packages/9c/81/ac4ba84b33e82598c9c6ab670cc8c0b1f84995298c9aae5ef1be685f31ca/cirque_pinnacle-1.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "74043283b4bd83b44b46a36dab91247af0d6bf1bf71f3d9c5684d464fd938679",
                "md5": "4d74590bc437b4488db282fa5f2ec139",
                "sha256": "dc7351f1e86c1f849d82bad37c15e012f82782185aa5a2a0f54ac10af7878996"
            },
            "downloads": -1,
            "filename": "cirque_pinnacle-1.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4d74590bc437b4488db282fa5f2ec139",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 155715,
            "upload_time": "2023-04-21T03:56:33",
            "upload_time_iso_8601": "2023-04-21T03:56:33.561692Z",
            "url": "https://files.pythonhosted.org/packages/74/04/3283b4bd83b44b46a36dab91247af0d6bf1bf71f3d9c5684d464fd938679/cirque_pinnacle-1.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "de8d0abba40548916920d10ea885a8ccaa7f72690773d06de32265b0e38e53ac",
                "md5": "a68065dc61cc7de2f4d981145d73d54e",
                "sha256": "536db10f109208887ba1ae26458fad6d02c9a739901c2c3d015bb592037bfb6b"
            },
            "downloads": -1,
            "filename": "cirque_pinnacle-1.0.1.tar.gz",
            "has_sig": false,
            "md5_digest": "a68065dc61cc7de2f4d981145d73d54e",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 308142,
            "upload_time": "2023-04-21T04:33:58",
            "upload_time_iso_8601": "2023-04-21T04:33:58.728627Z",
            "url": "https://files.pythonhosted.org/packages/de/8d/0abba40548916920d10ea885a8ccaa7f72690773d06de32265b0e38e53ac/cirque_pinnacle-1.0.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-04-21 04:33:58",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "lcname": "cirque-pinnacle"
}
        
Elapsed time: 0.05640s