pgml


Namepgml JSON
Version 1.0.1 PyPI version JSON
download
home_pagehttps://postgresml.org/
SummaryPython SDK is designed to facilitate the development of scalable vector search applications on PostgreSQL databases.
upload_time2024-03-27 22:56:50
maintainerNone
docs_urlNone
authorPosgresML <team@postgresml.org>
requires_python>=3.7
licenseMIT
keywords postgres machine learning vector databases embeddings
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Open Source Alternative for Building End-to-End Vector Search Applications without OpenAI & Pinecone

# Table of Contents

- [Overview](#overview)
- [Quickstart](#quickstart)
- [Upgrading](#upgrading)
- [Developer setup](#developer-setup)
- [Roadmap](#roadmap)
- [Documentation](https://postgresml.org/docs/sdks/overview)
- [Examples](./examples/README.md)

# Overview

Python SDK is designed to facilitate the development of scalable vector search applications on PostgreSQL databases. With this SDK, you can seamlessly manage various database tables related to documents, text chunks, text splitters, LLM (Language Model) models, and embeddings. By leveraging the SDK's capabilities, you can efficiently index LLM embeddings using PgVector for fast and accurate queries.

Documentation: [PostgresML SDK Docs](https://postgresml.org/docs/sdks/overview)

Examples Folder: [Examples](./examples/README.md)

## Key Features

- **Automated Database Management**: With the SDK, you can easily handle the management of database tables related to documents, text chunks, text splitters, LLM models, and embeddings. This automated management system simplifies the process of setting up and maintaining your vector search application's data structure.

- **Embedding Generation from Open Source Models**: The Python SDK provides the ability to generate embeddings using hundreds of open source models. These models, trained on vast amounts of data, capture the semantic meaning of text and enable powerful analysis and search capabilities.

- **Flexible and Scalable Vector Search**: The Python SDK empowers you to build flexible and scalable vector search applications. The Python SDK seamlessly integrates with PgVector, a PostgreSQL extension specifically designed for handling vector-based indexing and querying. By leveraging these indices, you can perform advanced searches, rank results by relevance, and retrieve accurate and meaningful information from your database.

## Use Cases

Embeddings, the core concept of the Python SDK, find applications in various scenarios, including:

- Search: Embeddings are commonly used for search functionalities, where results are ranked by relevance to a query string. By comparing the embeddings of query strings and documents, you can retrieve search results in order of their similarity or relevance.

- Clustering: With embeddings, you can group text strings by similarity, enabling clustering of related data. By measuring the similarity between embeddings, you can identify clusters or groups of text strings that share common characteristics.

- Recommendations: Embeddings play a crucial role in recommendation systems. By identifying items with related text strings based on their embeddings, you can provide personalized recommendations to users.

- Anomaly Detection: Anomaly detection involves identifying outliers or anomalies that have little relatedness to the rest of the data. Embeddings can aid in this process by quantifying the similarity between text strings and flagging outliers.

- Classification: Embeddings are utilized in classification tasks, where text strings are classified based on their most similar label. By comparing the embeddings of text strings and labels, you can classify new text strings into predefined categories.

## How the Python SDK Works

The Python SDK streamlines the development of vector search applications by abstracting away the complexities of database management and indexing. Here's an overview of how the SDK works:

- **Automatic Document and Text Chunk Management**: The SDK provides a convenient interface to manage documents and pipelines, automatically handling chunking and embedding for you. You can easily organize and structure your text data within the PostgreSQL database.

- **Open Source Model Integration**: With the SDK, you can seamlessly incorporate a wide range of open source models to generate high-quality embeddings. These models capture the semantic meaning of text and enable powerful analysis and search capabilities.

- **Embedding Indexing**: The Python SDK utilizes the PgVector extension to efficiently index the embeddings generated by the open source models. This indexing process optimizes search performance and allows for fast and accurate retrieval of relevant results.

- **Querying and Search**: Once the embeddings are indexed, you can perform vector-based searches on the documents and text chunks stored in the PostgreSQL database. The SDK provides intuitive methods for executing queries and retrieving search results.

# Quickstart

Follow the steps below to quickly get started with the Python SDK for building scalable vector search applications on PostgresML databases.

## Prerequisites

Before you begin, make sure you have the following:

- PostgresML Database: Ensure you have a PostgresML database version >= `2.7.7` You can spin up a database using [Docker](https://github.com/postgresml/postgresml#installation) or [sign up for a free GPU-powered database](https://postgresml.org/signup).

- Set the `DATABASE_URL` environment variable to the connection string of your PostgresML database.

- Python version >=3.8.1

## Installation

To install the Python SDK, use pip:

```
pip install pgml
```

## Sample Code

Once you have the Python SDK installed, you can use the following sample code as a starting point for your vector search application:

```python
from pgml import Collection, Model, Splitter, Pipeline
from datasets import load_dataset
from time import time
from dotenv import load_dotenv
from rich.console import Console
import asyncio

async def main():
        load_dotenv()
    console = Console()

    # Initialize collection
    collection = Collection("quora_collection")
```

**Explanation:**

- The code imports the necessary modules and packages, including pgml, datasets, time, and rich.
- It creates an instance of the Collection class which we will add pipelines and documents onto

Continuing within `async def main():`

```python
    # Create a pipeline using the default model and splitter
    model = Model()
    splitter = Splitter()
    pipeline = Pipeline("quorav1", model, splitter)
    await collection.add_pipeline(pipeline)
```

**Explanation**

- The code creates an instance of `Model` and `Splitter` using their default arguments.
- Finally, the code constructs a pipeline called `"quroav1"` and add it to the collection we Initialized above. This pipeline automatically generates chunks and embeddings for every upserted document.

Continuing with `async def main():`

```python
    # Prep documents for upserting
    data = load_dataset("squad", split="train")
    data = data.to_pandas()
    data = data.drop_duplicates(subset=["context"])
    documents = [
        {"id": r["id"], "text": r["context"], "title": r["title"]}
        for r in data.to_dict(orient="records")
    ]

    # Upsert documents
    await collection.upsert_documents(documents[:200])
```

**Explanation**

- The code loads the "squad" dataset, converts it to a pandas DataFrame, and drops any duplicate context values.
- It creates a list of dictionaries representing the documents to be indexed, with each dictionary containing the document's id, text, and title.
- Finally, they are upserted. As mentioned above, the pipeline added earlier automatically runs and generates chunks and embeddings for each document.

Continuing within `async def main():`

```python
    # Query
    query = "Who won 20 grammy awards?"
    results = await collection.query().vector_recall(query, pipeline).limit(5).fetch_all()
    console.print(results)
    # Archive collection
    await collection.archive()
```

**Explanation:**

- The `query` method is called to perform a vector-based search on the collection. The query string is `Who won more than 20 grammy awards?`, and the top 5 results are requested.
- The search results are printed.
- Finally, the `archive` method is called to archive the collection and free up resources in the PostgresML database.

Call `main` function in an async loop.

```python
asyncio.run(main())
```

**Running the Code**

Open a terminal or command prompt and navigate to the directory where the file is saved.

Execute the following command:

```
python vector_search.py
```

You should see the search results printed in the terminal. As you can see, our vector search engine found the right text chunk with the answer we are looking for.

```python
[
    (
        0.8423336495860181,
        'Beyoncé has won 20 Grammy Awards, both as a solo artist and member of Destiny\'s Child, making her the second most honored female artist by the Grammys, behind Alison Krauss and the most nominated woman in Grammy Award history with 52 nominations. "Single Ladies (Put a Ring on It)" won Song of the Year in 2010 while "Say My Name" and 
"Crazy in Love" had previously won Best R&B Song. Dangerously in Love, B\'Day and I Am... Sasha Fierce have all won Best Contemporary R&B Album. Beyoncé set the record for the most Grammy awards won by a female artist in one night in 2010 when she won six awards, breaking the tie she previously held with Alicia Keys, Norah Jones, Alison Krauss, 
and Amy Winehouse, with Adele equaling this in 2012. Following her role in Dreamgirls she was nominated for Best Original Song for "Listen" and Best Actress at the Golden Globe Awards, and Outstanding Actress in a Motion Picture at the NAACP Image Awards. Beyoncé won two awards at the Broadcast Film Critics Association Awards 2006; Best Song for 
"Listen" and Best Original Soundtrack for Dreamgirls: Music from the Motion Picture.',
        {'id': '56becc903aeaaa14008c949f', 'title': 'Beyoncé'}
    ),
    (
        0.8210567582713351,
        'A self-described "modern-day feminist", Beyoncé creates songs that are often characterized by themes of love, relationships, and monogamy, as well as female sexuality and empowerment. On stage, her dynamic, highly choreographed performances have led to critics hailing her as one of the best entertainers in contemporary popular music. 
Throughout a career spanning 19 years, she has sold over 118 million records as a solo artist, and a further 60 million with Destiny\'s Child, making her one of the best-selling music artists of all time. She has won 20 Grammy Awards and is the most nominated woman in the award\'s history. The Recording Industry Association of America recognized 
her as the Top Certified Artist in America during the 2000s decade. In 2009, Billboard named her the Top Radio Songs Artist of the Decade, the Top Female Artist of the 2000s and their Artist of the Millennium in 2011. Time listed her among the 100 most influential people in the world in 2013 and 2014. Forbes magazine also listed her as the most 
powerful female musician of 2015.',
        {'id': '56be88473aeaaa14008c9080', 'title': 'Beyoncé'}
    )
]
```

## Upgrading

Changes between SDK versions are not necessarily backwards compatible. We provide a migrate function to help transition smoothly.

```python
from pgml import migrate
await migrate()
```

This will migrate all collections to be compatible with the latest SDK version.

## Developer Setup

This Python library is generated from our core rust-sdk. Please check [rust-sdk documentation](../README.md) for developer setup.

## Roadmap

- [x] Enable filters on document metadata in `vector_search`. [Issue](https://github.com/postgresml/postgresml/issues/663)
- [x] `text_search` functionality on documents using Postgres text search. [Issue](https://github.com/postgresml/postgresml/issues/664)
- [x] `hybrid_search` functionality that does a combination of `vector_search` and `text_search`. [Issue](https://github.com/postgresml/postgresml/issues/665)
- [x] Ability to call and manage OpenAI embeddings for comparison purposes. [Issue](https://github.com/postgresml/postgresml/issues/666)
- [x] Perform chunking on the DB with multiple langchain splitters. [Issue](https://github.com/postgresml/postgresml/issues/668)
- [ ] Save `vector_search` history for downstream monitoring of model performance. [Issue](https://github.com/postgresml/postgresml/issues/667)


            

Raw data

            {
    "_id": null,
    "home_page": "https://postgresml.org/",
    "name": "pgml",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": null,
    "keywords": "postgres, machine learning, vector databases, embeddings",
    "author": "PosgresML <team@postgresml.org>",
    "author_email": "PostgresML <team@postgresml.org>",
    "download_url": "https://files.pythonhosted.org/packages/26/39/dae36415f7a8a495eae644dd68ace17c483d9981d927de6dfd6005d6e278/pgml-1.0.1.tar.gz",
    "platform": null,
    "description": "# Open Source Alternative for Building End-to-End Vector Search Applications without OpenAI & Pinecone\n\n# Table of Contents\n\n- [Overview](#overview)\n- [Quickstart](#quickstart)\n- [Upgrading](#upgrading)\n- [Developer setup](#developer-setup)\n- [Roadmap](#roadmap)\n- [Documentation](https://postgresml.org/docs/sdks/overview)\n- [Examples](./examples/README.md)\n\n# Overview\n\nPython SDK is designed to facilitate the development of scalable vector search applications on PostgreSQL databases. With this SDK, you can seamlessly manage various database tables related to documents, text chunks, text splitters, LLM (Language Model) models, and embeddings. By leveraging the SDK's capabilities, you can efficiently index LLM embeddings using PgVector for fast and accurate queries.\n\nDocumentation: [PostgresML SDK Docs](https://postgresml.org/docs/sdks/overview)\n\nExamples Folder: [Examples](./examples/README.md)\n\n## Key Features\n\n- **Automated Database Management**: With the SDK, you can easily handle the management of database tables related to documents, text chunks, text splitters, LLM models, and embeddings. This automated management system simplifies the process of setting up and maintaining your vector search application's data structure.\n\n- **Embedding Generation from Open Source Models**: The Python SDK provides the ability to generate embeddings using hundreds of open source models. These models, trained on vast amounts of data, capture the semantic meaning of text and enable powerful analysis and search capabilities.\n\n- **Flexible and Scalable Vector Search**: The Python SDK empowers you to build flexible and scalable vector search applications. The Python SDK seamlessly integrates with PgVector, a PostgreSQL extension specifically designed for handling vector-based indexing and querying. By leveraging these indices, you can perform advanced searches, rank results by relevance, and retrieve accurate and meaningful information from your database.\n\n## Use Cases\n\nEmbeddings, the core concept of the Python SDK, find applications in various scenarios, including:\n\n- Search: Embeddings are commonly used for search functionalities, where results are ranked by relevance to a query string. By comparing the embeddings of query strings and documents, you can retrieve search results in order of their similarity or relevance.\n\n- Clustering: With embeddings, you can group text strings by similarity, enabling clustering of related data. By measuring the similarity between embeddings, you can identify clusters or groups of text strings that share common characteristics.\n\n- Recommendations: Embeddings play a crucial role in recommendation systems. By identifying items with related text strings based on their embeddings, you can provide personalized recommendations to users.\n\n- Anomaly Detection: Anomaly detection involves identifying outliers or anomalies that have little relatedness to the rest of the data. Embeddings can aid in this process by quantifying the similarity between text strings and flagging outliers.\n\n- Classification: Embeddings are utilized in classification tasks, where text strings are classified based on their most similar label. By comparing the embeddings of text strings and labels, you can classify new text strings into predefined categories.\n\n## How the Python SDK Works\n\nThe Python SDK streamlines the development of vector search applications by abstracting away the complexities of database management and indexing. Here's an overview of how the SDK works:\n\n- **Automatic Document and Text Chunk Management**: The SDK provides a convenient interface to manage documents and pipelines, automatically handling chunking and embedding for you. You can easily organize and structure your text data within the PostgreSQL database.\n\n- **Open Source Model Integration**: With the SDK, you can seamlessly incorporate a wide range of open source models to generate high-quality embeddings. These models capture the semantic meaning of text and enable powerful analysis and search capabilities.\n\n- **Embedding Indexing**: The Python SDK utilizes the PgVector extension to efficiently index the embeddings generated by the open source models. This indexing process optimizes search performance and allows for fast and accurate retrieval of relevant results.\n\n- **Querying and Search**: Once the embeddings are indexed, you can perform vector-based searches on the documents and text chunks stored in the PostgreSQL database. The SDK provides intuitive methods for executing queries and retrieving search results.\n\n# Quickstart\n\nFollow the steps below to quickly get started with the Python SDK for building scalable vector search applications on PostgresML databases.\n\n## Prerequisites\n\nBefore you begin, make sure you have the following:\n\n- PostgresML Database: Ensure you have a PostgresML database version >= `2.7.7` You can spin up a database using [Docker](https://github.com/postgresml/postgresml#installation) or [sign up for a free GPU-powered database](https://postgresml.org/signup).\n\n- Set the `DATABASE_URL` environment variable to the connection string of your PostgresML database.\n\n- Python version >=3.8.1\n\n## Installation\n\nTo install the Python SDK, use pip:\n\n```\npip install pgml\n```\n\n## Sample Code\n\nOnce you have the Python SDK installed, you can use the following sample code as a starting point for your vector search application:\n\n```python\nfrom pgml import Collection, Model, Splitter, Pipeline\nfrom datasets import load_dataset\nfrom time import time\nfrom dotenv import load_dotenv\nfrom rich.console import Console\nimport asyncio\n\nasync def main():\n        load_dotenv()\n    console = Console()\n\n    # Initialize collection\n    collection = Collection(\"quora_collection\")\n```\n\n**Explanation:**\n\n- The code imports the necessary modules and packages, including pgml, datasets, time, and rich.\n- It creates an instance of the Collection class which we will add pipelines and documents onto\n\nContinuing within `async def main():`\n\n```python\n    # Create a pipeline using the default model and splitter\n    model = Model()\n    splitter = Splitter()\n    pipeline = Pipeline(\"quorav1\", model, splitter)\n    await collection.add_pipeline(pipeline)\n```\n\n**Explanation**\n\n- The code creates an instance of `Model` and `Splitter` using their default arguments.\n- Finally, the code constructs a pipeline called `\"quroav1\"` and add it to the collection we Initialized above. This pipeline automatically generates chunks and embeddings for every upserted document.\n\nContinuing with `async def main():`\n\n```python\n    # Prep documents for upserting\n    data = load_dataset(\"squad\", split=\"train\")\n    data = data.to_pandas()\n    data = data.drop_duplicates(subset=[\"context\"])\n    documents = [\n        {\"id\": r[\"id\"], \"text\": r[\"context\"], \"title\": r[\"title\"]}\n        for r in data.to_dict(orient=\"records\")\n    ]\n\n    # Upsert documents\n    await collection.upsert_documents(documents[:200])\n```\n\n**Explanation**\n\n- The code loads the \"squad\" dataset, converts it to a pandas DataFrame, and drops any duplicate context values.\n- It creates a list of dictionaries representing the documents to be indexed, with each dictionary containing the document's id, text, and title.\n- Finally, they are upserted. As mentioned above, the pipeline added earlier automatically runs and generates chunks and embeddings for each document.\n\nContinuing within `async def main():`\n\n```python\n    # Query\n    query = \"Who won 20 grammy awards?\"\n    results = await collection.query().vector_recall(query, pipeline).limit(5).fetch_all()\n    console.print(results)\n    # Archive collection\n    await collection.archive()\n```\n\n**Explanation:**\n\n- The `query` method is called to perform a vector-based search on the collection. The query string is `Who won more than 20 grammy awards?`, and the top 5 results are requested.\n- The search results are printed.\n- Finally, the `archive` method is called to archive the collection and free up resources in the PostgresML database.\n\nCall `main` function in an async loop.\n\n```python\nasyncio.run(main())\n```\n\n**Running the Code**\n\nOpen a terminal or command prompt and navigate to the directory where the file is saved.\n\nExecute the following command:\n\n```\npython vector_search.py\n```\n\nYou should see the search results printed in the terminal. As you can see, our vector search engine found the right text chunk with the answer we are looking for.\n\n```python\n[\n    (\n        0.8423336495860181,\n        'Beyonc\u00e9 has won 20 Grammy Awards, both as a solo artist and member of Destiny\\'s Child, making her the second most honored female artist by the Grammys, behind Alison Krauss and the most nominated woman in Grammy Award history with 52 nominations. \"Single Ladies (Put a Ring on It)\" won Song of the Year in 2010 while \"Say My Name\" and \n\"Crazy in Love\" had previously won Best R&B Song. Dangerously in Love, B\\'Day and I Am... Sasha Fierce have all won Best Contemporary R&B Album. Beyonc\u00e9 set the record for the most Grammy awards won by a female artist in one night in 2010 when she won six awards, breaking the tie she previously held with Alicia Keys, Norah Jones, Alison Krauss, \nand Amy Winehouse, with Adele equaling this in 2012. Following her role in Dreamgirls she was nominated for Best Original Song for \"Listen\" and Best Actress at the Golden Globe Awards, and Outstanding Actress in a Motion Picture at the NAACP Image Awards. Beyonc\u00e9 won two awards at the Broadcast Film Critics Association Awards 2006; Best Song for \n\"Listen\" and Best Original Soundtrack for Dreamgirls: Music from the Motion Picture.',\n        {'id': '56becc903aeaaa14008c949f', 'title': 'Beyonc\u00e9'}\n    ),\n    (\n        0.8210567582713351,\n        'A self-described \"modern-day feminist\", Beyonc\u00e9 creates songs that are often characterized by themes of love, relationships, and monogamy, as well as female sexuality and empowerment. On stage, her dynamic, highly choreographed performances have led to critics hailing her as one of the best entertainers in contemporary popular music. \nThroughout a career spanning 19 years, she has sold over 118 million records as a solo artist, and a further 60 million with Destiny\\'s Child, making her one of the best-selling music artists of all time. She has won 20 Grammy Awards and is the most nominated woman in the award\\'s history. The Recording Industry Association of America recognized \nher as the Top Certified Artist in America during the 2000s decade. In 2009, Billboard named her the Top Radio Songs Artist of the Decade, the Top Female Artist of the 2000s and their Artist of the Millennium in 2011. Time listed her among the 100 most influential people in the world in 2013 and 2014. Forbes magazine also listed her as the most \npowerful female musician of 2015.',\n        {'id': '56be88473aeaaa14008c9080', 'title': 'Beyonc\u00e9'}\n    )\n]\n```\n\n## Upgrading\n\nChanges between SDK versions are not necessarily backwards compatible. We provide a migrate function to help transition smoothly.\n\n```python\nfrom pgml import migrate\nawait migrate()\n```\n\nThis will migrate all collections to be compatible with the latest SDK version.\n\n## Developer Setup\n\nThis Python library is generated from our core rust-sdk. Please check [rust-sdk documentation](../README.md) for developer setup.\n\n## Roadmap\n\n- [x] Enable filters on document metadata in `vector_search`. [Issue](https://github.com/postgresml/postgresml/issues/663)\n- [x] `text_search` functionality on documents using Postgres text search. [Issue](https://github.com/postgresml/postgresml/issues/664)\n- [x] `hybrid_search` functionality that does a combination of `vector_search` and `text_search`. [Issue](https://github.com/postgresml/postgresml/issues/665)\n- [x] Ability to call and manage OpenAI embeddings for comparison purposes. [Issue](https://github.com/postgresml/postgresml/issues/666)\n- [x] Perform chunking on the DB with multiple langchain splitters. [Issue](https://github.com/postgresml/postgresml/issues/668)\n- [ ] Save `vector_search` history for downstream monitoring of model performance. [Issue](https://github.com/postgresml/postgresml/issues/667)\n\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Python SDK is designed to facilitate the development of scalable vector search applications on PostgreSQL databases.",
    "version": "1.0.1",
    "project_urls": {
        "Documentation": "https://github.com/postgresml/postgresml/tree/master/pgml-sdks/pgml/python/",
        "Homepage": "https://postgresml.org",
        "Repository": "https://github.com/postgresml/postgresml"
    },
    "split_keywords": [
        "postgres",
        " machine learning",
        " vector databases",
        " embeddings"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "756b45f09da03c76ff58bed394a0a64a0d7424665eecfaa75a59848c11dd8ea1",
                "md5": "4f1225c5d2cb1e5bedbe143c0c8a454e",
                "sha256": "39a0d9b1dd86272d9fac0f4444d54ce05865164dcaf1d8c45608bcb657f75bcb"
            },
            "downloads": -1,
            "filename": "pgml-1.0.1-cp310-cp310-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4f1225c5d2cb1e5bedbe143c0c8a454e",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 5243194,
            "upload_time": "2024-03-27T23:03:06",
            "upload_time_iso_8601": "2024-03-27T23:03:06.879236Z",
            "url": "https://files.pythonhosted.org/packages/75/6b/45f09da03c76ff58bed394a0a64a0d7424665eecfaa75a59848c11dd8ea1/pgml-1.0.1-cp310-cp310-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d50b7fe292e887bc91b2f9ce0f397c1375e2c40c2fe2a61c122c8712b01a4d4a",
                "md5": "38e35bbda03074130165e311d47314b3",
                "sha256": "5a93236d58ee3c0e6e98a39b4a90cfcf42c1112628eaee493cfb46c2c5bf61e0"
            },
            "downloads": -1,
            "filename": "pgml-1.0.1-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "38e35bbda03074130165e311d47314b3",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 4931053,
            "upload_time": "2024-03-27T22:56:40",
            "upload_time_iso_8601": "2024-03-27T22:56:40.797906Z",
            "url": "https://files.pythonhosted.org/packages/d5/0b/7fe292e887bc91b2f9ce0f397c1375e2c40c2fe2a61c122c8712b01a4d4a/pgml-1.0.1-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8fba1243280c71a450294945cdbaafc694af4b3f451115fbaf83c8420766b0e8",
                "md5": "80c7939891e669fc73a96ec860c4c1e5",
                "sha256": "79834d1465dabe8a95b191241fd8dcfe74911b71334c3c488b440c8443a0ec19"
            },
            "downloads": -1,
            "filename": "pgml-1.0.1-cp310-cp310-manylinux_2_31_x86_64.whl",
            "has_sig": false,
            "md5_digest": "80c7939891e669fc73a96ec860c4c1e5",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 8534006,
            "upload_time": "2024-03-27T22:58:18",
            "upload_time_iso_8601": "2024-03-27T22:58:18.332898Z",
            "url": "https://files.pythonhosted.org/packages/8f/ba/1243280c71a450294945cdbaafc694af4b3f451115fbaf83c8420766b0e8/pgml-1.0.1-cp310-cp310-manylinux_2_31_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e64c21cd3e90b4c093ead5e8c16e1bc1df88618982eb5b68f2eb6606fab6a305",
                "md5": "ceae1cb23d1310560eefa7c2ae7a54f0",
                "sha256": "e6ed552f96f27ae54fbca9c4714586cc931098c763033d58f3c9d13677e94a19"
            },
            "downloads": -1,
            "filename": "pgml-1.0.1-cp310-cp310-manylinux_2_34_aarch64.whl",
            "has_sig": false,
            "md5_digest": "ceae1cb23d1310560eefa7c2ae7a54f0",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 8897835,
            "upload_time": "2024-03-27T23:00:42",
            "upload_time_iso_8601": "2024-03-27T23:00:42.937589Z",
            "url": "https://files.pythonhosted.org/packages/e6/4c/21cd3e90b4c093ead5e8c16e1bc1df88618982eb5b68f2eb6606fab6a305/pgml-1.0.1-cp310-cp310-manylinux_2_34_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "435d7b9df887a5565568094323a1a6387b0a778e1970a0c9be1b5937bd2490b8",
                "md5": "67ad041040c21af961bd05de181be121",
                "sha256": "7d5a51b47b5ca2acabf323ecffdc2893ed6da3512d2245d7a73e38e044fb79e9"
            },
            "downloads": -1,
            "filename": "pgml-1.0.1-cp310-cp310-manylinux_2_34_x86_64.whl",
            "has_sig": false,
            "md5_digest": "67ad041040c21af961bd05de181be121",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 8538420,
            "upload_time": "2024-03-27T22:57:12",
            "upload_time_iso_8601": "2024-03-27T22:57:12.752803Z",
            "url": "https://files.pythonhosted.org/packages/43/5d/7b9df887a5565568094323a1a6387b0a778e1970a0c9be1b5937bd2490b8/pgml-1.0.1-cp310-cp310-manylinux_2_34_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b634b40c7e009805d17ba69d81fb8d2cc19765caf7170f09b83d1e6e717be78c",
                "md5": "fa87803b1215dfdeb5c3c345262c273d",
                "sha256": "f40aeedc5cfdf4f57ec5d68b0d933bfe426e2b622bdd9ba5aa5fbca3b175f60c"
            },
            "downloads": -1,
            "filename": "pgml-1.0.1-cp310-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "fa87803b1215dfdeb5c3c345262c273d",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 5491849,
            "upload_time": "2024-03-27T22:59:28",
            "upload_time_iso_8601": "2024-03-27T22:59:28.314555Z",
            "url": "https://files.pythonhosted.org/packages/b6/34/b40c7e009805d17ba69d81fb8d2cc19765caf7170f09b83d1e6e717be78c/pgml-1.0.1-cp310-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a52e9c9c10fbde38974aed2a24c97cefdd59d3319c7741d00f67ebbe4433d39e",
                "md5": "4345208c89fafda83bd88e87e52aab96",
                "sha256": "30dd1f9da9decfb40d23ecec896fcb5b21d959b91fe5b038eeb3d9753eebf75f"
            },
            "downloads": -1,
            "filename": "pgml-1.0.1-cp311-cp311-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4345208c89fafda83bd88e87e52aab96",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 5243193,
            "upload_time": "2024-03-27T23:03:10",
            "upload_time_iso_8601": "2024-03-27T23:03:10.150935Z",
            "url": "https://files.pythonhosted.org/packages/a5/2e/9c9c10fbde38974aed2a24c97cefdd59d3319c7741d00f67ebbe4433d39e/pgml-1.0.1-cp311-cp311-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5a4189193637eb71eaa3bbffee66362ed44814a90efc4fb3f67c1bd964e97d44",
                "md5": "2bba1dca0ad7211d67ff71d367446b01",
                "sha256": "e9df5a7fa7e146536f4b0aacb7a65cc342087bc33fb5253de7a33ae46960d916"
            },
            "downloads": -1,
            "filename": "pgml-1.0.1-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "2bba1dca0ad7211d67ff71d367446b01",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 4931053,
            "upload_time": "2024-03-27T22:56:48",
            "upload_time_iso_8601": "2024-03-27T22:56:48.207736Z",
            "url": "https://files.pythonhosted.org/packages/5a/41/89193637eb71eaa3bbffee66362ed44814a90efc4fb3f67c1bd964e97d44/pgml-1.0.1-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "512b734ee7aaa6557d8ddc7d516ebd468334cd49dc7835f8acd77e087c74d230",
                "md5": "1402a42490ccb36fda8ea6992099136e",
                "sha256": "f3f60e20131cc07e28dd2b1a609669d04cff5409661ab80ac4029eceecd93ec3"
            },
            "downloads": -1,
            "filename": "pgml-1.0.1-cp311-cp311-manylinux_2_31_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1402a42490ccb36fda8ea6992099136e",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 8534090,
            "upload_time": "2024-03-27T22:58:20",
            "upload_time_iso_8601": "2024-03-27T22:58:20.611002Z",
            "url": "https://files.pythonhosted.org/packages/51/2b/734ee7aaa6557d8ddc7d516ebd468334cd49dc7835f8acd77e087c74d230/pgml-1.0.1-cp311-cp311-manylinux_2_31_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a301b07c701edbf7f50a3d70525df5deb4464d8b480a06f88ce3675349cb0c1b",
                "md5": "faa14f1f9b10372ea27c87db1a4b8ac9",
                "sha256": "721cc952a0deb3d84ab618ff89748ad6dfacd5facbb65293718e9fc9c61c4179"
            },
            "downloads": -1,
            "filename": "pgml-1.0.1-cp311-cp311-manylinux_2_34_aarch64.whl",
            "has_sig": false,
            "md5_digest": "faa14f1f9b10372ea27c87db1a4b8ac9",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 8897579,
            "upload_time": "2024-03-27T23:00:47",
            "upload_time_iso_8601": "2024-03-27T23:00:47.673204Z",
            "url": "https://files.pythonhosted.org/packages/a3/01/b07c701edbf7f50a3d70525df5deb4464d8b480a06f88ce3675349cb0c1b/pgml-1.0.1-cp311-cp311-manylinux_2_34_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1e534e6eb1cecf7f3962da1dff1275bbf4fa4e92d305c78e84af54fce6c3c946",
                "md5": "ba0ccce6d06813a9773bb6a32a5dcb80",
                "sha256": "1508fcb4815542fb7a1038eec47147b9028a56e8e490ddc704432de3019682e6"
            },
            "downloads": -1,
            "filename": "pgml-1.0.1-cp311-cp311-manylinux_2_34_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ba0ccce6d06813a9773bb6a32a5dcb80",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 8538527,
            "upload_time": "2024-03-27T22:57:15",
            "upload_time_iso_8601": "2024-03-27T22:57:15.046811Z",
            "url": "https://files.pythonhosted.org/packages/1e/53/4e6eb1cecf7f3962da1dff1275bbf4fa4e92d305c78e84af54fce6c3c946/pgml-1.0.1-cp311-cp311-manylinux_2_34_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e7994658592e2bd6924d0eae8e91a31c1952c0f99adb77fe37db5125563d0109",
                "md5": "ef5a08528f7a3cd2ff59a4539996d9a4",
                "sha256": "069efa80c4d5847ef2e662f33e565126f7b8a1a75cc38f78c0bb692a6f5a41e4"
            },
            "downloads": -1,
            "filename": "pgml-1.0.1-cp311-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "ef5a08528f7a3cd2ff59a4539996d9a4",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 5491854,
            "upload_time": "2024-03-27T22:59:32",
            "upload_time_iso_8601": "2024-03-27T22:59:32.618984Z",
            "url": "https://files.pythonhosted.org/packages/e7/99/4658592e2bd6924d0eae8e91a31c1952c0f99adb77fe37db5125563d0109/pgml-1.0.1-cp311-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "958bf29d2773cb4818b2154b7b24b2d835f6622a1b3b9101281fc094fb0a4e1e",
                "md5": "2e551adef6a8077be40a1a5404b6c374",
                "sha256": "551e9ee9261cc4ed1ff88dcc32a5056919601a240230e68d0f3243e4ac447e1b"
            },
            "downloads": -1,
            "filename": "pgml-1.0.1-cp37-cp37m-manylinux_2_31_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2e551adef6a8077be40a1a5404b6c374",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 8535388,
            "upload_time": "2024-03-27T22:58:10",
            "upload_time_iso_8601": "2024-03-27T22:58:10.356488Z",
            "url": "https://files.pythonhosted.org/packages/95/8b/f29d2773cb4818b2154b7b24b2d835f6622a1b3b9101281fc094fb0a4e1e/pgml-1.0.1-cp37-cp37m-manylinux_2_31_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1df516b1364b213dc9ba303b1d1c6369107e588dba4a0e354c3f18e34e2470b1",
                "md5": "bbdcc2c1e87b62db31899ebd9b15a12a",
                "sha256": "7ef0070b6be7300e7c4eec0e958181a668164c70dd585987588bcce129a25a62"
            },
            "downloads": -1,
            "filename": "pgml-1.0.1-cp37-cp37m-manylinux_2_34_aarch64.whl",
            "has_sig": false,
            "md5_digest": "bbdcc2c1e87b62db31899ebd9b15a12a",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 8895178,
            "upload_time": "2024-03-27T23:00:30",
            "upload_time_iso_8601": "2024-03-27T23:00:30.542000Z",
            "url": "https://files.pythonhosted.org/packages/1d/f5/16b1364b213dc9ba303b1d1c6369107e588dba4a0e354c3f18e34e2470b1/pgml-1.0.1-cp37-cp37m-manylinux_2_34_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2cebd677debf6cf9d4a883db8e40d18abb708a9f6303e244e74fcbbac821b684",
                "md5": "58c44a60016dfced3229da39382cf47e",
                "sha256": "2eae864d0610f89c1457021e55ca9878865676bfaee668c31eefd4d0500c8908"
            },
            "downloads": -1,
            "filename": "pgml-1.0.1-cp37-cp37m-manylinux_2_34_x86_64.whl",
            "has_sig": false,
            "md5_digest": "58c44a60016dfced3229da39382cf47e",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 8542577,
            "upload_time": "2024-03-27T22:57:03",
            "upload_time_iso_8601": "2024-03-27T22:57:03.175496Z",
            "url": "https://files.pythonhosted.org/packages/2c/eb/d677debf6cf9d4a883db8e40d18abb708a9f6303e244e74fcbbac821b684/pgml-1.0.1-cp37-cp37m-manylinux_2_34_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "edf5bb9ab1cc2df6271c97c3efcdd661969da1af05101807fb00bdf4af33df1a",
                "md5": "d7be1baf41b7cf37536e4b623b25aaba",
                "sha256": "260e12eced9d87dfd493a6def35906202e8e4abce5af7326f72a85310b9b77b6"
            },
            "downloads": -1,
            "filename": "pgml-1.0.1-cp38-cp38-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d7be1baf41b7cf37536e4b623b25aaba",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 5246559,
            "upload_time": "2024-03-27T23:03:00",
            "upload_time_iso_8601": "2024-03-27T23:03:00.239951Z",
            "url": "https://files.pythonhosted.org/packages/ed/f5/bb9ab1cc2df6271c97c3efcdd661969da1af05101807fb00bdf4af33df1a/pgml-1.0.1-cp38-cp38-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b8f3aa7eab5b3c579ede3fc713857df5b9085fdc7fcf54eeeab4ce3bea876549",
                "md5": "7dfdf34ca545ce2a3388d8cb99e2777e",
                "sha256": "e06ac087035d16c9ce7878212c862fa8d0ac5a131e720ae6e9a1f9f2e7045b7b"
            },
            "downloads": -1,
            "filename": "pgml-1.0.1-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "7dfdf34ca545ce2a3388d8cb99e2777e",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 4925319,
            "upload_time": "2024-03-27T22:56:22",
            "upload_time_iso_8601": "2024-03-27T22:56:22.909054Z",
            "url": "https://files.pythonhosted.org/packages/b8/f3/aa7eab5b3c579ede3fc713857df5b9085fdc7fcf54eeeab4ce3bea876549/pgml-1.0.1-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "30b2d8c730f3bd53d2551dba67c234e9b913a0fc93fa93567f7460eabf25bea4",
                "md5": "3b88df787ae83e87a9adee3cf94f7c4f",
                "sha256": "96df064ad5bdf953519d14979cd9feefdeddb4b29bf527cd41878c2ea47939be"
            },
            "downloads": -1,
            "filename": "pgml-1.0.1-cp38-cp38-manylinux_2_31_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3b88df787ae83e87a9adee3cf94f7c4f",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 8532535,
            "upload_time": "2024-03-27T22:58:12",
            "upload_time_iso_8601": "2024-03-27T22:58:12.944711Z",
            "url": "https://files.pythonhosted.org/packages/30/b2/d8c730f3bd53d2551dba67c234e9b913a0fc93fa93567f7460eabf25bea4/pgml-1.0.1-cp38-cp38-manylinux_2_31_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7de18963321aec940f2fcfae57862c4a1924646fff58f93ec77e259354d33e3c",
                "md5": "40b7a93ac60bf168f526ea5e7e8e74bc",
                "sha256": "f5627814153657e799a0ebe16bf4f3de5333cb78916b7bf95f697611c91c68dc"
            },
            "downloads": -1,
            "filename": "pgml-1.0.1-cp38-cp38-manylinux_2_34_aarch64.whl",
            "has_sig": false,
            "md5_digest": "40b7a93ac60bf168f526ea5e7e8e74bc",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 8895645,
            "upload_time": "2024-03-27T23:00:34",
            "upload_time_iso_8601": "2024-03-27T23:00:34.953486Z",
            "url": "https://files.pythonhosted.org/packages/7d/e1/8963321aec940f2fcfae57862c4a1924646fff58f93ec77e259354d33e3c/pgml-1.0.1-cp38-cp38-manylinux_2_34_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "acae9c3723140437762ff2cbb82ed10ec284234ee4de158980b850b1a9097994",
                "md5": "7dcaa485da4d9df1c3ac11df7bd7c2e1",
                "sha256": "56daddd2592fcd0acdace6752bc30c32693fd73704d2625f40f14b2c3b35774e"
            },
            "downloads": -1,
            "filename": "pgml-1.0.1-cp38-cp38-manylinux_2_34_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7dcaa485da4d9df1c3ac11df7bd7c2e1",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 8538537,
            "upload_time": "2024-03-27T22:57:05",
            "upload_time_iso_8601": "2024-03-27T22:57:05.937180Z",
            "url": "https://files.pythonhosted.org/packages/ac/ae/9c3723140437762ff2cbb82ed10ec284234ee4de158980b850b1a9097994/pgml-1.0.1-cp38-cp38-manylinux_2_34_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2e9c74077b994ced0d664836dc61e0c8232387fa0af5f06b26c6030f8c97ef7d",
                "md5": "81d0e863cee1c79c2b3e487293ec09ea",
                "sha256": "b4504fa1fc4957b8ca09c8cd48ade0f847ae697814891fc397fb40e497a76dbe"
            },
            "downloads": -1,
            "filename": "pgml-1.0.1-cp38-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "81d0e863cee1c79c2b3e487293ec09ea",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 5490025,
            "upload_time": "2024-03-27T22:59:22",
            "upload_time_iso_8601": "2024-03-27T22:59:22.065178Z",
            "url": "https://files.pythonhosted.org/packages/2e/9c/74077b994ced0d664836dc61e0c8232387fa0af5f06b26c6030f8c97ef7d/pgml-1.0.1-cp38-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f2b74a86f32c362cff0205cea659aee7657ca9b4692f8f62e85549f0d0914c30",
                "md5": "9f8ad6e971ad83d868e020ee00fd0402",
                "sha256": "5bf96b8a25041a64ea9cca7feed678e95d92bd31166755b446b2cb10b8317c4d"
            },
            "downloads": -1,
            "filename": "pgml-1.0.1-cp39-cp39-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9f8ad6e971ad83d868e020ee00fd0402",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 5243522,
            "upload_time": "2024-03-27T23:03:03",
            "upload_time_iso_8601": "2024-03-27T23:03:03.636306Z",
            "url": "https://files.pythonhosted.org/packages/f2/b7/4a86f32c362cff0205cea659aee7657ca9b4692f8f62e85549f0d0914c30/pgml-1.0.1-cp39-cp39-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "641da12a97e4c3cc49bad69c9f86e359372ed543924ce708e945699c142060f9",
                "md5": "65d2825db099d8c34cadc59f7ce1ce7f",
                "sha256": "5ffbf256cac9c9412c6415d83f9a88254067a16798410a86f047acab4106145c"
            },
            "downloads": -1,
            "filename": "pgml-1.0.1-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "65d2825db099d8c34cadc59f7ce1ce7f",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 4931364,
            "upload_time": "2024-03-27T22:56:30",
            "upload_time_iso_8601": "2024-03-27T22:56:30.879362Z",
            "url": "https://files.pythonhosted.org/packages/64/1d/a12a97e4c3cc49bad69c9f86e359372ed543924ce708e945699c142060f9/pgml-1.0.1-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6a2f665f1d4654396cc8d699d4ff3511fea8f0915804d0dc99462df9e15a66f1",
                "md5": "9baa3bb66a37001482fc6297a0864b61",
                "sha256": "b08f1f53aca0d673dd2999478b256644e447de68c8fe4d577cd0de9de7e3a09a"
            },
            "downloads": -1,
            "filename": "pgml-1.0.1-cp39-cp39-manylinux_2_31_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9baa3bb66a37001482fc6297a0864b61",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 8534317,
            "upload_time": "2024-03-27T22:58:15",
            "upload_time_iso_8601": "2024-03-27T22:58:15.809017Z",
            "url": "https://files.pythonhosted.org/packages/6a/2f/665f1d4654396cc8d699d4ff3511fea8f0915804d0dc99462df9e15a66f1/pgml-1.0.1-cp39-cp39-manylinux_2_31_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "14cdac6957dc68e990ae77cb98c9ab0d6c639495a98e16371797029667bb5dc5",
                "md5": "85a5462b6e464d2ce50cb47ebc9eeb57",
                "sha256": "9d9035ef7eca08699fde40f1bceb915b4a31664d8621fd1689d76841914f5127"
            },
            "downloads": -1,
            "filename": "pgml-1.0.1-cp39-cp39-manylinux_2_34_aarch64.whl",
            "has_sig": false,
            "md5_digest": "85a5462b6e464d2ce50cb47ebc9eeb57",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 8898666,
            "upload_time": "2024-03-27T23:00:38",
            "upload_time_iso_8601": "2024-03-27T23:00:38.806987Z",
            "url": "https://files.pythonhosted.org/packages/14/cd/ac6957dc68e990ae77cb98c9ab0d6c639495a98e16371797029667bb5dc5/pgml-1.0.1-cp39-cp39-manylinux_2_34_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2b147557fc6561f55a4d5ed2cdfab070aea5be5933763de91e54b14990a47854",
                "md5": "8b0297f64d59d0c93e12469bebf291dc",
                "sha256": "9ee40587b6267063d900a4476775e718b9db3bab3108aeebeee0abf81262d6a0"
            },
            "downloads": -1,
            "filename": "pgml-1.0.1-cp39-cp39-manylinux_2_34_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8b0297f64d59d0c93e12469bebf291dc",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 8539427,
            "upload_time": "2024-03-27T22:57:08",
            "upload_time_iso_8601": "2024-03-27T22:57:08.956374Z",
            "url": "https://files.pythonhosted.org/packages/2b/14/7557fc6561f55a4d5ed2cdfab070aea5be5933763de91e54b14990a47854/pgml-1.0.1-cp39-cp39-manylinux_2_34_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7f07b220ee7bc0ef43daa70d74ebfd4b8a4a7d35d66dacd51035926f21572b13",
                "md5": "e2bb49d252a82e812849bacdacd2fbc5",
                "sha256": "5acd199e834f60485e0d824a6b681fafe4123086abf99bb33850e8131476f7b5"
            },
            "downloads": -1,
            "filename": "pgml-1.0.1-cp39-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "e2bb49d252a82e812849bacdacd2fbc5",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 5490046,
            "upload_time": "2024-03-27T22:59:25",
            "upload_time_iso_8601": "2024-03-27T22:59:25.214258Z",
            "url": "https://files.pythonhosted.org/packages/7f/07/b220ee7bc0ef43daa70d74ebfd4b8a4a7d35d66dacd51035926f21572b13/pgml-1.0.1-cp39-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2639dae36415f7a8a495eae644dd68ace17c483d9981d927de6dfd6005d6e278",
                "md5": "44ba459a8e39e1a2885d5b9dbdc7b7f1",
                "sha256": "d06b9cc809707abf66d94e6e20548888272d50e4d7fc88b8f08441591138e2fd"
            },
            "downloads": -1,
            "filename": "pgml-1.0.1.tar.gz",
            "has_sig": false,
            "md5_digest": "44ba459a8e39e1a2885d5b9dbdc7b7f1",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 241898,
            "upload_time": "2024-03-27T22:56:50",
            "upload_time_iso_8601": "2024-03-27T22:56:50.957769Z",
            "url": "https://files.pythonhosted.org/packages/26/39/dae36415f7a8a495eae644dd68ace17c483d9981d927de6dfd6005d6e278/pgml-1.0.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-03-27 22:56:50",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "postgresml",
    "github_project": "postgresml",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "pgml"
}
        
Elapsed time: 0.24089s