deepsearch-glm


Namedeepsearch-glm JSON
Version 0.21.1 PyPI version JSON
download
home_pageNone
SummaryGraph Language Models
upload_time2024-09-17 11:12:54
maintainerNone
docs_urlNone
authorPeter Staar
requires_python<4.0,>=3.8
licenseMIT
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Graph Language Models

![build](https://github.com/DS4SD/deepsearch-glm/actions/workflows/cmake.yml/badge.svg)
![tests](https://github.com/DS4SD/deepsearch-glm/actions/workflows/tests.yml/badge.svg)

[![License MIT](https://img.shields.io/github/license/ds4sd/deepsearch-glm)](https://opensource.org/licenses/MIT)
[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)

[![PyPI version](https://img.shields.io/pypi/v/deepsearch-glm)](https://pypi.org/project/deepsearch-glm/)
[![PyPI - Python Version](https://img.shields.io/pypi/pyversions/deepsearch-glm)](https://pypi.org/project/deepsearch-glm/)

![PyPI - Downloads](https://img.shields.io/pypi/dm/deepsearch-glm)

## Getting Started

### Finding entities and relations via NLP on text and documents

To get easily started, simply install the `deepsearch-glm` package from PyPi. This can be
done using the traditional `pip install deepsearch-glm` or via poetry `poetry add deepsearch-glm`.

Below, you can find the code-snippet to process pieces of text,

```python
from deepsearch_glm.utils.load_pretrained_models import load_pretrained_nlp_models
from deepsearch_glm.nlp_utils import init_nlp_model, print_on_shell

load_pretrained_nlp_models(force=False, verbose=False)
mdl = init_nlp_model()

# from Wikipedia (https://en.wikipedia.org/wiki/France)
text = """
France (French: [fʁɑ̃s] Listen), officially the French Republic
(French: République française [ʁepyblik fʁɑ̃sɛz]),[14] is a country
located primarily in Western Europe. It also includes overseas regions
and territories in the Americas and the Atlantic, Pacific and Indian
Oceans,[XII] giving it one of the largest discontiguous exclusive
economic zones in the world.
"""

res = mdl.apply_on_text(text)
print_on_shell(text, res)
```

The last command will print the pandas dataframes on the shell and provides the
following output,

```sh
text:

   #France (French: [fʁɑ̃s] Listen), officially the French Republic
(French: République française [ʁepyblik fʁɑ̃sɛz]),[14] is a country
located primarily in Western Europe. It also includes overseas regions
and territories in the Americas and the Atlantic, Pacific and Indian
Oceans, giving it one of the largest discontiguous exclusive economic
zones in the world.

properties:

         type label  confidence
0  language    en    0.897559

instances:

  type         subtype               subj_path      char_i    char_j  original
-----------  --------------------  -----------  --------  --------  ---------------------------------------------------------------------
sentence                           #                   1       180  France (French: [fʁɑ̃s] Listen), officially the French Republic
                                                                    (French: République française [ʁepyblik fʁɑ̃sɛz]),[14] is a country
                                                                    located primarily in Western Europe.
term         single-term           #                   1         8  #France
expression   wtoken-concatenation  #                   1         8  #France
parenthesis  round brackets        #                   9        36  (French: [fʁɑ̃s] Listen)
expression   wtoken-concatenation  #                  18        28  [fʁɑ̃s]
term         single-term           #                  29        35  Listen
term         single-term           #                  53        68  French Republic
parenthesis  round brackets        #                  69       125  (French: République française [ʁepyblik fʁɑ̃sɛz])
term         single-term           #                  78       100  République française
term         single-term           #                 112       124  fʁɑ̃sɛz]
parenthesis  reference             #                 126       130  [14]
numval       ival                  #                 127       129  14
term         single-term           #                 136       143  country
term         single-term           #                 165       179  Western Europe
sentence                           #                 181       373  It also includes overseas regions and territories in the Americas and
                                                                    the Atlantic, Pacific and Indian Oceans, giving it one of the largest
                                                                    discontiguous exclusive economic zones in the world.
term         single-term           #                 198       214  overseas regions
term         enum-term-mark-3      #                 207       230  regions and territories
term         single-term           #                 219       230  territories
term         single-term           #                 238       246  Americas
term         enum-term-mark-4      #                 255       290  Atlantic, Pacific and Indian Oceans
term         single-term           #                 255       263  Atlantic
term         single-term           #                 265       272  Pacific
term         single-term           #                 277       290  Indian Oceans
term         single-term           #                 313       359  largest discontiguous exclusive economic zones
term         single-term           #                 367       372  world
```

The NLP can also be applied on entire documents which were converted using
Deep Search. A simple example is shown below,

```python
from deepsearch_glm.utils.load_pretrained_models import load_pretrained_nlp_models
from deepsearch_glm.nlp_utils import init_nlp_model, print_on_shell

load_pretrained_nlp_models(force=False, verbose=False)
mdl = init_nlp_model()

with open("<path-to-json-file-of-converted-pdf-doc>", "r") as fr:
    doc = json.load(fr)

enriched_doc = mdl.apply_on_doc(doc)
```

### Creating Graphs from NLP entities and relations in document collections

To create graphs, you need two ingredients, namely,

1. a collection of text or documents
2. a set of NLP models that provide entities and relations

Below is a code snippet to create the graph using these basic ingredients,

```python
odir = "<ouput-dir-to-save-graph>"
json_files = ["json-file of converted PDF document"]
model_names = "<list of NLP models:langauge;term;verb;abbreviation>"

glm = create_glm_from_docs(odir, json_files, model_names)	
```

### Querying Graphs 

TBD

## Install for development

### Python installation

To use the python interface, first make sure all dependencies are installed. We use [poetry](https://python-poetry.org/docs/)
for that. To install all the dependent python packages and get the python bindings, simply execute,

```sh
poetry install --all-extras
```

### CXX compilation

To compile from scratch, simply run the following command in the `deepsearch-glm` root folder to
create the `build` directory,

```sh
cmake -B ./build; 
```

Next, compile the code from scratch,

```sh
cmake --build ./build -j
```

## Run using the Python Interface

### NLP and GLM examples

_Note: Some of the examples require to convert PDF documents with Deep Search. For this to run, it is required to install the [deepsearch-toolkit](https://github.com/DS4SD/deepsearch-toolkit) package. You can install it with `pip install deepsearch-glm[toolkit]`._

To run the examples, simply do execute the scripts as `poetry run python <script> <input>`. Examples are,

1. **apply NLP on document(s)**
```sh
poetry run python ./deepsearch_glm/nlp_apply_on_docs.py --pdf './data/documents/articles/2305.*.pdf' --models 'language;term'
```
2. **analyse NLP on document(s)**
```sh
poetry run python ./deepsearch_glm/nlp_apply_on_docs.py --json './data/documents/articles/2305.*.nlp.json' 
```
3. **create GLM from document(s)**
```sh
poetry run python ./deepsearch_glm/glm_create_from_docs.py --pdf ./data/documents/reports/2022-ibm-annual-report.pdf
```

### Deep Search utilities

To use the Deep Search capabilities, it is required to install the [deepsearch-toolkit](https://github.com/DS4SD/deepsearch-toolkit) package.
You can install it with `pip install deepsearch-glm[toolkit]`.


1. **Query and download document(s)**
```sh
poetry run python ./deepsearch_glm/utils/ds_query.py --index patent-uspto --query "\"global warming potential\" AND \"etching\""
```
2. **Converting PDF document(s) into JSON**
```sh
poetry run python ./deepsearch_glm/utils/ds_convert.py --pdf './data/documents/articles/2305.*.pdf'"
```

## Run using CXX executables

If you like to be bare-bones, you can also use the executables for NLP and GLM's directly. In general, we
follow a simple scheme of the form

```sh
./nlp.exe -m <mode> -c <JSON-config file>
./glm.exe -m <mode> -c <JSON-config file>
```

In both cases, the modes can be queried directly via the `-h` or `--help`

```sh
./nlp.exe -h
./glm.exe -h
```

and the configuration files can be generated,

```sh
./nlp.exe -m create-configs
./glm.exe -m create-configs
```

### Natural Language Processing (NLP)

After you have generated the configuration files (see above), you can

1. train simple NLP models
```sh
./nlp.exe -m train -c nlp_train_config.json
```
2. leverage pre-trained models
```sh
./nlp.exe -m predict -c nlp_predict.example.json
```

### Graph Language Models (GLM)

1. create a GLM
```sh
./glm.exe -m create -c glm_config_create.json
```
2. explore interactively the GLM
```sh
./glm.exe -m explore -c glm_config_explore.json
```

## Testing

To run the tests, simply execute (after installation),

```sh
poetry run pytest ./tests -vvv -s
```
            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "deepsearch-glm",
    "maintainer": null,
    "docs_url": null,
    "requires_python": "<4.0,>=3.8",
    "maintainer_email": null,
    "keywords": null,
    "author": "Peter Staar",
    "author_email": "taa@zurich.ibm.com",
    "download_url": null,
    "platform": null,
    "description": "# Graph Language Models\n\n![build](https://github.com/DS4SD/deepsearch-glm/actions/workflows/cmake.yml/badge.svg)\n![tests](https://github.com/DS4SD/deepsearch-glm/actions/workflows/tests.yml/badge.svg)\n\n[![License MIT](https://img.shields.io/github/license/ds4sd/deepsearch-glm)](https://opensource.org/licenses/MIT)\n[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)\n\n[![PyPI version](https://img.shields.io/pypi/v/deepsearch-glm)](https://pypi.org/project/deepsearch-glm/)\n[![PyPI - Python Version](https://img.shields.io/pypi/pyversions/deepsearch-glm)](https://pypi.org/project/deepsearch-glm/)\n\n![PyPI - Downloads](https://img.shields.io/pypi/dm/deepsearch-glm)\n\n## Getting Started\n\n### Finding entities and relations via NLP on text and documents\n\nTo get easily started, simply install the `deepsearch-glm` package from PyPi. This can be\ndone using the traditional `pip install deepsearch-glm` or via poetry `poetry add deepsearch-glm`.\n\nBelow, you can find the code-snippet to process pieces of text,\n\n```python\nfrom deepsearch_glm.utils.load_pretrained_models import load_pretrained_nlp_models\nfrom deepsearch_glm.nlp_utils import init_nlp_model, print_on_shell\n\nload_pretrained_nlp_models(force=False, verbose=False)\nmdl = init_nlp_model()\n\n# from Wikipedia (https://en.wikipedia.org/wiki/France)\ntext = \"\"\"\nFrance (French: [f\u0281\u0251\u0303s] Listen), officially the French Republic\n(French: R\u00e9publique fran\u00e7aise [\u0281epyblik f\u0281\u0251\u0303s\u025bz]),[14] is a country\nlocated primarily in Western Europe. It also includes overseas regions\nand territories in the Americas and the Atlantic, Pacific and Indian\nOceans,[XII] giving it one of the largest discontiguous exclusive\neconomic zones in the world.\n\"\"\"\n\nres = mdl.apply_on_text(text)\nprint_on_shell(text, res)\n```\n\nThe last command will print the pandas dataframes on the shell and provides the\nfollowing output,\n\n```sh\ntext:\n\n   #France (French: [f\u0281\u0251\u0303s] Listen), officially the French Republic\n(French: R\u00e9publique fran\u00e7aise [\u0281epyblik f\u0281\u0251\u0303s\u025bz]),[14] is a country\nlocated primarily in Western Europe. It also includes overseas regions\nand territories in the Americas and the Atlantic, Pacific and Indian\nOceans, giving it one of the largest discontiguous exclusive economic\nzones in the world.\n\nproperties:\n\n         type label  confidence\n0  language    en    0.897559\n\ninstances:\n\n  type         subtype               subj_path      char_i    char_j  original\n-----------  --------------------  -----------  --------  --------  ---------------------------------------------------------------------\nsentence                           #                   1       180  France (French: [f\u0281\u0251\u0303s] Listen), officially the French Republic\n                                                                    (French: R\u00e9publique fran\u00e7aise [\u0281epyblik f\u0281\u0251\u0303s\u025bz]),[14] is a country\n                                                                    located primarily in Western Europe.\nterm         single-term           #                   1         8  #France\nexpression   wtoken-concatenation  #                   1         8  #France\nparenthesis  round brackets        #                   9        36  (French: [f\u0281\u0251\u0303s] Listen)\nexpression   wtoken-concatenation  #                  18        28  [f\u0281\u0251\u0303s]\nterm         single-term           #                  29        35  Listen\nterm         single-term           #                  53        68  French Republic\nparenthesis  round brackets        #                  69       125  (French: R\u00e9publique fran\u00e7aise [\u0281epyblik f\u0281\u0251\u0303s\u025bz])\nterm         single-term           #                  78       100  R\u00e9publique fran\u00e7aise\nterm         single-term           #                 112       124  f\u0281\u0251\u0303s\u025bz]\nparenthesis  reference             #                 126       130  [14]\nnumval       ival                  #                 127       129  14\nterm         single-term           #                 136       143  country\nterm         single-term           #                 165       179  Western Europe\nsentence                           #                 181       373  It also includes overseas regions and territories in the Americas and\n                                                                    the Atlantic, Pacific and Indian Oceans, giving it one of the largest\n                                                                    discontiguous exclusive economic zones in the world.\nterm         single-term           #                 198       214  overseas regions\nterm         enum-term-mark-3      #                 207       230  regions and territories\nterm         single-term           #                 219       230  territories\nterm         single-term           #                 238       246  Americas\nterm         enum-term-mark-4      #                 255       290  Atlantic, Pacific and Indian Oceans\nterm         single-term           #                 255       263  Atlantic\nterm         single-term           #                 265       272  Pacific\nterm         single-term           #                 277       290  Indian Oceans\nterm         single-term           #                 313       359  largest discontiguous exclusive economic zones\nterm         single-term           #                 367       372  world\n```\n\nThe NLP can also be applied on entire documents which were converted using\nDeep Search. A simple example is shown below,\n\n```python\nfrom deepsearch_glm.utils.load_pretrained_models import load_pretrained_nlp_models\nfrom deepsearch_glm.nlp_utils import init_nlp_model, print_on_shell\n\nload_pretrained_nlp_models(force=False, verbose=False)\nmdl = init_nlp_model()\n\nwith open(\"<path-to-json-file-of-converted-pdf-doc>\", \"r\") as fr:\n    doc = json.load(fr)\n\nenriched_doc = mdl.apply_on_doc(doc)\n```\n\n### Creating Graphs from NLP entities and relations in document collections\n\nTo create graphs, you need two ingredients, namely,\n\n1. a collection of text or documents\n2. a set of NLP models that provide entities and relations\n\nBelow is a code snippet to create the graph using these basic ingredients,\n\n```python\nodir = \"<ouput-dir-to-save-graph>\"\njson_files = [\"json-file of converted PDF document\"]\nmodel_names = \"<list of NLP models:langauge;term;verb;abbreviation>\"\n\nglm = create_glm_from_docs(odir, json_files, model_names)\t\n```\n\n### Querying Graphs \n\nTBD\n\n## Install for development\n\n### Python installation\n\nTo use the python interface, first make sure all dependencies are installed. We use [poetry](https://python-poetry.org/docs/)\nfor that. To install all the dependent python packages and get the python bindings, simply execute,\n\n```sh\npoetry install --all-extras\n```\n\n### CXX compilation\n\nTo compile from scratch, simply run the following command in the `deepsearch-glm` root folder to\ncreate the `build` directory,\n\n```sh\ncmake -B ./build; \n```\n\nNext, compile the code from scratch,\n\n```sh\ncmake --build ./build -j\n```\n\n## Run using the Python Interface\n\n### NLP and GLM examples\n\n_Note: Some of the examples require to convert PDF documents with Deep Search. For this to run, it is required to install the [deepsearch-toolkit](https://github.com/DS4SD/deepsearch-toolkit) package. You can install it with `pip install deepsearch-glm[toolkit]`._\n\nTo run the examples, simply do execute the scripts as `poetry run python <script> <input>`. Examples are,\n\n1. **apply NLP on document(s)**\n```sh\npoetry run python ./deepsearch_glm/nlp_apply_on_docs.py --pdf './data/documents/articles/2305.*.pdf' --models 'language;term'\n```\n2. **analyse NLP on document(s)**\n```sh\npoetry run python ./deepsearch_glm/nlp_apply_on_docs.py --json './data/documents/articles/2305.*.nlp.json' \n```\n3. **create GLM from document(s)**\n```sh\npoetry run python ./deepsearch_glm/glm_create_from_docs.py --pdf ./data/documents/reports/2022-ibm-annual-report.pdf\n```\n\n### Deep Search utilities\n\nTo use the Deep Search capabilities, it is required to install the [deepsearch-toolkit](https://github.com/DS4SD/deepsearch-toolkit) package.\nYou can install it with `pip install deepsearch-glm[toolkit]`.\n\n\n1. **Query and download document(s)**\n```sh\npoetry run python ./deepsearch_glm/utils/ds_query.py --index patent-uspto --query \"\\\"global warming potential\\\" AND \\\"etching\\\"\"\n```\n2. **Converting PDF document(s) into JSON**\n```sh\npoetry run python ./deepsearch_glm/utils/ds_convert.py --pdf './data/documents/articles/2305.*.pdf'\"\n```\n\n## Run using CXX executables\n\nIf you like to be bare-bones, you can also use the executables for NLP and GLM's directly. In general, we\nfollow a simple scheme of the form\n\n```sh\n./nlp.exe -m <mode> -c <JSON-config file>\n./glm.exe -m <mode> -c <JSON-config file>\n```\n\nIn both cases, the modes can be queried directly via the `-h` or `--help`\n\n```sh\n./nlp.exe -h\n./glm.exe -h\n```\n\nand the configuration files can be generated,\n\n```sh\n./nlp.exe -m create-configs\n./glm.exe -m create-configs\n```\n\n### Natural Language Processing (NLP)\n\nAfter you have generated the configuration files (see above), you can\n\n1. train simple NLP models\n```sh\n./nlp.exe -m train -c nlp_train_config.json\n```\n2. leverage pre-trained models\n```sh\n./nlp.exe -m predict -c nlp_predict.example.json\n```\n\n### Graph Language Models (GLM)\n\n1. create a GLM\n```sh\n./glm.exe -m create -c glm_config_create.json\n```\n2. explore interactively the GLM\n```sh\n./glm.exe -m explore -c glm_config_explore.json\n```\n\n## Testing\n\nTo run the tests, simply execute (after installation),\n\n```sh\npoetry run pytest ./tests -vvv -s\n```",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Graph Language Models",
    "version": "0.21.1",
    "project_urls": null,
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0752f2f290b60d6037e62e214b1642358f49744fda41331541238154cf1e7990",
                "md5": "2e85e2f7de5275d36d6e0f6dc68a8203",
                "sha256": "b765d371ab0a4f57dd2532c651d7dc1b4a187395153e619a77b6f0d0f6aefb32"
            },
            "downloads": -1,
            "filename": "deepsearch_glm-0.21.1-cp310-cp310-macosx_13_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "2e85e2f7de5275d36d6e0f6dc68a8203",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": "<4.0,>=3.8",
            "size": 5870620,
            "upload_time": "2024-09-17T11:12:54",
            "upload_time_iso_8601": "2024-09-17T11:12:54.305159Z",
            "url": "https://files.pythonhosted.org/packages/07/52/f2f290b60d6037e62e214b1642358f49744fda41331541238154cf1e7990/deepsearch_glm-0.21.1-cp310-cp310-macosx_13_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ac28a200e1374612ed42feba282200478b7cf8d85709f7f4367a363b9440be33",
                "md5": "46c11130d6c226b59c144dec13e31941",
                "sha256": "c69e055b98d0a22267a1d0b6139801aecc5b7386289b89f53f976ab723352728"
            },
            "downloads": -1,
            "filename": "deepsearch_glm-0.21.1-cp310-cp310-macosx_13_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "46c11130d6c226b59c144dec13e31941",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": "<4.0,>=3.8",
            "size": 6270598,
            "upload_time": "2024-09-17T11:09:55",
            "upload_time_iso_8601": "2024-09-17T11:09:55.972572Z",
            "url": "https://files.pythonhosted.org/packages/ac/28/a200e1374612ed42feba282200478b7cf8d85709f7f4367a363b9440be33/deepsearch_glm-0.21.1-cp310-cp310-macosx_13_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c50d1820469d1ac24c9d79dce25d6a7e788c43b4888baae644948d69e7dab551",
                "md5": "577bbdd2363ae71f4916b41c12739cdf",
                "sha256": "3eaa245e5ac4ab3e9d0c95a93e23f58d61d70f11431b76b6705fae358eb31c62"
            },
            "downloads": -1,
            "filename": "deepsearch_glm-0.21.1-cp310-cp310-macosx_14_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "577bbdd2363ae71f4916b41c12739cdf",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": "<4.0,>=3.8",
            "size": 5910322,
            "upload_time": "2024-09-17T11:07:05",
            "upload_time_iso_8601": "2024-09-17T11:07:05.350781Z",
            "url": "https://files.pythonhosted.org/packages/c5/0d/1820469d1ac24c9d79dce25d6a7e788c43b4888baae644948d69e7dab551/deepsearch_glm-0.21.1-cp310-cp310-macosx_14_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "75b7ed2b3690cb2b7f39cc7a42903dcbfee6c1590186ff781baff872f254fd12",
                "md5": "76d480d6fa5755c51b2d883209e2904c",
                "sha256": "63d195f6c5b30f4f908436589cffd4a5b9e18553c44c57fb635068a2afbd7fab"
            },
            "downloads": -1,
            "filename": "deepsearch_glm-0.21.1-cp310-cp310-macosx_14_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "76d480d6fa5755c51b2d883209e2904c",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": "<4.0,>=3.8",
            "size": 6319657,
            "upload_time": "2024-09-17T11:07:03",
            "upload_time_iso_8601": "2024-09-17T11:07:03.199965Z",
            "url": "https://files.pythonhosted.org/packages/75/b7/ed2b3690cb2b7f39cc7a42903dcbfee6c1590186ff781baff872f254fd12/deepsearch_glm-0.21.1-cp310-cp310-macosx_14_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1883de2bc970519656e8004cfa23c22f9426cdf9aefc3df3eb7bed9359de349b",
                "md5": "930037223d7afa298880c6149b62f2eb",
                "sha256": "13bea2b4e8c04647ec743c3feb1ee66c784db542ab9dbed8dad7eb66fca74b70"
            },
            "downloads": -1,
            "filename": "deepsearch_glm-0.21.1-cp311-cp311-macosx_13_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "930037223d7afa298880c6149b62f2eb",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": "<4.0,>=3.8",
            "size": 5870669,
            "upload_time": "2024-09-17T11:12:34",
            "upload_time_iso_8601": "2024-09-17T11:12:34.221801Z",
            "url": "https://files.pythonhosted.org/packages/18/83/de2bc970519656e8004cfa23c22f9426cdf9aefc3df3eb7bed9359de349b/deepsearch_glm-0.21.1-cp311-cp311-macosx_13_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "abc62de64be0ca4d4816fe7529c99e25741e00688cd0706b7af70b71de5c85ef",
                "md5": "e2fb244f40608eb6965e252143867a1e",
                "sha256": "c5b8b8e2207615ff99e535f00548c7b0b8e4ca4593e59edd83fcad98fc318284"
            },
            "downloads": -1,
            "filename": "deepsearch_glm-0.21.1-cp311-cp311-macosx_13_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e2fb244f40608eb6965e252143867a1e",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": "<4.0,>=3.8",
            "size": 6270716,
            "upload_time": "2024-09-17T11:13:16",
            "upload_time_iso_8601": "2024-09-17T11:13:16.623223Z",
            "url": "https://files.pythonhosted.org/packages/ab/c6/2de64be0ca4d4816fe7529c99e25741e00688cd0706b7af70b71de5c85ef/deepsearch_glm-0.21.1-cp311-cp311-macosx_13_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c93f5444c9e33b913bc529afca1d9bbc9cb337908fd0b72a1488819fcdb7d895",
                "md5": "1358d4383c8a69b48cf958ad74823c81",
                "sha256": "ba74868243caf5ac850fff7c45c8a372c1cac0193431e22eb41888d45ac79719"
            },
            "downloads": -1,
            "filename": "deepsearch_glm-0.21.1-cp311-cp311-macosx_14_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "1358d4383c8a69b48cf958ad74823c81",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": "<4.0,>=3.8",
            "size": 5910408,
            "upload_time": "2024-09-17T11:09:45",
            "upload_time_iso_8601": "2024-09-17T11:09:45.178589Z",
            "url": "https://files.pythonhosted.org/packages/c9/3f/5444c9e33b913bc529afca1d9bbc9cb337908fd0b72a1488819fcdb7d895/deepsearch_glm-0.21.1-cp311-cp311-macosx_14_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "25e17b1db97dc02c3578835f59ddf319b7d6120ea8d94f9e30c16074a11bfd60",
                "md5": "5f290cf04b18a167cd4a1827ffae9588",
                "sha256": "7815b06aa1c3953488496f191ce0265d0ee7bed5a6b96454a5f9d6f1add28f69"
            },
            "downloads": -1,
            "filename": "deepsearch_glm-0.21.1-cp311-cp311-macosx_14_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5f290cf04b18a167cd4a1827ffae9588",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": "<4.0,>=3.8",
            "size": 6319639,
            "upload_time": "2024-09-17T11:12:44",
            "upload_time_iso_8601": "2024-09-17T11:12:44.756234Z",
            "url": "https://files.pythonhosted.org/packages/25/e1/7b1db97dc02c3578835f59ddf319b7d6120ea8d94f9e30c16074a11bfd60/deepsearch_glm-0.21.1-cp311-cp311-macosx_14_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "957664c16d8a273b70fc639e7586c1297d0c81659bdb88651b57dcd916b8096f",
                "md5": "cc4e265a2e128443e6d501c82e2563e3",
                "sha256": "fd4d0d4ff853e566b05769c704a4ea3c050c0cfc5721e4e2035e550fb2a8fe91"
            },
            "downloads": -1,
            "filename": "deepsearch_glm-0.21.1-cp312-cp312-macosx_13_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "cc4e265a2e128443e6d501c82e2563e3",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": "<4.0,>=3.8",
            "size": 5873437,
            "upload_time": "2024-09-17T11:17:17",
            "upload_time_iso_8601": "2024-09-17T11:17:17.350343Z",
            "url": "https://files.pythonhosted.org/packages/95/76/64c16d8a273b70fc639e7586c1297d0c81659bdb88651b57dcd916b8096f/deepsearch_glm-0.21.1-cp312-cp312-macosx_13_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "23e3314a12ac77ea81745f67874fc03e51ca66c37c4cad81f120c72d6bcf3d67",
                "md5": "6fdb0494378b0e55cf7e88c1a1f40eaf",
                "sha256": "802a59a8a3bea1801bce848d58d19fcdbbcea27d9e2c23f163419d13cdec2345"
            },
            "downloads": -1,
            "filename": "deepsearch_glm-0.21.1-cp312-cp312-macosx_13_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6fdb0494378b0e55cf7e88c1a1f40eaf",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": "<4.0,>=3.8",
            "size": 6273077,
            "upload_time": "2024-09-17T11:18:46",
            "upload_time_iso_8601": "2024-09-17T11:18:46.273376Z",
            "url": "https://files.pythonhosted.org/packages/23/e3/314a12ac77ea81745f67874fc03e51ca66c37c4cad81f120c72d6bcf3d67/deepsearch_glm-0.21.1-cp312-cp312-macosx_13_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1b8ed4c4e3dc38a64a92d45c6e2ad8110687f968a13abfc9bdf91332b6992270",
                "md5": "c3547b1dc4d549708e8801c529c9ba8c",
                "sha256": "1ead7958bc044000a8d43cce53c9b82be0d341b0ca5cf7b39a0c09f9c4fd8ceb"
            },
            "downloads": -1,
            "filename": "deepsearch_glm-0.21.1-cp312-cp312-macosx_14_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "c3547b1dc4d549708e8801c529c9ba8c",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": "<4.0,>=3.8",
            "size": 5912640,
            "upload_time": "2024-09-17T11:15:23",
            "upload_time_iso_8601": "2024-09-17T11:15:23.983607Z",
            "url": "https://files.pythonhosted.org/packages/1b/8e/d4c4e3dc38a64a92d45c6e2ad8110687f968a13abfc9bdf91332b6992270/deepsearch_glm-0.21.1-cp312-cp312-macosx_14_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bcc531bdb21cb23f7f20e82bb94b33d2e7da6e6c05bf7b0deb2b227b79fc75d8",
                "md5": "4e26ef79ecf306c906466912b36e815b",
                "sha256": "312cf2b0b6560c8dfe5331a5a80a0ed5cb409d29ee6cc999a81696774d50f5e7"
            },
            "downloads": -1,
            "filename": "deepsearch_glm-0.21.1-cp312-cp312-macosx_14_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4e26ef79ecf306c906466912b36e815b",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": "<4.0,>=3.8",
            "size": 6320861,
            "upload_time": "2024-09-17T11:16:22",
            "upload_time_iso_8601": "2024-09-17T11:16:22.611701Z",
            "url": "https://files.pythonhosted.org/packages/bc/c5/31bdb21cb23f7f20e82bb94b33d2e7da6e6c05bf7b0deb2b227b79fc75d8/deepsearch_glm-0.21.1-cp312-cp312-macosx_14_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7c90d0eb97a97a6b8dba750cfdf24abeebcd76ef48302f451a313fa82865d82b",
                "md5": "9d528079a805c7eca952bd6fc32d76a9",
                "sha256": "4db0a700c08ff2d6285461dc5f4a68ccd36876a59b62131f847dc4be76a85989"
            },
            "downloads": -1,
            "filename": "deepsearch_glm-0.21.1-cp39-cp39-macosx_13_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "9d528079a805c7eca952bd6fc32d76a9",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": "<4.0,>=3.8",
            "size": 5871055,
            "upload_time": "2024-09-17T11:23:32",
            "upload_time_iso_8601": "2024-09-17T11:23:32.817005Z",
            "url": "https://files.pythonhosted.org/packages/7c/90/d0eb97a97a6b8dba750cfdf24abeebcd76ef48302f451a313fa82865d82b/deepsearch_glm-0.21.1-cp39-cp39-macosx_13_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b262feb09d51f9feb1993e5a59048513208f3359ee7c678522e6b5cf63b4d767",
                "md5": "f9af13e8367df7493d98fd5234ad2c1a",
                "sha256": "f1041c44d1a4d1a43a324781795b03edfdfd8076c49a610c4dd384c86f2a6236"
            },
            "downloads": -1,
            "filename": "deepsearch_glm-0.21.1-cp39-cp39-macosx_13_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f9af13e8367df7493d98fd5234ad2c1a",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": "<4.0,>=3.8",
            "size": 6271016,
            "upload_time": "2024-09-17T11:22:40",
            "upload_time_iso_8601": "2024-09-17T11:22:40.123415Z",
            "url": "https://files.pythonhosted.org/packages/b2/62/feb09d51f9feb1993e5a59048513208f3359ee7c678522e6b5cf63b4d767/deepsearch_glm-0.21.1-cp39-cp39-macosx_13_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9adf15ea2416aa25ffe01bd28110a9843f1f54028f501c1305e32b0c2c0f8bd5",
                "md5": "3e1992936b4aa748d30be21d325f2d29",
                "sha256": "efb0e9678fe07640bd9b6dc07651eaf1f8e5d5602e379b4cf78dbcddc62b50e9"
            },
            "downloads": -1,
            "filename": "deepsearch_glm-0.21.1-cp39-cp39-macosx_14_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "3e1992936b4aa748d30be21d325f2d29",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": "<4.0,>=3.8",
            "size": 5910923,
            "upload_time": "2024-09-17T11:20:52",
            "upload_time_iso_8601": "2024-09-17T11:20:52.898486Z",
            "url": "https://files.pythonhosted.org/packages/9a/df/15ea2416aa25ffe01bd28110a9843f1f54028f501c1305e32b0c2c0f8bd5/deepsearch_glm-0.21.1-cp39-cp39-macosx_14_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1c57c297659a1168729ba9ffc5ffa92668bde6b134ef92869e55673ef580b2f5",
                "md5": "f4a70506d981986cf6947d0c42958fc1",
                "sha256": "f8d46922d74339ec7fd7a6933220ebc36b2ff39738ad9bb74ea55a198dd31b2f"
            },
            "downloads": -1,
            "filename": "deepsearch_glm-0.21.1-cp39-cp39-macosx_14_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f4a70506d981986cf6947d0c42958fc1",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": "<4.0,>=3.8",
            "size": 6319688,
            "upload_time": "2024-09-17T11:20:13",
            "upload_time_iso_8601": "2024-09-17T11:20:13.595710Z",
            "url": "https://files.pythonhosted.org/packages/1c/57/c297659a1168729ba9ffc5ffa92668bde6b134ef92869e55673ef580b2f5/deepsearch_glm-0.21.1-cp39-cp39-macosx_14_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-09-17 11:12:54",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "deepsearch-glm"
}
        
Elapsed time: 0.40748s