aigverse


Nameaigverse JSON
Version 0.0.11 PyPI version JSON
download
home_pagehttps://github.com/marcelwa/aigverse
SummaryA Python library for working with logic networks, synthesis, and optimization.
upload_time2024-11-07 20:21:03
maintainerNone
docs_urlNone
authorMarcel Walter
requires_python>=3.8
licenseMIT License Copyright (c) 2024 Marcel Walter Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
keywords aigverse logic synthesis aig optimization
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # aigverse: A Python Library for Logic Networks, Synthesis, and Optimization

[![Python Bindings](https://img.shields.io/github/actions/workflow/status/marcelwa/aigverse/aigverse-pypi-deployment.yml?label=Bindings&logo=python&style=flat-square)](https://github.com/marcelwa/aigverse/actions/workflows/aigverse-pypi-deployment.yml)
[![License](https://img.shields.io/github/license/marcelwa/aigverse?label=License&style=flat-square)](https://github.com/marcelwa/aigverse/blob/main/LICENSE)
[![PyPI](https://img.shields.io/static/v1?label=PyPI&message=aigverse&logo=pypi&color=informational&style=flat-square)](https://pypi.org/project/aigverse/)
[![Release](https://img.shields.io/github/v/release/marcelwa/aigverse?label=aigverse&style=flat-square)](https://github.com/marcelwa/aigverse/releases)

> [!Important]
> This project is still in the early stages of development. The API is subject to change, and some features may not be
> fully implemented. I appreciate your patience and understanding as work to improve the library continues.

`aigverse` is a Python framework designed to bridge the gap between logic synthesis and AI/ML applications. It allows
you to represent and manipulate logic circuits efficiently, making it easier to integrate logic synthesis tasks into
machine learning pipelines. By leveraging the
powerful [EPFL Logic Synthesis Libraries](https://arxiv.org/abs/1805.05121),
particularly [mockturtle](https://github.com/lsils/mockturtle), `aigverse` provides a high-level Python interface to
state-of-the-art algorithms for And-Inverter Graph (AIG) manipulation and logic synthesis, widely used in formal
verification, hardware design, and optimization tasks.

## Features

- **Efficient Logic Representation**: Use And-Inverter Graphs (AIGs) to model and manipulate logic circuits in Python.
- **File Format Support**: Read and write AIGER, Verilog, Bench, PLA, ... files for interoperability with other logic
  synthesis tools.
- **C++ Backend**: Leverage the performance of the EPFL Logic Synthesis Libraries for fast logic synthesis and
  optimization.
- **High-Level API**: Simplify logic synthesis tasks with a Pythonic interface for AIG manipulation and optimization.
- **Integration with Machine Learning**: Convenient integration with popular data science libraries.

## Motivation

As AI and machine learning (ML) increasingly impact hardware design automation, there's a growing need for tools that
integrate logic synthesis with ML workflows. `aigverse` provides a Python-friendly interface for logic synthesis, making
it easier to develop applications that blend both AI/ML and traditional circuit synthesis techniques. With `aigverse`,
you can parse, manipulate, and optimize logic circuits directly from Python. Eventually, we aim to provide seamless
integration with popular ML libraries, enabling the development of novel AI-driven synthesis and optimization tools.

## Installation

`aigverse` requires Python 3.8+ and is built using the EPFL Logic Synthesis Libraries
with [pybind11](https://github.com/pybind/pybind11). To install `aigverse`:

```bash
pip install aigverse
```

## Usage

### Basic Example: Creating an AIG

In `aigverse`, you can create a simple And-Inverter Graph (AIG) and manipulate it using various logic operations.

```python
from aigverse import Aig

# Create a new AIG network
aig = Aig()

# Create primary inputs
x1 = aig.create_pi()
x2 = aig.create_pi()

# Create logic gates
f_and = aig.create_and(x1, x2)  # AND gate
f_or = aig.create_or(x1, x2)  # OR gate

# Create primary outputs
aig.create_po(f_and)
aig.create_po(f_or)

# Print the size of the AIG network
print(f"AIG Size: {aig.size()}")
```

### Iterating over AIG Nodes

You can iterate over all nodes in the AIG, or specific subsets like the primary inputs or only logic nodes (gates).

```python
# Iterate over all nodes in the AIG
for node in aig.nodes():
    print(f"Node: {node}")

# Iterate only over primary inputs
for pi in aig.pis():
    print(f"Primary Input: {pi}")

# Iterate only over logic nodes (gates)
for gate in aig.gates():
    print(f"Gate: {gate}")

# Iterate over the fanins of a node
n_and = aig.get_node(f_and)
for fanin in aig.fanins(n_and):
    print(f"Fanin of {n_and}: {fanin}")
```

### Depth and Level Computation

You can compute the depth of the AIG network and the level of each node. Depth information is useful for estimating the
critical path delay of a respective circuit.

```python
from aigverse import DepthAig

depth_aig = DepthAig(aig)
print(f"Depth: {depth_aig.num_levels()}")
for node in aig.nodes():
    print(f"Level of {node}: {depth_aig.level(node)}")
```

### Logic Optimization

You can optimize AIGs using various algorithms. For example, you can perform resubstitution to simplify logic using
shared divisors. Similarly, refactoring collapses maximmal fanout-free cones (MFFCs) into truth tables and resynthesizes
them into new structures. Cut rewriting optimizes the AIG by replacing cuts with improved ones from a pre-computed NPN
database.

```python
from aigverse import aig_resubstitution, sop_refactoring, aig_cut_rewriting

# Clone the AIG network for size comparison
aig_clone = aig.clone()

# Optimize the AIG with several optimization algorithms
for optimization in [aig_resubstitution, sop_refactoring, aig_cut_rewriting]:
    optimization(aig)

# Print the size of the unoptimized and optimized AIGs
print(f"Original AIG Size:  {aig_clone.size()}")
print(f"Optimized AIG Size: {aig.size()}")
```

### Equivalence Checking

Equivalence of AIGs (e.g., after optimization) can be checked using SAT-based equivalence checking.

```python
from aigverse import equivalence_checking

# Perform equivalence checking
equiv = equivalence_checking(aig1, aig2)

if equiv:
    print("AIGs are equivalent!")
else:
    print("AIGs are NOT equivalent!")
```

### AIGER Files

You can read and write (ASCII) [AIGER](https://fmv.jku.at/aiger/) files.

#### Parsing

```python
from aigverse import read_aiger_into_aig, read_ascii_aiger_into_aig

# Read AIGER files into AIG networks
aig1 = read_aiger_into_aig("example.aig")
aig2 = read_ascii_aiger_into_aig("example.aag")

# Print the size of the AIGs
print(f"AIG Size: {aig1.size()}")
print(f"AIG Size: {aig2.size()}")
```

#### Writing

```python
from aigverse import write_aiger

# Write an AIG network to an AIGER file
write_aiger(aig, "example.aig")
```

### Exporting Edge Lists

You can export the AIG as an edge list, which is useful for integration with graph libraries like NetworkX.

```python
from aigverse import to_edge_list

# Export the AIG as an edge list
edges = to_edge_list(aig)
print(edges)

# Convert to list of tuples
edges = [(e.source, e.target, e.weight) for e in edges]
```

### Truth Tables

Small Boolean functions can be efficiently represented using truth tables. `aigverse` enables the creation and
manipulation of truth tables by wrapping a portion of the [kitty](https://github.com/msoeken/kitty) library.

#### Creation

```python
from aigverse import TruthTable

# Initialize a truth table with 3 variables
tt = TruthTable(3)
# Create a truth table from a hex string representing the MAJ function
tt.create_from_hex_string("e8")
```

#### Manipulation

```python
# Flip each bit in the truth table
for i in range(tt.num_bits()):
    print(f"Flipping bit {int(tt.get_bit(i))}")
    tt.flip_bit(i)

# Print a binary string representation of the truth table
print(tt.to_binary())

# Clear the truth table
tt.clear()

# Check if the truth table is constant 0
print(tt.is_const0())
```

#### Symbolic Simulation of AIGs

```python
from aigverse import simulate

# Obtain the truth table of each AIG output
tts = simulate(aig)

# Print the truth tables
for i, tt in enumerate(tts):
    print(f"PO{i}: {tt.to_binary()}")
```

#### Exporting as Lists of Lists

For some machine learning applications, it may be useful to export the truth table as a list of lists.

```python
# Export the truth table as a list of lists
tt_list = [[int(tt.get_bit(i)) for i in range(tt.num_bits())] for tt in tts]
```

## Contributing

Contributions are welcome! If you'd like to contribute to `aigverse`, please submit a pull request or open an issue. I
appreciate feedback and suggestions for improving the library.

## License

`aigverse` is available under the MIT License.

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/marcelwa/aigverse",
    "name": "aigverse",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": null,
    "keywords": "aigverse, logic, synthesis, AIG, optimization",
    "author": "Marcel Walter",
    "author_email": "Marcel Walter <marcel.walter@tum.de>",
    "download_url": "https://files.pythonhosted.org/packages/5b/0b/0c56e5074ee3fd889370104c2eadcccb95498f65cea18fec85c7c75b788f/aigverse-0.0.11.tar.gz",
    "platform": null,
    "description": "# aigverse: A Python Library for Logic Networks, Synthesis, and Optimization\n\n[![Python Bindings](https://img.shields.io/github/actions/workflow/status/marcelwa/aigverse/aigverse-pypi-deployment.yml?label=Bindings&logo=python&style=flat-square)](https://github.com/marcelwa/aigverse/actions/workflows/aigverse-pypi-deployment.yml)\n[![License](https://img.shields.io/github/license/marcelwa/aigverse?label=License&style=flat-square)](https://github.com/marcelwa/aigverse/blob/main/LICENSE)\n[![PyPI](https://img.shields.io/static/v1?label=PyPI&message=aigverse&logo=pypi&color=informational&style=flat-square)](https://pypi.org/project/aigverse/)\n[![Release](https://img.shields.io/github/v/release/marcelwa/aigverse?label=aigverse&style=flat-square)](https://github.com/marcelwa/aigverse/releases)\n\n> [!Important]\n> This project is still in the early stages of development. The API is subject to change, and some features may not be\n> fully implemented. I appreciate your patience and understanding as work to improve the library continues.\n\n`aigverse` is a Python framework designed to bridge the gap between logic synthesis and AI/ML applications. It allows\nyou to represent and manipulate logic circuits efficiently, making it easier to integrate logic synthesis tasks into\nmachine learning pipelines. By leveraging the\npowerful [EPFL Logic Synthesis Libraries](https://arxiv.org/abs/1805.05121),\nparticularly [mockturtle](https://github.com/lsils/mockturtle), `aigverse` provides a high-level Python interface to\nstate-of-the-art algorithms for And-Inverter Graph (AIG) manipulation and logic synthesis, widely used in formal\nverification, hardware design, and optimization tasks.\n\n## Features\n\n- **Efficient Logic Representation**: Use And-Inverter Graphs (AIGs) to model and manipulate logic circuits in Python.\n- **File Format Support**: Read and write AIGER, Verilog, Bench, PLA, ... files for interoperability with other logic\n  synthesis tools.\n- **C++ Backend**: Leverage the performance of the EPFL Logic Synthesis Libraries for fast logic synthesis and\n  optimization.\n- **High-Level API**: Simplify logic synthesis tasks with a Pythonic interface for AIG manipulation and optimization.\n- **Integration with Machine Learning**: Convenient integration with popular data science libraries.\n\n## Motivation\n\nAs AI and machine learning (ML) increasingly impact hardware design automation, there's a growing need for tools that\nintegrate logic synthesis with ML workflows. `aigverse` provides a Python-friendly interface for logic synthesis, making\nit easier to develop applications that blend both AI/ML and traditional circuit synthesis techniques. With `aigverse`,\nyou can parse, manipulate, and optimize logic circuits directly from Python. Eventually, we aim to provide seamless\nintegration with popular ML libraries, enabling the development of novel AI-driven synthesis and optimization tools.\n\n## Installation\n\n`aigverse` requires Python 3.8+ and is built using the EPFL Logic Synthesis Libraries\nwith [pybind11](https://github.com/pybind/pybind11). To install `aigverse`:\n\n```bash\npip install aigverse\n```\n\n## Usage\n\n### Basic Example: Creating an AIG\n\nIn `aigverse`, you can create a simple And-Inverter Graph (AIG) and manipulate it using various logic operations.\n\n```python\nfrom aigverse import Aig\n\n# Create a new AIG network\naig = Aig()\n\n# Create primary inputs\nx1 = aig.create_pi()\nx2 = aig.create_pi()\n\n# Create logic gates\nf_and = aig.create_and(x1, x2)  # AND gate\nf_or = aig.create_or(x1, x2)  # OR gate\n\n# Create primary outputs\naig.create_po(f_and)\naig.create_po(f_or)\n\n# Print the size of the AIG network\nprint(f\"AIG Size: {aig.size()}\")\n```\n\n### Iterating over AIG Nodes\n\nYou can iterate over all nodes in the AIG, or specific subsets like the primary inputs or only logic nodes (gates).\n\n```python\n# Iterate over all nodes in the AIG\nfor node in aig.nodes():\n    print(f\"Node: {node}\")\n\n# Iterate only over primary inputs\nfor pi in aig.pis():\n    print(f\"Primary Input: {pi}\")\n\n# Iterate only over logic nodes (gates)\nfor gate in aig.gates():\n    print(f\"Gate: {gate}\")\n\n# Iterate over the fanins of a node\nn_and = aig.get_node(f_and)\nfor fanin in aig.fanins(n_and):\n    print(f\"Fanin of {n_and}: {fanin}\")\n```\n\n### Depth and Level Computation\n\nYou can compute the depth of the AIG network and the level of each node. Depth information is useful for estimating the\ncritical path delay of a respective circuit.\n\n```python\nfrom aigverse import DepthAig\n\ndepth_aig = DepthAig(aig)\nprint(f\"Depth: {depth_aig.num_levels()}\")\nfor node in aig.nodes():\n    print(f\"Level of {node}: {depth_aig.level(node)}\")\n```\n\n### Logic Optimization\n\nYou can optimize AIGs using various algorithms. For example, you can perform resubstitution to simplify logic using\nshared divisors. Similarly, refactoring collapses maximmal fanout-free cones (MFFCs) into truth tables and resynthesizes\nthem into new structures. Cut rewriting optimizes the AIG by replacing cuts with improved ones from a pre-computed NPN\ndatabase.\n\n```python\nfrom aigverse import aig_resubstitution, sop_refactoring, aig_cut_rewriting\n\n# Clone the AIG network for size comparison\naig_clone = aig.clone()\n\n# Optimize the AIG with several optimization algorithms\nfor optimization in [aig_resubstitution, sop_refactoring, aig_cut_rewriting]:\n    optimization(aig)\n\n# Print the size of the unoptimized and optimized AIGs\nprint(f\"Original AIG Size:  {aig_clone.size()}\")\nprint(f\"Optimized AIG Size: {aig.size()}\")\n```\n\n### Equivalence Checking\n\nEquivalence of AIGs (e.g., after optimization) can be checked using SAT-based equivalence checking.\n\n```python\nfrom aigverse import equivalence_checking\n\n# Perform equivalence checking\nequiv = equivalence_checking(aig1, aig2)\n\nif equiv:\n    print(\"AIGs are equivalent!\")\nelse:\n    print(\"AIGs are NOT equivalent!\")\n```\n\n### AIGER Files\n\nYou can read and write (ASCII) [AIGER](https://fmv.jku.at/aiger/) files.\n\n#### Parsing\n\n```python\nfrom aigverse import read_aiger_into_aig, read_ascii_aiger_into_aig\n\n# Read AIGER files into AIG networks\naig1 = read_aiger_into_aig(\"example.aig\")\naig2 = read_ascii_aiger_into_aig(\"example.aag\")\n\n# Print the size of the AIGs\nprint(f\"AIG Size: {aig1.size()}\")\nprint(f\"AIG Size: {aig2.size()}\")\n```\n\n#### Writing\n\n```python\nfrom aigverse import write_aiger\n\n# Write an AIG network to an AIGER file\nwrite_aiger(aig, \"example.aig\")\n```\n\n### Exporting Edge Lists\n\nYou can export the AIG as an edge list, which is useful for integration with graph libraries like NetworkX.\n\n```python\nfrom aigverse import to_edge_list\n\n# Export the AIG as an edge list\nedges = to_edge_list(aig)\nprint(edges)\n\n# Convert to list of tuples\nedges = [(e.source, e.target, e.weight) for e in edges]\n```\n\n### Truth Tables\n\nSmall Boolean functions can be efficiently represented using truth tables. `aigverse` enables the creation and\nmanipulation of truth tables by wrapping a portion of the [kitty](https://github.com/msoeken/kitty) library.\n\n#### Creation\n\n```python\nfrom aigverse import TruthTable\n\n# Initialize a truth table with 3 variables\ntt = TruthTable(3)\n# Create a truth table from a hex string representing the MAJ function\ntt.create_from_hex_string(\"e8\")\n```\n\n#### Manipulation\n\n```python\n# Flip each bit in the truth table\nfor i in range(tt.num_bits()):\n    print(f\"Flipping bit {int(tt.get_bit(i))}\")\n    tt.flip_bit(i)\n\n# Print a binary string representation of the truth table\nprint(tt.to_binary())\n\n# Clear the truth table\ntt.clear()\n\n# Check if the truth table is constant 0\nprint(tt.is_const0())\n```\n\n#### Symbolic Simulation of AIGs\n\n```python\nfrom aigverse import simulate\n\n# Obtain the truth table of each AIG output\ntts = simulate(aig)\n\n# Print the truth tables\nfor i, tt in enumerate(tts):\n    print(f\"PO{i}: {tt.to_binary()}\")\n```\n\n#### Exporting as Lists of Lists\n\nFor some machine learning applications, it may be useful to export the truth table as a list of lists.\n\n```python\n# Export the truth table as a list of lists\ntt_list = [[int(tt.get_bit(i)) for i in range(tt.num_bits())] for tt in tts]\n```\n\n## Contributing\n\nContributions are welcome! If you'd like to contribute to `aigverse`, please submit a pull request or open an issue. I\nappreciate feedback and suggestions for improving the library.\n\n## License\n\n`aigverse` is available under the MIT License.\n",
    "bugtrack_url": null,
    "license": "MIT License  Copyright (c) 2024 Marcel Walter  Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:  The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.  THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ",
    "summary": "A Python library for working with logic networks, synthesis, and optimization.",
    "version": "0.0.11",
    "project_urls": {
        "Homepage": "https://github.com/marcelwa/aigverse",
        "Source": "https://github.com/marcelwa/aigverse",
        "Tracker": "https://github.com/marcelwa/aigverse/issues"
    },
    "split_keywords": [
        "aigverse",
        " logic",
        " synthesis",
        " aig",
        " optimization"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0054899aa8d7172a34a75286c644663514447f6e5f65be0f570c109e75b1610f",
                "md5": "3b698a379a0986201b8e34f992131530",
                "sha256": "2114b60c3f9b47c28a0459992936ef389aa9006629daec2a906cf02c96612c63"
            },
            "downloads": -1,
            "filename": "aigverse-0.0.11-cp310-cp310-macosx_10_15_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3b698a379a0986201b8e34f992131530",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 464733,
            "upload_time": "2024-11-07T20:20:26",
            "upload_time_iso_8601": "2024-11-07T20:20:26.182775Z",
            "url": "https://files.pythonhosted.org/packages/00/54/899aa8d7172a34a75286c644663514447f6e5f65be0f570c109e75b1610f/aigverse-0.0.11-cp310-cp310-macosx_10_15_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3dd11edc245f042297b78937db64d4c15ea6ba687e898b7e7581f51945912295",
                "md5": "297cc7b96fc479594c5bb00b47d1f380",
                "sha256": "b93ad8e2324c1dd92fa2a69ebe3ffa66feca00a9299fb738f24a7045ce8ce3a9"
            },
            "downloads": -1,
            "filename": "aigverse-0.0.11-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "297cc7b96fc479594c5bb00b47d1f380",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 399155,
            "upload_time": "2024-11-07T20:20:27",
            "upload_time_iso_8601": "2024-11-07T20:20:27.518011Z",
            "url": "https://files.pythonhosted.org/packages/3d/d1/1edc245f042297b78937db64d4c15ea6ba687e898b7e7581f51945912295/aigverse-0.0.11-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d0103eee94af27a76f2ff4b60c8278c36e538e68284d793986cd81ad86915164",
                "md5": "743c4268f54edd108b12513e6aef001e",
                "sha256": "2ed0eafbc45c81a922e5aac4ce1a7f32bd7a0d37923ef52189519c28d44d702d"
            },
            "downloads": -1,
            "filename": "aigverse-0.0.11-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "743c4268f54edd108b12513e6aef001e",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 485731,
            "upload_time": "2024-11-07T20:20:29",
            "upload_time_iso_8601": "2024-11-07T20:20:29.253772Z",
            "url": "https://files.pythonhosted.org/packages/d0/10/3eee94af27a76f2ff4b60c8278c36e538e68284d793986cd81ad86915164/aigverse-0.0.11-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1afda63b560f849fc7f5e947a53a4a68f33bf74062571839c34a49f4a0a56175",
                "md5": "c9efdb5f2d9652ad9a73bee5be7952b8",
                "sha256": "948c68855ca00a3c6d4f5ae4cac4b5c82cbad528c5869e1bb6a354a7190773d4"
            },
            "downloads": -1,
            "filename": "aigverse-0.0.11-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "c9efdb5f2d9652ad9a73bee5be7952b8",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 675701,
            "upload_time": "2024-11-07T20:20:30",
            "upload_time_iso_8601": "2024-11-07T20:20:30.673864Z",
            "url": "https://files.pythonhosted.org/packages/1a/fd/a63b560f849fc7f5e947a53a4a68f33bf74062571839c34a49f4a0a56175/aigverse-0.0.11-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0436398a1583ee3b642b9ec25daaa27da5507cec654435d80cb1960b0010c9f3",
                "md5": "fea2c24d4b7069bb362a5f017a918969",
                "sha256": "7d2ea3c4c72af380b0bcae6b54f3771a5d8d5627e4474d56e4c4faa508a620ec"
            },
            "downloads": -1,
            "filename": "aigverse-0.0.11-cp311-cp311-macosx_10_15_x86_64.whl",
            "has_sig": false,
            "md5_digest": "fea2c24d4b7069bb362a5f017a918969",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 465916,
            "upload_time": "2024-11-07T20:20:32",
            "upload_time_iso_8601": "2024-11-07T20:20:32.282992Z",
            "url": "https://files.pythonhosted.org/packages/04/36/398a1583ee3b642b9ec25daaa27da5507cec654435d80cb1960b0010c9f3/aigverse-0.0.11-cp311-cp311-macosx_10_15_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "50d6a608cdc68f21a9d87120ba152d07896e7e1a48a77d2cfe17b0628c074b8b",
                "md5": "c7236abdf98f62a51c91842ce5b3214f",
                "sha256": "49c0393b8653ed6601296a16e0e266911f80c196c977705ee30a3d9dd8e649b5"
            },
            "downloads": -1,
            "filename": "aigverse-0.0.11-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "c7236abdf98f62a51c91842ce5b3214f",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 400484,
            "upload_time": "2024-11-07T20:20:34",
            "upload_time_iso_8601": "2024-11-07T20:20:34.163367Z",
            "url": "https://files.pythonhosted.org/packages/50/d6/a608cdc68f21a9d87120ba152d07896e7e1a48a77d2cfe17b0628c074b8b/aigverse-0.0.11-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "13d3a0e1fde2a1d40e073b582f16b0d2bfaad22a7af441cb4d43a6f5ff04f2c5",
                "md5": "e71b99e650f8f6f0637523c7f34ff805",
                "sha256": "a29cab0dd5600f4f9d3b9efe41fbedfb3e73d4340daf81194dbee94a3d804a43"
            },
            "downloads": -1,
            "filename": "aigverse-0.0.11-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e71b99e650f8f6f0637523c7f34ff805",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 486988,
            "upload_time": "2024-11-07T20:20:35",
            "upload_time_iso_8601": "2024-11-07T20:20:35.919520Z",
            "url": "https://files.pythonhosted.org/packages/13/d3/a0e1fde2a1d40e073b582f16b0d2bfaad22a7af441cb4d43a6f5ff04f2c5/aigverse-0.0.11-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a0bbe481488078eb0f014f297d606a9d6558e343f720f6ee18ba42692ce5d56b",
                "md5": "739d57d0c915ab1d35630d53e241a2e8",
                "sha256": "06d449bc8e680b2006b763fd0f65270e39aad75347cc3662bec30fda951e12bb"
            },
            "downloads": -1,
            "filename": "aigverse-0.0.11-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "739d57d0c915ab1d35630d53e241a2e8",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 678058,
            "upload_time": "2024-11-07T20:20:37",
            "upload_time_iso_8601": "2024-11-07T20:20:37.705932Z",
            "url": "https://files.pythonhosted.org/packages/a0/bb/e481488078eb0f014f297d606a9d6558e343f720f6ee18ba42692ce5d56b/aigverse-0.0.11-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ad7a07aed9a5870235470385c1b82055d9483d84b86375618066b0db2dd04991",
                "md5": "5c587449e2a22b244f8a166f58f05701",
                "sha256": "2e81858d2b2c3d29ad8a1dc0c76194298b6b0152524111876c087e7d79cfc6a6"
            },
            "downloads": -1,
            "filename": "aigverse-0.0.11-cp312-cp312-macosx_10_15_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5c587449e2a22b244f8a166f58f05701",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 470051,
            "upload_time": "2024-11-07T20:20:39",
            "upload_time_iso_8601": "2024-11-07T20:20:39.606533Z",
            "url": "https://files.pythonhosted.org/packages/ad/7a/07aed9a5870235470385c1b82055d9483d84b86375618066b0db2dd04991/aigverse-0.0.11-cp312-cp312-macosx_10_15_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b95d5fcf6885e5d45b9e7aaf3de4b86f9edfae70c6ddb7c8ef333de4ed0ca5c7",
                "md5": "e11a84aa713314867514c7e56ef42044",
                "sha256": "dc396ec22f01e07300695b290ec55f56850e2e0e396c774226ae5143901803d6"
            },
            "downloads": -1,
            "filename": "aigverse-0.0.11-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "e11a84aa713314867514c7e56ef42044",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 401622,
            "upload_time": "2024-11-07T20:20:41",
            "upload_time_iso_8601": "2024-11-07T20:20:41.347904Z",
            "url": "https://files.pythonhosted.org/packages/b9/5d/5fcf6885e5d45b9e7aaf3de4b86f9edfae70c6ddb7c8ef333de4ed0ca5c7/aigverse-0.0.11-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fad666bf1844fcaf3f0f5ad972ae80ae7ae45e275a6e6d8b76416503e03c9358",
                "md5": "a0394e598ff9b3ec91e138627a605ded",
                "sha256": "b292b05408242a3cbc9b78227706f95fa4a5a8fc556583c1005ae6d6a1026822"
            },
            "downloads": -1,
            "filename": "aigverse-0.0.11-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a0394e598ff9b3ec91e138627a605ded",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 486254,
            "upload_time": "2024-11-07T20:20:43",
            "upload_time_iso_8601": "2024-11-07T20:20:43.433719Z",
            "url": "https://files.pythonhosted.org/packages/fa/d6/66bf1844fcaf3f0f5ad972ae80ae7ae45e275a6e6d8b76416503e03c9358/aigverse-0.0.11-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "63b6c280c0f9e00fabe8d87909ca1a4649b2864778f649c0c98820941cd35b5c",
                "md5": "ea37b0b372901e627e66ec4873766e6f",
                "sha256": "b1b9e5513b5bfd45d7df47138a646c7f1dfee17b7e7a884517199f2452ec525f"
            },
            "downloads": -1,
            "filename": "aigverse-0.0.11-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "ea37b0b372901e627e66ec4873766e6f",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 680955,
            "upload_time": "2024-11-07T20:20:44",
            "upload_time_iso_8601": "2024-11-07T20:20:44.565097Z",
            "url": "https://files.pythonhosted.org/packages/63/b6/c280c0f9e00fabe8d87909ca1a4649b2864778f649c0c98820941cd35b5c/aigverse-0.0.11-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f1bf2e2e673ef319b47d0879c5b1f176c0151f77b490d15819b88317fe2dfe76",
                "md5": "da979efe8e46e9cb89c6235ecb8c62cd",
                "sha256": "c23ff4d125d16360c03f2c76671644bc2a302ece959acc2a124c2d98ab7e8e73"
            },
            "downloads": -1,
            "filename": "aigverse-0.0.11-cp313-cp313-macosx_10_15_x86_64.whl",
            "has_sig": false,
            "md5_digest": "da979efe8e46e9cb89c6235ecb8c62cd",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 470225,
            "upload_time": "2024-11-07T20:20:46",
            "upload_time_iso_8601": "2024-11-07T20:20:46.508591Z",
            "url": "https://files.pythonhosted.org/packages/f1/bf/2e2e673ef319b47d0879c5b1f176c0151f77b490d15819b88317fe2dfe76/aigverse-0.0.11-cp313-cp313-macosx_10_15_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "135227bed13c17a04ffb77901928aea1e4de5244682561826b1184e10e9a8bba",
                "md5": "57e22309af23c54dd808861f28f4751a",
                "sha256": "57535f918f035465b70bb8950dee334c62eb4d9f991da2cc6ecf9678d888b0eb"
            },
            "downloads": -1,
            "filename": "aigverse-0.0.11-cp313-cp313-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "57e22309af23c54dd808861f28f4751a",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 401761,
            "upload_time": "2024-11-07T20:20:47",
            "upload_time_iso_8601": "2024-11-07T20:20:47.679785Z",
            "url": "https://files.pythonhosted.org/packages/13/52/27bed13c17a04ffb77901928aea1e4de5244682561826b1184e10e9a8bba/aigverse-0.0.11-cp313-cp313-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a650f034ee6a73eb7777c9d5e4e0320f50494e31e22ad789612ceccc24f9be6f",
                "md5": "2a7b55e0e775680f4baadfcccdb4dfe2",
                "sha256": "be68ce512f5f6c48d1ad416b2971d200b99449b4a1117b08ff2466ed9ed1ff4e"
            },
            "downloads": -1,
            "filename": "aigverse-0.0.11-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2a7b55e0e775680f4baadfcccdb4dfe2",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 485972,
            "upload_time": "2024-11-07T20:20:48",
            "upload_time_iso_8601": "2024-11-07T20:20:48.802848Z",
            "url": "https://files.pythonhosted.org/packages/a6/50/f034ee6a73eb7777c9d5e4e0320f50494e31e22ad789612ceccc24f9be6f/aigverse-0.0.11-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ea5d407f056ed1ac9c79f9ab6828a5e3e64fee0cdce43b8b67d1ea193af8b4b4",
                "md5": "632fe24756c7bc51837cd7fd0dfb0520",
                "sha256": "488dda817fb112a54dd496473de5c190097693064c9b34267970e4efcae819ba"
            },
            "downloads": -1,
            "filename": "aigverse-0.0.11-cp313-cp313-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "632fe24756c7bc51837cd7fd0dfb0520",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 681133,
            "upload_time": "2024-11-07T20:20:49",
            "upload_time_iso_8601": "2024-11-07T20:20:49.947819Z",
            "url": "https://files.pythonhosted.org/packages/ea/5d/407f056ed1ac9c79f9ab6828a5e3e64fee0cdce43b8b67d1ea193af8b4b4/aigverse-0.0.11-cp313-cp313-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ca37189c09e19bd969d1ca223d96f34aeaaf3537a2d8f4f86a3c496e01e3962e",
                "md5": "e4ad898760bd7e2a706f5976589fea6d",
                "sha256": "c85939625d34935f04d2392523d3cdc06e9b37f7a3523780ce427ae5e513169c"
            },
            "downloads": -1,
            "filename": "aigverse-0.0.11-cp38-cp38-macosx_10_15_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e4ad898760bd7e2a706f5976589fea6d",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 464466,
            "upload_time": "2024-11-07T20:20:51",
            "upload_time_iso_8601": "2024-11-07T20:20:51.070769Z",
            "url": "https://files.pythonhosted.org/packages/ca/37/189c09e19bd969d1ca223d96f34aeaaf3537a2d8f4f86a3c496e01e3962e/aigverse-0.0.11-cp38-cp38-macosx_10_15_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "43150bfbef8bc8706ff05bd596eed187c32f068bc9afb969842b1977c15cc8af",
                "md5": "5591895f16a92b6ef95cead0791b7bbe",
                "sha256": "4bf02f518fcb73a75a05f0a11d26aa841d24a989174b5ce8e3497f7e6c3c7cf8"
            },
            "downloads": -1,
            "filename": "aigverse-0.0.11-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "5591895f16a92b6ef95cead0791b7bbe",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 399006,
            "upload_time": "2024-11-07T20:20:52",
            "upload_time_iso_8601": "2024-11-07T20:20:52.820719Z",
            "url": "https://files.pythonhosted.org/packages/43/15/0bfbef8bc8706ff05bd596eed187c32f068bc9afb969842b1977c15cc8af/aigverse-0.0.11-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "16e549a2bf3bd8ff0577bbbeed1009e05a4e86879cbdf4ad1bfc31867d5d9629",
                "md5": "a3aa1755c256486585e8b19a7799bbc1",
                "sha256": "387525949ed1a25bedcfa352955e1158fc0b0cee40ae33047fec2d816e8d5552"
            },
            "downloads": -1,
            "filename": "aigverse-0.0.11-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a3aa1755c256486585e8b19a7799bbc1",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 485501,
            "upload_time": "2024-11-07T20:20:54",
            "upload_time_iso_8601": "2024-11-07T20:20:54.563233Z",
            "url": "https://files.pythonhosted.org/packages/16/e5/49a2bf3bd8ff0577bbbeed1009e05a4e86879cbdf4ad1bfc31867d5d9629/aigverse-0.0.11-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "314f85b7380ad4e7b0e5034b11c053261bcdbf4001a6d0695bfc20735b76987a",
                "md5": "fdb7ab47ef34587ab407b780e40c7538",
                "sha256": "d993b92a9e85db065b2fa6b76dd5d8d5044285103812216dd2f91936e7940fd2"
            },
            "downloads": -1,
            "filename": "aigverse-0.0.11-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "fdb7ab47ef34587ab407b780e40c7538",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 692194,
            "upload_time": "2024-11-07T20:20:56",
            "upload_time_iso_8601": "2024-11-07T20:20:56.316361Z",
            "url": "https://files.pythonhosted.org/packages/31/4f/85b7380ad4e7b0e5034b11c053261bcdbf4001a6d0695bfc20735b76987a/aigverse-0.0.11-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "565cb50e79bcaca9f82c307cce4b4ecfd927f4b1f1e843c55f28100c9c35fd28",
                "md5": "7a5e631b696611792a822d9922e835bc",
                "sha256": "7fce3953078440e07a3a13b8014f0e09dfb286115ca7fefe7adc7c3db9ca933e"
            },
            "downloads": -1,
            "filename": "aigverse-0.0.11-cp39-cp39-macosx_10_15_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7a5e631b696611792a822d9922e835bc",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 464751,
            "upload_time": "2024-11-07T20:20:57",
            "upload_time_iso_8601": "2024-11-07T20:20:57.509797Z",
            "url": "https://files.pythonhosted.org/packages/56/5c/b50e79bcaca9f82c307cce4b4ecfd927f4b1f1e843c55f28100c9c35fd28/aigverse-0.0.11-cp39-cp39-macosx_10_15_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8ae25d83f6634be37529825ec2ec25d208611813174ba75bb46f05be29d2cc58",
                "md5": "1c9870ffbbe7194be5e60c1e83eb97b9",
                "sha256": "bac0a8cba8c297abcf47a029fa1dc80565df6036df21953d0610bd9593d4737e"
            },
            "downloads": -1,
            "filename": "aigverse-0.0.11-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "1c9870ffbbe7194be5e60c1e83eb97b9",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 399194,
            "upload_time": "2024-11-07T20:20:58",
            "upload_time_iso_8601": "2024-11-07T20:20:58.802174Z",
            "url": "https://files.pythonhosted.org/packages/8a/e2/5d83f6634be37529825ec2ec25d208611813174ba75bb46f05be29d2cc58/aigverse-0.0.11-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e81e5193de2bb7dcae08c95f6b009e61681a4b392dbbfe328c1574302144e9a5",
                "md5": "4ecd1244b84b13bb2b473a2266614568",
                "sha256": "fe82b16ebd71a9d839a08f36f117af2dba74a3db456ec978d07ab680ce4ddc2c"
            },
            "downloads": -1,
            "filename": "aigverse-0.0.11-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4ecd1244b84b13bb2b473a2266614568",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 485661,
            "upload_time": "2024-11-07T20:21:00",
            "upload_time_iso_8601": "2024-11-07T20:21:00.651019Z",
            "url": "https://files.pythonhosted.org/packages/e8/1e/5193de2bb7dcae08c95f6b009e61681a4b392dbbfe328c1574302144e9a5/aigverse-0.0.11-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3dc5a6f9cd9e77237aa55daa1deacfb6dfbb545dd7d5a66501d6d53f3f21c8ba",
                "md5": "1a65e278ab269fc8daec2f3095c85b51",
                "sha256": "7b88d17c676a39be5777797351db0ccb0a115ece09cfeeb90fa5d946f86e6f1f"
            },
            "downloads": -1,
            "filename": "aigverse-0.0.11-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "1a65e278ab269fc8daec2f3095c85b51",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 675897,
            "upload_time": "2024-11-07T20:21:02",
            "upload_time_iso_8601": "2024-11-07T20:21:02.442191Z",
            "url": "https://files.pythonhosted.org/packages/3d/c5/a6f9cd9e77237aa55daa1deacfb6dfbb545dd7d5a66501d6d53f3f21c8ba/aigverse-0.0.11-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5b0b0c56e5074ee3fd889370104c2eadcccb95498f65cea18fec85c7c75b788f",
                "md5": "b1ca492bfea548847b3c48f7c2643da9",
                "sha256": "faacefdb941b08141d232dd0bc193bac4b7b458be955f12a5ca94c3e400b2c06"
            },
            "downloads": -1,
            "filename": "aigverse-0.0.11.tar.gz",
            "has_sig": false,
            "md5_digest": "b1ca492bfea548847b3c48f7c2643da9",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 2414434,
            "upload_time": "2024-11-07T20:21:03",
            "upload_time_iso_8601": "2024-11-07T20:21:03.874418Z",
            "url": "https://files.pythonhosted.org/packages/5b/0b/0c56e5074ee3fd889370104c2eadcccb95498f65cea18fec85c7c75b788f/aigverse-0.0.11.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-11-07 20:21:03",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "marcelwa",
    "github_project": "aigverse",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "aigverse"
}
        
Elapsed time: 1.72253s