charidotella


Namecharidotella JSON
Version 3.1.0 PyPI version JSON
download
home_pagehttps://github.com/neuromorphicsystems/charidotella
SummaryCharidotella is a toolbox to organise and visualise Event Stream (.es) recordings
upload_time2023-12-11 01:05:23
maintainer
docs_urlNone
authorAlexandre Marcireau
requires_python
license
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            ![banner](banner.png)

Charidotella (https://en.wikipedia.org/wiki/Charidotella_sexpunctata) is a toolbox to organise and visualise Event Stream (.es) recordings.

It supports Python 3.9, 3.10, and 3.11.

- [Dependencies](#dependencies)
- [Get started](#get-started)
- [Contribute](#contribute)

## Dependencies

-   **Debian / Ubuntu**

    ```sh
    sudo apt install ffmpeg python3 python3-pip vlc
    ```

-   **macOS**

    1. Install Homebrew (https://brew.sh)
    2. Run in a terminal
        ```sh
        brew install ffmpeg python3
        ```

-   **Windows**

    1. Run in an elevated Powershell (right-click > Run as Administrator)
        ```powershell
        winget install python3 --scope machine
        winget install ffmpeg --scope machine
        ```
    2. Reboot the machine

## Get started

1.  Install the Python package (system-wide or in a virtual environment)

    a. System-wide installation

        -   **Debian / Ubuntu**
            ```sh
            sudo python3 -m pip install charidotella
            ```

        -   **macOS**
            ```sh
            python3 -m pip install charidotella
            ```

        -   **Windows**

            Run in an elevated Powershell (right-click > Run as Administrator)
            ```powershell
            & 'C:\Program Files\Python311\python.exe' -m pip install charidotella
            ```

    b. Installation in a virtual environment

        -   **Debian / Ubuntu**
            ```sh
            python3 -m venv charidotella_venv
            source charidotella_venv/bin/activate
            pip install charidotella
            ```

        -   **macOS**
            ```sh
            python3 -m venv charidotella_venv
            source charidotella_venv/bin/activate
            pip install charidotella
            ```

        -   **Windows**

            Run in an elevated Powershell (right-click > Run as Administrator)
            ```powershell
            & 'C:\Program Files\Python311\python.exe' -m venv charidotella_venv
            charidotella_venv\Scripts\Activate.ps1
            pip install charidotella
            ```

2.  Create a directory _my-wonderful-project_ with the following structure (the file names do not matter as long as their extension is _.es_)

    ```txt
    my-wonderful-project
    └── recordings
        ├── file_1.es
        ├── file_2.es
        ├── ...
        └── file_n.es
    ```

3.  Generate a configuration file

    ```sh
    cd my-wonderful-project
    charidotella init
    ```

    The directory now has the following structure

    ```txt
    my-wonderful-project
    ├── recordings
    │   ├── file_1.es
    │   ├── file_2.es
    │   ├── ...
    │   └── file_n.es
    └── charidotella-configuration.toml
    ```

4.  (Optional) Edit `charidotella-configuration.toml` to change the jobs' parameters

5.  Run the jobs

    ```
    charidotella run
    ```

    The directory now has the following structure

    ```txt
    my-wonderful-project
    ├── recordings
    │   ├── file_1.es
    │   ├── file_2.es
    │   ├── ...
    │   └── file_n.es
    ├── renders
    │   ├── file_1
    │   │    ├── filtered-recording.es
    │   │    ├── rendered-file-1.es
    │   │    ├── ...
    │   │    └── rendered-file-m.es
    │   ├── file_2
    │   ├── ...
    │   └── file_n
    └── charidotella-configuration.toml
    ```

6.  (Optional) Edit `charidotella-configuration.toml` and run `charidotella run` again (job that have already been completed will be skipped unless `--force` is used)

See `charidotella --help` for a list of other options.

## Contribute

After code edits, run the formatters and linters.

```
isort .; black .; pyright .
```

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/neuromorphicsystems/charidotella",
    "name": "charidotella",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "",
    "author": "Alexandre Marcireau",
    "author_email": "alexandre.marcireau@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/46/52/c2ac1617e2f909d0eeffd5ef83f5ecfe4637cf862177a2fc87671acf267c/charidotella-3.1.0.tar.gz",
    "platform": null,
    "description": "![banner](banner.png)\n\nCharidotella (https://en.wikipedia.org/wiki/Charidotella_sexpunctata) is a toolbox to organise and visualise Event Stream (.es) recordings.\n\nIt supports Python 3.9, 3.10, and 3.11.\n\n- [Dependencies](#dependencies)\n- [Get started](#get-started)\n- [Contribute](#contribute)\n\n## Dependencies\n\n-   **Debian / Ubuntu**\n\n    ```sh\n    sudo apt install ffmpeg python3 python3-pip vlc\n    ```\n\n-   **macOS**\n\n    1. Install Homebrew (https://brew.sh)\n    2. Run in a terminal\n        ```sh\n        brew install ffmpeg python3\n        ```\n\n-   **Windows**\n\n    1. Run in an elevated Powershell (right-click > Run as Administrator)\n        ```powershell\n        winget install python3 --scope machine\n        winget install ffmpeg --scope machine\n        ```\n    2. Reboot the machine\n\n## Get started\n\n1.  Install the Python package (system-wide or in a virtual environment)\n\n    a. System-wide installation\n\n        -   **Debian / Ubuntu**\n            ```sh\n            sudo python3 -m pip install charidotella\n            ```\n\n        -   **macOS**\n            ```sh\n            python3 -m pip install charidotella\n            ```\n\n        -   **Windows**\n\n            Run in an elevated Powershell (right-click > Run as Administrator)\n            ```powershell\n            & 'C:\\Program Files\\Python311\\python.exe' -m pip install charidotella\n            ```\n\n    b. Installation in a virtual environment\n\n        -   **Debian / Ubuntu**\n            ```sh\n            python3 -m venv charidotella_venv\n            source charidotella_venv/bin/activate\n            pip install charidotella\n            ```\n\n        -   **macOS**\n            ```sh\n            python3 -m venv charidotella_venv\n            source charidotella_venv/bin/activate\n            pip install charidotella\n            ```\n\n        -   **Windows**\n\n            Run in an elevated Powershell (right-click > Run as Administrator)\n            ```powershell\n            & 'C:\\Program Files\\Python311\\python.exe' -m venv charidotella_venv\n            charidotella_venv\\Scripts\\Activate.ps1\n            pip install charidotella\n            ```\n\n2.  Create a directory _my-wonderful-project_ with the following structure (the file names do not matter as long as their extension is _.es_)\n\n    ```txt\n    my-wonderful-project\n    \u2514\u2500\u2500 recordings\n        \u251c\u2500\u2500 file_1.es\n        \u251c\u2500\u2500 file_2.es\n        \u251c\u2500\u2500 ...\n        \u2514\u2500\u2500 file_n.es\n    ```\n\n3.  Generate a configuration file\n\n    ```sh\n    cd my-wonderful-project\n    charidotella init\n    ```\n\n    The directory now has the following structure\n\n    ```txt\n    my-wonderful-project\n    \u251c\u2500\u2500 recordings\n    \u2502   \u251c\u2500\u2500 file_1.es\n    \u2502   \u251c\u2500\u2500 file_2.es\n    \u2502   \u251c\u2500\u2500 ...\n    \u2502   \u2514\u2500\u2500 file_n.es\n    \u2514\u2500\u2500 charidotella-configuration.toml\n    ```\n\n4.  (Optional) Edit `charidotella-configuration.toml` to change the jobs' parameters\n\n5.  Run the jobs\n\n    ```\n    charidotella run\n    ```\n\n    The directory now has the following structure\n\n    ```txt\n    my-wonderful-project\n    \u251c\u2500\u2500 recordings\n    \u2502   \u251c\u2500\u2500 file_1.es\n    \u2502   \u251c\u2500\u2500 file_2.es\n    \u2502   \u251c\u2500\u2500 ...\n    \u2502   \u2514\u2500\u2500 file_n.es\n    \u251c\u2500\u2500 renders\n    \u2502   \u251c\u2500\u2500 file_1\n    \u2502   \u2502    \u251c\u2500\u2500 filtered-recording.es\n    \u2502   \u2502    \u251c\u2500\u2500 rendered-file-1.es\n    \u2502   \u2502    \u251c\u2500\u2500 ...\n    \u2502   \u2502    \u2514\u2500\u2500 rendered-file-m.es\n    \u2502   \u251c\u2500\u2500 file_2\n    \u2502   \u251c\u2500\u2500 ...\n    \u2502   \u2514\u2500\u2500 file_n\n    \u2514\u2500\u2500 charidotella-configuration.toml\n    ```\n\n6.  (Optional) Edit `charidotella-configuration.toml` and run `charidotella run` again (job that have already been completed will be skipped unless `--force` is used)\n\nSee `charidotella --help` for a list of other options.\n\n## Contribute\n\nAfter code edits, run the formatters and linters.\n\n```\nisort .; black .; pyright .\n```\n",
    "bugtrack_url": null,
    "license": "",
    "summary": "Charidotella is a toolbox to organise and visualise Event Stream (.es) recordings",
    "version": "3.1.0",
    "project_urls": {
        "Homepage": "https://github.com/neuromorphicsystems/charidotella"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "10150010284f273b92e8c4c2759371286689084090cca9a5105b5ce58002ac98",
                "md5": "5f96c25717964fa7ffa0f2c195d0d048",
                "sha256": "d7ad3cca8d364f213f4668bc083e410a5964d2b9a58265d37529581fde0a7b82"
            },
            "downloads": -1,
            "filename": "charidotella-3.1.0-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5f96c25717964fa7ffa0f2c195d0d048",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 980462,
            "upload_time": "2023-12-11T01:04:21",
            "upload_time_iso_8601": "2023-12-11T01:04:21.334642Z",
            "url": "https://files.pythonhosted.org/packages/10/15/0010284f273b92e8c4c2759371286689084090cca9a5105b5ce58002ac98/charidotella-3.1.0-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b2833954b5fbda638bd3d01b0b8d214d688c2f8128b13d422265e65cf2175457",
                "md5": "debc5d7dea1849e5acad6d88e2017628",
                "sha256": "8d93c4acd74389c91a203657e96312bb21976878cb7bde1be8925a45a1d5ab12"
            },
            "downloads": -1,
            "filename": "charidotella-3.1.0-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "debc5d7dea1849e5acad6d88e2017628",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 980816,
            "upload_time": "2023-12-11T01:04:23",
            "upload_time_iso_8601": "2023-12-11T01:04:23.831950Z",
            "url": "https://files.pythonhosted.org/packages/b2/83/3954b5fbda638bd3d01b0b8d214d688c2f8128b13d422265e65cf2175457/charidotella-3.1.0-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bbc1d049251f80699a0977d8b67dedeac4cdba28950792155a186abde0f21cf2",
                "md5": "b4f3533e5bc2172916a8d64b50dccd26",
                "sha256": "c5b8803475c763bc9937e8b676e4b0d8afd4b4b4b2d7b0d4300537b0599b7f05"
            },
            "downloads": -1,
            "filename": "charidotella-3.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b4f3533e5bc2172916a8d64b50dccd26",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 1091395,
            "upload_time": "2023-12-11T01:04:26",
            "upload_time_iso_8601": "2023-12-11T01:04:26.254963Z",
            "url": "https://files.pythonhosted.org/packages/bb/c1/d049251f80699a0977d8b67dedeac4cdba28950792155a186abde0f21cf2/charidotella-3.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5c362913e39cf568a0a62e286d90367216e43f92edcf421b89796776de757330",
                "md5": "9feeaf5e77d19c5131cc34542030e516",
                "sha256": "6d379af6b2cb6707815cb57f70a24bfed40569f8c85364a063c65ad7c399f3e2"
            },
            "downloads": -1,
            "filename": "charidotella-3.1.0-cp310-cp310-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9feeaf5e77d19c5131cc34542030e516",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 1606514,
            "upload_time": "2023-12-11T01:04:28",
            "upload_time_iso_8601": "2023-12-11T01:04:28.503926Z",
            "url": "https://files.pythonhosted.org/packages/5c/36/2913e39cf568a0a62e286d90367216e43f92edcf421b89796776de757330/charidotella-3.1.0-cp310-cp310-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9054f11f7f954409051082650df58815a76a830984304fd73281b34be2227d31",
                "md5": "e7a380c4aa40e5d45f2f3bec7c8d48d5",
                "sha256": "7107ae02dfa1927cb4c1cca7418fc03d071a96897494beb9991787c726eaf2b7"
            },
            "downloads": -1,
            "filename": "charidotella-3.1.0-cp310-cp310-win32.whl",
            "has_sig": false,
            "md5_digest": "e7a380c4aa40e5d45f2f3bec7c8d48d5",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 835356,
            "upload_time": "2023-12-11T01:04:30",
            "upload_time_iso_8601": "2023-12-11T01:04:30.723800Z",
            "url": "https://files.pythonhosted.org/packages/90/54/f11f7f954409051082650df58815a76a830984304fd73281b34be2227d31/charidotella-3.1.0-cp310-cp310-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4be07e50a5f933a355150bc5348381f3a1a7c1b7139146f2b49fc086829eda70",
                "md5": "8383493f5d2a628301cafd7981896b7a",
                "sha256": "3e95df2f6d232e1fa99ee06cf995bfd006fda8a15f8e7303ae54c3b67ee46d04"
            },
            "downloads": -1,
            "filename": "charidotella-3.1.0-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "8383493f5d2a628301cafd7981896b7a",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 835806,
            "upload_time": "2023-12-11T01:04:32",
            "upload_time_iso_8601": "2023-12-11T01:04:32.751966Z",
            "url": "https://files.pythonhosted.org/packages/4b/e0/7e50a5f933a355150bc5348381f3a1a7c1b7139146f2b49fc086829eda70/charidotella-3.1.0-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6591ec3de5c1a192091855f450673e15bb425ed9fe2ad769a56c513145580445",
                "md5": "aa104fc21c97d74414f8f64dd44970ce",
                "sha256": "3a7aa327911a50adf275a26fce41be056d870ceba8f28646a4f8c0a815f47e0b"
            },
            "downloads": -1,
            "filename": "charidotella-3.1.0-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "aa104fc21c97d74414f8f64dd44970ce",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 980461,
            "upload_time": "2023-12-11T01:04:35",
            "upload_time_iso_8601": "2023-12-11T01:04:35.430852Z",
            "url": "https://files.pythonhosted.org/packages/65/91/ec3de5c1a192091855f450673e15bb425ed9fe2ad769a56c513145580445/charidotella-3.1.0-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "343fb9be5279bd09d15b224d2d529b46f478b559b9b32b387b6135624afe6145",
                "md5": "82d0ec87242c19181d63d60c86fe1574",
                "sha256": "e7b10aa4ff79391494c6583c6b783e0ef28a611218887865b0222403e84d456c"
            },
            "downloads": -1,
            "filename": "charidotella-3.1.0-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "82d0ec87242c19181d63d60c86fe1574",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 980814,
            "upload_time": "2023-12-11T01:04:37",
            "upload_time_iso_8601": "2023-12-11T01:04:37.048790Z",
            "url": "https://files.pythonhosted.org/packages/34/3f/b9be5279bd09d15b224d2d529b46f478b559b9b32b387b6135624afe6145/charidotella-3.1.0-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ea9048ca82d365edde10151a1c8ffb6e6942dced2d8489236270c8b48b513227",
                "md5": "aff82923bb5c9bd00dbdd7956db5585f",
                "sha256": "3a5f45d70a328fe48b69eec85b3605d7545ec4ebf6b9eb84395e5a07768c2411"
            },
            "downloads": -1,
            "filename": "charidotella-3.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "aff82923bb5c9bd00dbdd7956db5585f",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 1091402,
            "upload_time": "2023-12-11T01:04:39",
            "upload_time_iso_8601": "2023-12-11T01:04:39.220617Z",
            "url": "https://files.pythonhosted.org/packages/ea/90/48ca82d365edde10151a1c8ffb6e6942dced2d8489236270c8b48b513227/charidotella-3.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "03d0905243c4ee3b613b4048f0434d6adf7e9384962cb60fbf756d9cc8272f41",
                "md5": "b2baeaa2e40f502f7ac5eab4f9ac80e0",
                "sha256": "4c6ae93d86187b91f96ac77f62e9ad701ec229a9af4243b86721bb98b73967a2"
            },
            "downloads": -1,
            "filename": "charidotella-3.1.0-cp311-cp311-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b2baeaa2e40f502f7ac5eab4f9ac80e0",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 1607338,
            "upload_time": "2023-12-11T01:04:40",
            "upload_time_iso_8601": "2023-12-11T01:04:40.815452Z",
            "url": "https://files.pythonhosted.org/packages/03/d0/905243c4ee3b613b4048f0434d6adf7e9384962cb60fbf756d9cc8272f41/charidotella-3.1.0-cp311-cp311-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ef179b2751ba9410f8e142a5f58f283be08914f1f86ac13a95ab77c8f4a5a8da",
                "md5": "72adbd03ecaf4b22341caa0e01187288",
                "sha256": "bbb514937de83bf28907cbc064e7c46b6771dd378e0c20ebaaf0e45e0163cf65"
            },
            "downloads": -1,
            "filename": "charidotella-3.1.0-cp311-cp311-win32.whl",
            "has_sig": false,
            "md5_digest": "72adbd03ecaf4b22341caa0e01187288",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 835359,
            "upload_time": "2023-12-11T01:04:42",
            "upload_time_iso_8601": "2023-12-11T01:04:42.551471Z",
            "url": "https://files.pythonhosted.org/packages/ef/17/9b2751ba9410f8e142a5f58f283be08914f1f86ac13a95ab77c8f4a5a8da/charidotella-3.1.0-cp311-cp311-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3e8f8a3a599a4e8f82310020ac1f204ba4692ff255e7c00b2b83b098f6f794c0",
                "md5": "3108121415c0db3ba34a61828c07d4b5",
                "sha256": "e9c16e0388e6d7ee6edc18f9f65af38f5de2f700cf407d89a5ac25c6604af6b5"
            },
            "downloads": -1,
            "filename": "charidotella-3.1.0-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "3108121415c0db3ba34a61828c07d4b5",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 835805,
            "upload_time": "2023-12-11T01:04:45",
            "upload_time_iso_8601": "2023-12-11T01:04:45.007019Z",
            "url": "https://files.pythonhosted.org/packages/3e/8f/8a3a599a4e8f82310020ac1f204ba4692ff255e7c00b2b83b098f6f794c0/charidotella-3.1.0-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "75d4f8c6110f95f6d5800520a0d582cb5276116dcba4f89e47109fc447058e1b",
                "md5": "778618f4e079db4aed4233c145a8fffc",
                "sha256": "766b019841e81560cfac291341c38666008d9ac834b0c1d5b8301e6909b9a1de"
            },
            "downloads": -1,
            "filename": "charidotella-3.1.0-cp312-cp312-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "778618f4e079db4aed4233c145a8fffc",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 980464,
            "upload_time": "2023-12-11T01:04:46",
            "upload_time_iso_8601": "2023-12-11T01:04:46.545271Z",
            "url": "https://files.pythonhosted.org/packages/75/d4/f8c6110f95f6d5800520a0d582cb5276116dcba4f89e47109fc447058e1b/charidotella-3.1.0-cp312-cp312-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e773d35694b79dacec25c9ee9824b2684bd8563de6b414e4e1a4a0fbcbb2bde2",
                "md5": "c5cdeab2fed140a62891f9b4cc6d31e3",
                "sha256": "a9e0f769c68ffc9cfc52763464cae1289bc51a52018d6477f2848114be1b61ca"
            },
            "downloads": -1,
            "filename": "charidotella-3.1.0-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "c5cdeab2fed140a62891f9b4cc6d31e3",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 980814,
            "upload_time": "2023-12-11T01:04:48",
            "upload_time_iso_8601": "2023-12-11T01:04:48.666965Z",
            "url": "https://files.pythonhosted.org/packages/e7/73/d35694b79dacec25c9ee9824b2684bd8563de6b414e4e1a4a0fbcbb2bde2/charidotella-3.1.0-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9dbabe2fbd6c841b396eecab03c55ece033b6c842f2601afa781bd75ad869846",
                "md5": "8d0ed3bc697b3a5c283735d3d612d677",
                "sha256": "00ed76d54ed0a2d766b99d77a5e6abb1eaa6a70524af2f49ebe5154d9b0c8bfa"
            },
            "downloads": -1,
            "filename": "charidotella-3.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8d0ed3bc697b3a5c283735d3d612d677",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 1091545,
            "upload_time": "2023-12-11T01:04:51",
            "upload_time_iso_8601": "2023-12-11T01:04:51.152190Z",
            "url": "https://files.pythonhosted.org/packages/9d/ba/be2fbd6c841b396eecab03c55ece033b6c842f2601afa781bd75ad869846/charidotella-3.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "989e1c4384ead2d30f378a4a49506e064008e4c82f67f637bd9a051c790cde25",
                "md5": "39b94907fe2e20336947d31671de943f",
                "sha256": "c0a9004e5027c971912f7f173e563641f8dbbe50272e0b876d7cfdf9dc9f8ca6"
            },
            "downloads": -1,
            "filename": "charidotella-3.1.0-cp312-cp312-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "39b94907fe2e20336947d31671de943f",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 1607014,
            "upload_time": "2023-12-11T01:04:53",
            "upload_time_iso_8601": "2023-12-11T01:04:53.773182Z",
            "url": "https://files.pythonhosted.org/packages/98/9e/1c4384ead2d30f378a4a49506e064008e4c82f67f637bd9a051c790cde25/charidotella-3.1.0-cp312-cp312-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4a3b13387110c8e2fde7f5d052854d68dea403bf9ca49610fcedeaf2338914a5",
                "md5": "189e34797f4973d65c0d526969826e12",
                "sha256": "a1c73e878f395e8e87139f67ce6136c55a7802347634ad2be9d8d38555155720"
            },
            "downloads": -1,
            "filename": "charidotella-3.1.0-cp312-cp312-win32.whl",
            "has_sig": false,
            "md5_digest": "189e34797f4973d65c0d526969826e12",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 835355,
            "upload_time": "2023-12-11T01:04:55",
            "upload_time_iso_8601": "2023-12-11T01:04:55.959455Z",
            "url": "https://files.pythonhosted.org/packages/4a/3b/13387110c8e2fde7f5d052854d68dea403bf9ca49610fcedeaf2338914a5/charidotella-3.1.0-cp312-cp312-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "32b50b7b4850534f3365ef34acf322ecc556c59a7ca25d1d1bb8e07d10dd6584",
                "md5": "61c85ed269536cc24b9e04876383d106",
                "sha256": "89759d2e1a160ac7ab9ce4f80f2fda42589172fda6ccac4df31a378751ebc2e1"
            },
            "downloads": -1,
            "filename": "charidotella-3.1.0-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "61c85ed269536cc24b9e04876383d106",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 835807,
            "upload_time": "2023-12-11T01:04:57",
            "upload_time_iso_8601": "2023-12-11T01:04:57.702391Z",
            "url": "https://files.pythonhosted.org/packages/32/b5/0b7b4850534f3365ef34acf322ecc556c59a7ca25d1d1bb8e07d10dd6584/charidotella-3.1.0-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b7eccbf614de6a891f76be89b9af80d8e9a10c1a1858f98d31b314e37b7ea5f6",
                "md5": "e75fe80603d5fd20efc548ca35e3d505",
                "sha256": "ed21a759b6b6a6ee5a78b508fbe4c82b58aef231c7dab991d27ee70d42771794"
            },
            "downloads": -1,
            "filename": "charidotella-3.1.0-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e75fe80603d5fd20efc548ca35e3d505",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 980458,
            "upload_time": "2023-12-11T01:05:00",
            "upload_time_iso_8601": "2023-12-11T01:05:00.143471Z",
            "url": "https://files.pythonhosted.org/packages/b7/ec/cbf614de6a891f76be89b9af80d8e9a10c1a1858f98d31b314e37b7ea5f6/charidotella-3.1.0-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "58b267f5cba014da4d14fa95b173811a663ff20b8af2bd433b60db76fafc5de0",
                "md5": "a935c73de02bd95cd654712256fc0a3d",
                "sha256": "4de0a359a46977b32fd6fab41dbbc92a2c75ec9a17007ba52578d4a8fa44c16b"
            },
            "downloads": -1,
            "filename": "charidotella-3.1.0-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "a935c73de02bd95cd654712256fc0a3d",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 980807,
            "upload_time": "2023-12-11T01:05:03",
            "upload_time_iso_8601": "2023-12-11T01:05:03.021077Z",
            "url": "https://files.pythonhosted.org/packages/58/b2/67f5cba014da4d14fa95b173811a663ff20b8af2bd433b60db76fafc5de0/charidotella-3.1.0-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c804175f90bba08c9d70389b53fd356725334fe25749ec88999b8693023f5d8a",
                "md5": "325a168342dd4b28ec092ab8c393ac85",
                "sha256": "ba5b0c7f1968ce77f7412b8b3b3ca695612db135ad0472eacfc75929beb9c302"
            },
            "downloads": -1,
            "filename": "charidotella-3.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "325a168342dd4b28ec092ab8c393ac85",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 1091786,
            "upload_time": "2023-12-11T01:05:05",
            "upload_time_iso_8601": "2023-12-11T01:05:05.464012Z",
            "url": "https://files.pythonhosted.org/packages/c8/04/175f90bba08c9d70389b53fd356725334fe25749ec88999b8693023f5d8a/charidotella-3.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b38d4bf5d3fd6a7f8363fadf435069db978bb7e21f7adafd5b64f0e89fe0d61b",
                "md5": "4e293e95a27e3e0f337437fc7b50c672",
                "sha256": "505591bc251fa3a0b0ffa246b7cafa40b675d0a7318a6d3ba900d9862f265a09"
            },
            "downloads": -1,
            "filename": "charidotella-3.1.0-cp38-cp38-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4e293e95a27e3e0f337437fc7b50c672",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 1606562,
            "upload_time": "2023-12-11T01:05:07",
            "upload_time_iso_8601": "2023-12-11T01:05:07.048975Z",
            "url": "https://files.pythonhosted.org/packages/b3/8d/4bf5d3fd6a7f8363fadf435069db978bb7e21f7adafd5b64f0e89fe0d61b/charidotella-3.1.0-cp38-cp38-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cbbb244d7db892c7fdb4a7b146e999cc837e399054c5b13fb0f254191ce091ad",
                "md5": "628ea2f61193490d1f85ad0cc8d81475",
                "sha256": "996d249710557185ec081a8687b4e168a71b49d5be18b640fb1764921aefde4d"
            },
            "downloads": -1,
            "filename": "charidotella-3.1.0-cp38-cp38-win32.whl",
            "has_sig": false,
            "md5_digest": "628ea2f61193490d1f85ad0cc8d81475",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 835352,
            "upload_time": "2023-12-11T01:05:09",
            "upload_time_iso_8601": "2023-12-11T01:05:09.429194Z",
            "url": "https://files.pythonhosted.org/packages/cb/bb/244d7db892c7fdb4a7b146e999cc837e399054c5b13fb0f254191ce091ad/charidotella-3.1.0-cp38-cp38-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c029521657ef164fa0e1a61489f05352072163f023f6e62339288884e5da573e",
                "md5": "2f8830db513a0a812fdbe33a42f95f39",
                "sha256": "e13a9fa4a78ca2d0ad1fc43c4f7650b70d0deecc2ee681f3c676562e19b33ac2"
            },
            "downloads": -1,
            "filename": "charidotella-3.1.0-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "2f8830db513a0a812fdbe33a42f95f39",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 835801,
            "upload_time": "2023-12-11T01:05:11",
            "upload_time_iso_8601": "2023-12-11T01:05:11.055998Z",
            "url": "https://files.pythonhosted.org/packages/c0/29/521657ef164fa0e1a61489f05352072163f023f6e62339288884e5da573e/charidotella-3.1.0-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "006d22ab07414d3fc751977ddaef4c5bd57f3c4fa47069ebd42a4ede2ecc5f1d",
                "md5": "e810b9b4320c79da654df0d311b54279",
                "sha256": "1a2ab6628b3729cbba0891ce7e20e3801138f8574d66dc4f8596f8593f95f5ab"
            },
            "downloads": -1,
            "filename": "charidotella-3.1.0-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e810b9b4320c79da654df0d311b54279",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 980453,
            "upload_time": "2023-12-11T01:05:12",
            "upload_time_iso_8601": "2023-12-11T01:05:12.910520Z",
            "url": "https://files.pythonhosted.org/packages/00/6d/22ab07414d3fc751977ddaef4c5bd57f3c4fa47069ebd42a4ede2ecc5f1d/charidotella-3.1.0-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a9d5cba61f9ce6ea67f1c999e1f795d214c469979152af3ea3805f6bdc4741e3",
                "md5": "1ba983a1bc1c1ae1f5f57c5088a18f1a",
                "sha256": "fa54f542b81411beb37661d493ca20b611bb717badde57a3054f0b42776a0619"
            },
            "downloads": -1,
            "filename": "charidotella-3.1.0-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "1ba983a1bc1c1ae1f5f57c5088a18f1a",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 980810,
            "upload_time": "2023-12-11T01:05:14",
            "upload_time_iso_8601": "2023-12-11T01:05:14.488560Z",
            "url": "https://files.pythonhosted.org/packages/a9/d5/cba61f9ce6ea67f1c999e1f795d214c469979152af3ea3805f6bdc4741e3/charidotella-3.1.0-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5342690777a2b8f7fdb081f130c0e67a93f476598b657ba6782ab845c2ff906a",
                "md5": "4d0c2d5cd01a958c91e911a03adbbf2a",
                "sha256": "4cd632390724ee91ee0ee689adaaed4dce05c4dd442a82ff13f6daf74783d605"
            },
            "downloads": -1,
            "filename": "charidotella-3.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4d0c2d5cd01a958c91e911a03adbbf2a",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 1091233,
            "upload_time": "2023-12-11T01:05:16",
            "upload_time_iso_8601": "2023-12-11T01:05:16.828024Z",
            "url": "https://files.pythonhosted.org/packages/53/42/690777a2b8f7fdb081f130c0e67a93f476598b657ba6782ab845c2ff906a/charidotella-3.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "afa0e16da169b02efd441631d7b76099bb514d1732505fee854dfdf7a4ec0a1d",
                "md5": "e0e9b45489c4e367e3b5dd9d69fc08b1",
                "sha256": "d05adcb804158e9f858a261813923ca189d14cf72a23053f71464d049c5fd0dc"
            },
            "downloads": -1,
            "filename": "charidotella-3.1.0-cp39-cp39-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e0e9b45489c4e367e3b5dd9d69fc08b1",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 1606332,
            "upload_time": "2023-12-11T01:05:18",
            "upload_time_iso_8601": "2023-12-11T01:05:18.438216Z",
            "url": "https://files.pythonhosted.org/packages/af/a0/e16da169b02efd441631d7b76099bb514d1732505fee854dfdf7a4ec0a1d/charidotella-3.1.0-cp39-cp39-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0ab89f535189cc5add8d0f455a12f6c8de4443164c467f28ad92de85fd0a6702",
                "md5": "4588002ff43b07e12d9fa7f1300693ad",
                "sha256": "fe6348ff09fc567bb1bbf2c65e388a66c541a35865bd57e02ca7180c10ade426"
            },
            "downloads": -1,
            "filename": "charidotella-3.1.0-cp39-cp39-win32.whl",
            "has_sig": false,
            "md5_digest": "4588002ff43b07e12d9fa7f1300693ad",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 835350,
            "upload_time": "2023-12-11T01:05:20",
            "upload_time_iso_8601": "2023-12-11T01:05:20.114287Z",
            "url": "https://files.pythonhosted.org/packages/0a/b8/9f535189cc5add8d0f455a12f6c8de4443164c467f28ad92de85fd0a6702/charidotella-3.1.0-cp39-cp39-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1abc56e0fc5d55da6f0c95c7d19b7a73d579afbc40ebe9c90397d1eec317de7b",
                "md5": "12b5f01a762189ae71d13c371a9b069e",
                "sha256": "3dd570655ddb38f9c747c58d3e2066d375799cf41dc4fd6650b185afdacfb617"
            },
            "downloads": -1,
            "filename": "charidotella-3.1.0-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "12b5f01a762189ae71d13c371a9b069e",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 835800,
            "upload_time": "2023-12-11T01:05:21",
            "upload_time_iso_8601": "2023-12-11T01:05:21.665743Z",
            "url": "https://files.pythonhosted.org/packages/1a/bc/56e0fc5d55da6f0c95c7d19b7a73d579afbc40ebe9c90397d1eec317de7b/charidotella-3.1.0-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4652c2ac1617e2f909d0eeffd5ef83f5ecfe4637cf862177a2fc87671acf267c",
                "md5": "c7a949e1e43fec3f0ca448fd7e6b80c0",
                "sha256": "1e85334280d7d9671f0b4b5c99e4a5d185180d441e3f169c64d8a0de279eff77"
            },
            "downloads": -1,
            "filename": "charidotella-3.1.0.tar.gz",
            "has_sig": false,
            "md5_digest": "c7a949e1e43fec3f0ca448fd7e6b80c0",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 1494561,
            "upload_time": "2023-12-11T01:05:23",
            "upload_time_iso_8601": "2023-12-11T01:05:23.274814Z",
            "url": "https://files.pythonhosted.org/packages/46/52/c2ac1617e2f909d0eeffd5ef83f5ecfe4637cf862177a2fc87671acf267c/charidotella-3.1.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-12-11 01:05:23",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "neuromorphicsystems",
    "github_project": "charidotella",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "charidotella"
}
        
Elapsed time: 0.15285s