stam


Namestam JSON
Version 0.7.0 PyPI version JSON
download
home_pagehttps://annotation.github.io/stam
SummarySTAM is a library for dealing with standoff annotations on text
upload_time2024-03-28 13:38:44
maintainerNone
docs_urlNone
authorMaarten van Gompel <proycon@anaproy.nl>
requires_pythonNone
licenseGPL-3.0-only
keywords text-processing annotation linguistics standoff nlp
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            <p align="center">
    <img src="https://github.com/annotation/stam/raw/master/logo.png" alt="stam logo" width="320" />
</p>

[![Docs](https://readthedocs.org/projects/stam-python/badge/?version=latest&style=flat)](https://stam-python.readthedocs.io)
[![PyPI](https://img.shields.io/pypi/v/stam.svg)](https://pypi.org/project/stam/)
[![PyPI](https://img.shields.io/pypi/dm/stam.svg)](https://pypi.org/project/stam/)
[![GitHub build](https://github.com/annotation/stam-rust/actions/workflows/stam.yml/badge.svg?branch=master)](https://github.com/annotation/stam-rust/actions/)
[![GitHub release](https://img.shields.io/github/release/annotation/stam-rust.svg)](https://GitHub.com/annotation/stam-rust/releases/)
[![Project Status: Active – The project has reached a stable, usable state and is being actively developed.](https://www.repostatus.org/badges/latest/active.svg)](https://www.repostatus.org/#active)
![Technology Readiness Level 7/9 - Release Candidate - Technology ready enough and in initial use by end-users in intended scholarly environments. Further validation in progress.](https://w3id.org/research-technology-readiness-levels/Level7ReleaseCandidate.svg)

# STAM Python binding

[STAM](https://github.com/annotation/stam) is a data model for stand-off text
annotation and described in detail [here](https://github.com/annotation/stam).
This is a python library (to be more specific; a python binding written in
Rust) to work with the model.

**What can you do with this library?**

* Keep, build and manipulate an efficient in-memory store of texts and annotations on texts
* Search in annotations, data and text:
    * Search annotations by data, textual content, relations between text fragments (overlap, embedding, adjacency, etc),
    * Search in text (incl. via regular expressions) and find annotations targeting found text selections.
    * Search in data (set,key,value) and find annotations that use the data.
    * Elementary text operations with regard for text offsets (splitting text on a delimiter, stripping text).
    * Convert between different kind of offsets (absolute, relative to other structures, UTF-8 bytes vs unicode codepoints, etc)
* Read and write resources and annotations from/to STAM JSON, STAM CSV, or an optimised binary (CBOR) representation
    * The underlying [STAM model](https://github.com/annotation/stam) aims to be clear and simple. It is flexible and 
      does not commit to any vocabulary or annotation paradigm other than stand-off annotation.

This STAM library is intended as a foundation upon which further applications
can be built that deal with stand-off annotations on text. We implement all 
the low-level logic in dealing this so you no longer have to and can focus on your 
actual application.

## Installation

``$ pip install stam``

Or if you feel adventurous and have the necessary build-time dependencies
installed (Rust), you can try the latest development release from Github:

``$ pip install git+https://github.com/annotation/stam-python``

## Documentation

* [STAM Specification](https://github.com/annotation/stam) - the STAM specification itself
* [API Reference](https://stam-python.readthedocs.io)
* [STAM Tutorial: Standoff Text Annotation for Pythonistas](tutorial.ipynb) - An extensive tutorial showing how to work with this Python library, in the form of a Jupyter Notebook. **Recommended!**

## Usage 

Import the library

```python
import stam
```

Loading a STAM JSON (or CSV) file containing an annotation store:

```python
store = stam.AnnotationStore(file="example.stam.json")
```


The annotation store is your workspace, it holds all resources, annotation sets
(i.e. keys and annotation data) and of course the actual annotations. It is a
memory-based store and you can put as much as you like into it (as long as it fits
in memory).

You can optionally pass configuration parameters upon loading a store, as follows:

```python
store = stam.AnnotationStore(file="example.stam.json", config={"debug": True})
```

Once loaded, you can retrieve anything by its public ID:

```python
annotation = store.annotation("my-annotation")
resource = store.resource("my-resource")
dataset = store.dataset("my-annotationset")
key = dataset.key("my-key")
data = dataset.annotationdata("my-data")
```

You can also iterate through all annotations in the store, and output a simple tab separated format:

```python
for annotation in store.annotations():
    # get the text to which this annotation refers (if any)
    try:
        text = str(annotation)
    except stam.StamError:
        text = "n/a"
    for data in annotation:
        print("\t".join(( annotation.id(), data.key().id(), str(data.value()), text)))
```


Adding a resource:

```python
resource = store.add_resource(filename="my-text.txt")
```

Create a store and annotations from scratch:

```python
from stam import AnnotationStore, Selector, AnnotationDataBuilder

store = AnnotationStore(id="test")
resource = store.add_resource(id="testres", text="Hello world")
store.annotate(id="A1", 
                target=Selector.textselector(resource, Offset.simple(6,11)),
                data={ "id": "D1", "key": "pos", "value": "noun", "set": "testdataset"})
```

In the above example, the `AnnotationDataSet` , `DataKey` and `AnnotationData`
are created on-the-fly. You can also create them explicitly within the set first, as shown in the
next snippet, resulting in the exact same store:


```python
store = AnnotationStore(id="test")
resource = store.add_resource(id="testres", text="Hello world")
dataset = store.add_dataset(id="testdataset")
dataset.add_key("pos")
data = dataset.add_data("pos","noun","D1")
store.annotate(id="A1", 
    target=Selector.textselector(resource, Offset.simple(6,11)),
    data=data)
```

Providing the full data dictionary as in the earlier example would have
also worked fine, with the same end result, but would be less performant than passing an `AnnotationData` instance directly.
The implementation will always ensure any already existing `AnnotationData` will be reused if
possible, as not duplicating data is one of the core characteristics of the
STAM model.

You can serialize the entire annotation store (including all sets and annotations) to a STAM JSON file:

```python
store.set_filename("example.stam.json")
store.save()
```

For more documentation, please read: [STAM Tutorial: Standoff Text Annotation for Pythonistas](tutorial.ipynb).

## Differences between the rust library and python library and performance considerations

Although this Python binding builds on the Rust library, the API it exposes
differs in certain aspects to make it more pythonic and easier to work with.
This results in a higher-level API that hides some of the lower-level details
that are present in the Rust library. This approach does come at the cost of causing
some additional runtime overhead. 

The Rust methods will often return iterators, references or handles whenever they
can, moreover it will do so safely. The Python API is often forced to make a
local copy. For iterators we often decide to let the entire underlying Rust
iterator run its course and then return the result as a whole as a tuple, rather than
return a Python generator. Here you gain some speed at the cost of some memory.

Probably needless to say, but using Rust directly will always be more
performant than using this Python binding. However, using this Python binding
should still be way more performant than if the whole thing were implemented in
native Python. The trick is in letting the binding work for you as much as
possible, use higher-level methods whenever they are available rather than
implementing your logic in Python.

## Acknowledgements

This work is conducted at the [KNAW Humanities Cluster](https://huc.knaw.nl/)'s [Digital Infrastructure department](https://di.huc.knaw.nl/), and funded by the [CLARIAH](https://clariah.nl) project (CLARIAH-PLUS, NWO grant 184.034.023) as part of the FAIR Annotations track.


            

Raw data

            {
    "_id": null,
    "home_page": "https://annotation.github.io/stam",
    "name": "stam",
    "maintainer": null,
    "docs_url": null,
    "requires_python": null,
    "maintainer_email": null,
    "keywords": "text-processing, annotation, linguistics, standoff, nlp",
    "author": "Maarten van Gompel <proycon@anaproy.nl>",
    "author_email": "Maarten van Gompel <proycon@anaproy.nl>",
    "download_url": "https://files.pythonhosted.org/packages/55/5f/f0a48f15de3260b2ac4be3caff458501c7b8ef694c75fa49fba210db467e/stam-0.7.0.tar.gz",
    "platform": null,
    "description": "<p align=\"center\">\n    <img src=\"https://github.com/annotation/stam/raw/master/logo.png\" alt=\"stam logo\" width=\"320\" />\n</p>\n\n[![Docs](https://readthedocs.org/projects/stam-python/badge/?version=latest&style=flat)](https://stam-python.readthedocs.io)\n[![PyPI](https://img.shields.io/pypi/v/stam.svg)](https://pypi.org/project/stam/)\n[![PyPI](https://img.shields.io/pypi/dm/stam.svg)](https://pypi.org/project/stam/)\n[![GitHub build](https://github.com/annotation/stam-rust/actions/workflows/stam.yml/badge.svg?branch=master)](https://github.com/annotation/stam-rust/actions/)\n[![GitHub release](https://img.shields.io/github/release/annotation/stam-rust.svg)](https://GitHub.com/annotation/stam-rust/releases/)\n[![Project Status: Active \u2013 The project has reached a stable, usable state and is being actively developed.](https://www.repostatus.org/badges/latest/active.svg)](https://www.repostatus.org/#active)\n![Technology Readiness Level 7/9 - Release Candidate - Technology ready enough and in initial use by end-users in intended scholarly environments. Further validation in progress.](https://w3id.org/research-technology-readiness-levels/Level7ReleaseCandidate.svg)\n\n# STAM Python binding\n\n[STAM](https://github.com/annotation/stam) is a data model for stand-off text\nannotation and described in detail [here](https://github.com/annotation/stam).\nThis is a python library (to be more specific; a python binding written in\nRust) to work with the model.\n\n**What can you do with this library?**\n\n* Keep, build and manipulate an efficient in-memory store of texts and annotations on texts\n* Search in annotations, data and text:\n    * Search annotations by data, textual content, relations between text fragments (overlap, embedding, adjacency, etc),\n    * Search in text (incl. via regular expressions) and find annotations targeting found text selections.\n    * Search in data (set,key,value) and find annotations that use the data.\n    * Elementary text operations with regard for text offsets (splitting text on a delimiter, stripping text).\n    * Convert between different kind of offsets (absolute, relative to other structures, UTF-8 bytes vs unicode codepoints, etc)\n* Read and write resources and annotations from/to STAM JSON, STAM CSV, or an optimised binary (CBOR) representation\n    * The underlying [STAM model](https://github.com/annotation/stam) aims to be clear and simple. It is flexible and \n      does not commit to any vocabulary or annotation paradigm other than stand-off annotation.\n\nThis STAM library is intended as a foundation upon which further applications\ncan be built that deal with stand-off annotations on text. We implement all \nthe low-level logic in dealing this so you no longer have to and can focus on your \nactual application.\n\n## Installation\n\n``$ pip install stam``\n\nOr if you feel adventurous and have the necessary build-time dependencies\ninstalled (Rust), you can try the latest development release from Github:\n\n``$ pip install git+https://github.com/annotation/stam-python``\n\n## Documentation\n\n* [STAM Specification](https://github.com/annotation/stam) - the STAM specification itself\n* [API Reference](https://stam-python.readthedocs.io)\n* [STAM Tutorial: Standoff Text Annotation for Pythonistas](tutorial.ipynb) - An extensive tutorial showing how to work with this Python library, in the form of a Jupyter Notebook. **Recommended!**\n\n## Usage \n\nImport the library\n\n```python\nimport stam\n```\n\nLoading a STAM JSON (or CSV) file containing an annotation store:\n\n```python\nstore = stam.AnnotationStore(file=\"example.stam.json\")\n```\n\n\nThe annotation store is your workspace, it holds all resources, annotation sets\n(i.e. keys and annotation data) and of course the actual annotations. It is a\nmemory-based store and you can put as much as you like into it (as long as it fits\nin memory).\n\nYou can optionally pass configuration parameters upon loading a store, as follows:\n\n```python\nstore = stam.AnnotationStore(file=\"example.stam.json\", config={\"debug\": True})\n```\n\nOnce loaded, you can retrieve anything by its public ID:\n\n```python\nannotation = store.annotation(\"my-annotation\")\nresource = store.resource(\"my-resource\")\ndataset = store.dataset(\"my-annotationset\")\nkey = dataset.key(\"my-key\")\ndata = dataset.annotationdata(\"my-data\")\n```\n\nYou can also iterate through all annotations in the store, and output a simple tab separated format:\n\n```python\nfor annotation in store.annotations():\n    # get the text to which this annotation refers (if any)\n    try:\n        text = str(annotation)\n    except stam.StamError:\n        text = \"n/a\"\n    for data in annotation:\n        print(\"\\t\".join(( annotation.id(), data.key().id(), str(data.value()), text)))\n```\n\n\nAdding a resource:\n\n```python\nresource = store.add_resource(filename=\"my-text.txt\")\n```\n\nCreate a store and annotations from scratch:\n\n```python\nfrom stam import AnnotationStore, Selector, AnnotationDataBuilder\n\nstore = AnnotationStore(id=\"test\")\nresource = store.add_resource(id=\"testres\", text=\"Hello world\")\nstore.annotate(id=\"A1\", \n                target=Selector.textselector(resource, Offset.simple(6,11)),\n                data={ \"id\": \"D1\", \"key\": \"pos\", \"value\": \"noun\", \"set\": \"testdataset\"})\n```\n\nIn the above example, the `AnnotationDataSet` , `DataKey` and `AnnotationData`\nare created on-the-fly. You can also create them explicitly within the set first, as shown in the\nnext snippet, resulting in the exact same store:\n\n\n```python\nstore = AnnotationStore(id=\"test\")\nresource = store.add_resource(id=\"testres\", text=\"Hello world\")\ndataset = store.add_dataset(id=\"testdataset\")\ndataset.add_key(\"pos\")\ndata = dataset.add_data(\"pos\",\"noun\",\"D1\")\nstore.annotate(id=\"A1\", \n    target=Selector.textselector(resource, Offset.simple(6,11)),\n    data=data)\n```\n\nProviding the full data dictionary as in the earlier example would have\nalso worked fine, with the same end result, but would be less performant than passing an `AnnotationData` instance directly.\nThe implementation will always ensure any already existing `AnnotationData` will be reused if\npossible, as not duplicating data is one of the core characteristics of the\nSTAM model.\n\nYou can serialize the entire annotation store (including all sets and annotations) to a STAM JSON file:\n\n```python\nstore.set_filename(\"example.stam.json\")\nstore.save()\n```\n\nFor more documentation, please read: [STAM Tutorial: Standoff Text Annotation for Pythonistas](tutorial.ipynb).\n\n## Differences between the rust library and python library and performance considerations\n\nAlthough this Python binding builds on the Rust library, the API it exposes\ndiffers in certain aspects to make it more pythonic and easier to work with.\nThis results in a higher-level API that hides some of the lower-level details\nthat are present in the Rust library. This approach does come at the cost of causing\nsome additional runtime overhead. \n\nThe Rust methods will often return iterators, references or handles whenever they\ncan, moreover it will do so safely. The Python API is often forced to make a\nlocal copy. For iterators we often decide to let the entire underlying Rust\niterator run its course and then return the result as a whole as a tuple, rather than\nreturn a Python generator. Here you gain some speed at the cost of some memory.\n\nProbably needless to say, but using Rust directly will always be more\nperformant than using this Python binding. However, using this Python binding\nshould still be way more performant than if the whole thing were implemented in\nnative Python. The trick is in letting the binding work for you as much as\npossible, use higher-level methods whenever they are available rather than\nimplementing your logic in Python.\n\n## Acknowledgements\n\nThis work is conducted at the [KNAW Humanities Cluster](https://huc.knaw.nl/)'s [Digital Infrastructure department](https://di.huc.knaw.nl/), and funded by the [CLARIAH](https://clariah.nl) project (CLARIAH-PLUS, NWO grant 184.034.023) as part of the FAIR Annotations track.\n\n",
    "bugtrack_url": null,
    "license": "GPL-3.0-only",
    "summary": "STAM is a library for dealing with standoff annotations on text",
    "version": "0.7.0",
    "project_urls": {
        "Homepage": "https://annotation.github.io/stam",
        "Source Code": "https://github.com/annotation/stam-python"
    },
    "split_keywords": [
        "text-processing",
        " annotation",
        " linguistics",
        " standoff",
        " nlp"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5768c277e35528d30fd47a3cfa7b7c7b458178d52e49329da97a4800cb18505f",
                "md5": "17071d8d7acebe625ca994ed3858aa1f",
                "sha256": "d8cba885273332b6a83a8ecb7689480f8ff0dcc5206d395f499651dae5bf6230"
            },
            "downloads": -1,
            "filename": "stam-0.7.0-cp310-cp310-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "17071d8d7acebe625ca994ed3858aa1f",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 2200922,
            "upload_time": "2024-03-28T13:38:30",
            "upload_time_iso_8601": "2024-03-28T13:38:30.235936Z",
            "url": "https://files.pythonhosted.org/packages/57/68/c277e35528d30fd47a3cfa7b7c7b458178d52e49329da97a4800cb18505f/stam-0.7.0-cp310-cp310-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1ce408b6b3f413a12c8acae158d3149ce808ab9f18bd0a71134163de4bd5c674",
                "md5": "78c27cf0c55d29413c14ecd8e450708c",
                "sha256": "e650e772712d994e47c4e44ec94d84378d7fbd7a63d2fe57d7f1bb73b8f7fe10"
            },
            "downloads": -1,
            "filename": "stam-0.7.0-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "78c27cf0c55d29413c14ecd8e450708c",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 2074876,
            "upload_time": "2024-03-28T13:38:32",
            "upload_time_iso_8601": "2024-03-28T13:38:32.343944Z",
            "url": "https://files.pythonhosted.org/packages/1c/e4/08b6b3f413a12c8acae158d3149ce808ab9f18bd0a71134163de4bd5c674/stam-0.7.0-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1f79db3930f49e7c2beb44f3ffe049946bc721097bde629704511bf08baad0ce",
                "md5": "ead8ee52a8f45ef03cb84cc2bd25f200",
                "sha256": "91d372fca11e662449fc5acfbdc268c3339d55845b2357cd60ca7296e2058792"
            },
            "downloads": -1,
            "filename": "stam-0.7.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "ead8ee52a8f45ef03cb84cc2bd25f200",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 3127105,
            "upload_time": "2024-03-28T13:36:59",
            "upload_time_iso_8601": "2024-03-28T13:36:59.420134Z",
            "url": "https://files.pythonhosted.org/packages/1f/79/db3930f49e7c2beb44f3ffe049946bc721097bde629704511bf08baad0ce/stam-0.7.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4f5d242b7a9c1e6672d3b7163cbddae26421809b63fec3470bdd2eee7ce1c1b8",
                "md5": "138b5fd353aed926be67d4902ce7cc4f",
                "sha256": "58382874911aca06b2600785dd45feaf0cc21327a675ac5f07ae32c8d98d04af"
            },
            "downloads": -1,
            "filename": "stam-0.7.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "138b5fd353aed926be67d4902ce7cc4f",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 3201866,
            "upload_time": "2024-03-28T13:37:09",
            "upload_time_iso_8601": "2024-03-28T13:37:09.640636Z",
            "url": "https://files.pythonhosted.org/packages/4f/5d/242b7a9c1e6672d3b7163cbddae26421809b63fec3470bdd2eee7ce1c1b8/stam-0.7.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f00f999cf0e29eae4982829a913cf160023a1f6c3bfcff93924fa059002ff8cb",
                "md5": "120fd92220746acfb421afbc7f45e7fd",
                "sha256": "97df892d20272aadc4f7d819d9df9b5d9612f75b1fa6fa950f7b4ce2bbc76fc4"
            },
            "downloads": -1,
            "filename": "stam-0.7.0-cp310-cp310-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "120fd92220746acfb421afbc7f45e7fd",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 3288448,
            "upload_time": "2024-03-28T13:37:31",
            "upload_time_iso_8601": "2024-03-28T13:37:31.405658Z",
            "url": "https://files.pythonhosted.org/packages/f0/0f/999cf0e29eae4982829a913cf160023a1f6c3bfcff93924fa059002ff8cb/stam-0.7.0-cp310-cp310-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a524a7d5ad8ed0536a2820402daf940b45bcc6b22d92dbb8585437d7ef7a9103",
                "md5": "ba7c8cd8358c5f21d612df2525cba617",
                "sha256": "0f306733565a3148ee974d61def21ef874b784527b36f2e4070708e74c81c1e0"
            },
            "downloads": -1,
            "filename": "stam-0.7.0-cp310-cp310-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ba7c8cd8358c5f21d612df2525cba617",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 3368939,
            "upload_time": "2024-03-28T13:37:33",
            "upload_time_iso_8601": "2024-03-28T13:37:33.719464Z",
            "url": "https://files.pythonhosted.org/packages/a5/24/a7d5ad8ed0536a2820402daf940b45bcc6b22d92dbb8585437d7ef7a9103/stam-0.7.0-cp310-cp310-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b7dc26d009004c35b58f1641abd787d44999bdd8940f73baa29dd7adfdc7d0ca",
                "md5": "1f3e50ae3327242addfeddfd7fae27fc",
                "sha256": "f93a4bf641d9ffa27f8242a1941bae97b29410f68411fa018143ff3c02df1621"
            },
            "downloads": -1,
            "filename": "stam-0.7.0-cp310-none-win32.whl",
            "has_sig": false,
            "md5_digest": "1f3e50ae3327242addfeddfd7fae27fc",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 1732510,
            "upload_time": "2024-03-28T13:37:58",
            "upload_time_iso_8601": "2024-03-28T13:37:58.216378Z",
            "url": "https://files.pythonhosted.org/packages/b7/dc/26d009004c35b58f1641abd787d44999bdd8940f73baa29dd7adfdc7d0ca/stam-0.7.0-cp310-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3880555b99794038e95278796396a6d7a1983525a564117c2aceb934162fc4ee",
                "md5": "acf17a333a6758b1205fe551a079ee32",
                "sha256": "fb32d4775b17f3c9f95b6c2abe87eed2cd42bc3ca2d7b6b77544049ee097b6b2"
            },
            "downloads": -1,
            "filename": "stam-0.7.0-cp310-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "acf17a333a6758b1205fe551a079ee32",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 1909655,
            "upload_time": "2024-03-28T13:37:59",
            "upload_time_iso_8601": "2024-03-28T13:37:59.988171Z",
            "url": "https://files.pythonhosted.org/packages/38/80/555b99794038e95278796396a6d7a1983525a564117c2aceb934162fc4ee/stam-0.7.0-cp310-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e979ee58b22d01f79fe4aee1080bdd666881fa9a1d7c7097a8e2eca34d655ee5",
                "md5": "3c19f6231c2a628c097e5a4043fb2b4c",
                "sha256": "77c992bf84fd829529a063f70ad1e32454795e864eb14abdbd0a55e01bfc9255"
            },
            "downloads": -1,
            "filename": "stam-0.7.0-cp311-cp311-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3c19f6231c2a628c097e5a4043fb2b4c",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 2201206,
            "upload_time": "2024-03-28T13:38:34",
            "upload_time_iso_8601": "2024-03-28T13:38:34.997582Z",
            "url": "https://files.pythonhosted.org/packages/e9/79/ee58b22d01f79fe4aee1080bdd666881fa9a1d7c7097a8e2eca34d655ee5/stam-0.7.0-cp311-cp311-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "dd7ac0aaa6b6830de17f342d85d4df9d6b7792195d83a56c919599f49f062ffe",
                "md5": "784085d3c29a177569b9cb8c619e4e08",
                "sha256": "1c8e5f402f724c38c1948bf8d648d9a93bf485e62cd1bfb9fb863a0c55a6f95b"
            },
            "downloads": -1,
            "filename": "stam-0.7.0-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "784085d3c29a177569b9cb8c619e4e08",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 2076949,
            "upload_time": "2024-03-28T13:38:36",
            "upload_time_iso_8601": "2024-03-28T13:38:36.721058Z",
            "url": "https://files.pythonhosted.org/packages/dd/7a/c0aaa6b6830de17f342d85d4df9d6b7792195d83a56c919599f49f062ffe/stam-0.7.0-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a00fe4b59fdc018aee5bee62eb53236461ffd669aa3c0c7001183ade24001d8b",
                "md5": "ef504091224988a81bf9283274732f06",
                "sha256": "36c0ed3e54791a8f71ee737aee99fbfe77c89b671c468489288c6fe6a99ee626"
            },
            "downloads": -1,
            "filename": "stam-0.7.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "ef504091224988a81bf9283274732f06",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 3126896,
            "upload_time": "2024-03-28T13:37:12",
            "upload_time_iso_8601": "2024-03-28T13:37:12.351022Z",
            "url": "https://files.pythonhosted.org/packages/a0/0f/e4b59fdc018aee5bee62eb53236461ffd669aa3c0c7001183ade24001d8b/stam-0.7.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0145818651951355cd681222d1b6983dc285bac77f4394c6bdc5b7e86afff381",
                "md5": "e3794b862297150794d0640e36419f90",
                "sha256": "9049992bcceb030532c019e07d94dba5ce2391e720820ff475c7719714ad0f18"
            },
            "downloads": -1,
            "filename": "stam-0.7.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e3794b862297150794d0640e36419f90",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 3201333,
            "upload_time": "2024-03-28T13:37:14",
            "upload_time_iso_8601": "2024-03-28T13:37:14.268103Z",
            "url": "https://files.pythonhosted.org/packages/01/45/818651951355cd681222d1b6983dc285bac77f4394c6bdc5b7e86afff381/stam-0.7.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4eda103ba7a677be823c26fd929e9ac8943b54861490ac7a29cdf1dd1677226d",
                "md5": "6e5acf232d73146f2f5bf9816a1b44d4",
                "sha256": "94f285b7a8c06d2617f411c966fa47227214eb7a260976985ded5ed50ff93cca"
            },
            "downloads": -1,
            "filename": "stam-0.7.0-cp311-cp311-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "6e5acf232d73146f2f5bf9816a1b44d4",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 3288433,
            "upload_time": "2024-03-28T13:37:36",
            "upload_time_iso_8601": "2024-03-28T13:37:36.775556Z",
            "url": "https://files.pythonhosted.org/packages/4e/da/103ba7a677be823c26fd929e9ac8943b54861490ac7a29cdf1dd1677226d/stam-0.7.0-cp311-cp311-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9ff686f2bcc77b0b8b21cbf7d54a3dd24a16a627258a0eb9bac6d25a6b83428f",
                "md5": "94294cb62ba9571e2bdaf7aa10b25551",
                "sha256": "a3a46fa856bc8534f462c4e45a81d57d548f52dd552bed8d9371550174c89b9a"
            },
            "downloads": -1,
            "filename": "stam-0.7.0-cp311-cp311-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "94294cb62ba9571e2bdaf7aa10b25551",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 3368049,
            "upload_time": "2024-03-28T13:37:39",
            "upload_time_iso_8601": "2024-03-28T13:37:39.798268Z",
            "url": "https://files.pythonhosted.org/packages/9f/f6/86f2bcc77b0b8b21cbf7d54a3dd24a16a627258a0eb9bac6d25a6b83428f/stam-0.7.0-cp311-cp311-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5cae6424fb77061ea7c2ecc70304fa7339d29a8ef0a13397f99b7d79fad94e2d",
                "md5": "eece986268fd430f1b3121dd71d4a4a7",
                "sha256": "4d34edc630bcbdc948d50ecdebc0f0f94a1328164115d932b313bc332f57a9c8"
            },
            "downloads": -1,
            "filename": "stam-0.7.0-cp311-none-win32.whl",
            "has_sig": false,
            "md5_digest": "eece986268fd430f1b3121dd71d4a4a7",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 1732393,
            "upload_time": "2024-03-28T13:38:02",
            "upload_time_iso_8601": "2024-03-28T13:38:02.528460Z",
            "url": "https://files.pythonhosted.org/packages/5c/ae/6424fb77061ea7c2ecc70304fa7339d29a8ef0a13397f99b7d79fad94e2d/stam-0.7.0-cp311-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0f3eb9eeede70c04a2613c6714665945f10fdf06f18f57e3c857825155cb20b1",
                "md5": "03737c39a8b9452cdf234cca53618cea",
                "sha256": "59320c6c0bf2777084cada7c7fa447147383717e1cb86f59ba7bd8e0501edf3d"
            },
            "downloads": -1,
            "filename": "stam-0.7.0-cp311-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "03737c39a8b9452cdf234cca53618cea",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 1909642,
            "upload_time": "2024-03-28T13:38:05",
            "upload_time_iso_8601": "2024-03-28T13:38:05.349758Z",
            "url": "https://files.pythonhosted.org/packages/0f/3e/b9eeede70c04a2613c6714665945f10fdf06f18f57e3c857825155cb20b1/stam-0.7.0-cp311-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b878e2750f7034645ca039a6985b1c1ee4f4dd8a1fb235bf10ca594451ee1ec0",
                "md5": "96b1ca490e1abec9a47304b435d1bba5",
                "sha256": "411c8c049c5986d43483c3ddd7501eadb3c400a624f588666769bdfb68e69ee7"
            },
            "downloads": -1,
            "filename": "stam-0.7.0-cp312-cp312-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "96b1ca490e1abec9a47304b435d1bba5",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 2204018,
            "upload_time": "2024-03-28T13:38:39",
            "upload_time_iso_8601": "2024-03-28T13:38:39.756814Z",
            "url": "https://files.pythonhosted.org/packages/b8/78/e2750f7034645ca039a6985b1c1ee4f4dd8a1fb235bf10ca594451ee1ec0/stam-0.7.0-cp312-cp312-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "410bf7cefeefe79b84411e3a60d50ef7712358242e2a52b51b989686419bb51a",
                "md5": "b8199543b3ba3368b22ab4b49ca6d5f6",
                "sha256": "be1cd5b093ac04d72bf46a2e27be95161a303c751926a59f79ffb7fe42cdb00d"
            },
            "downloads": -1,
            "filename": "stam-0.7.0-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "b8199543b3ba3368b22ab4b49ca6d5f6",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 2081478,
            "upload_time": "2024-03-28T13:38:43",
            "upload_time_iso_8601": "2024-03-28T13:38:43.122899Z",
            "url": "https://files.pythonhosted.org/packages/41/0b/f7cefeefe79b84411e3a60d50ef7712358242e2a52b51b989686419bb51a/stam-0.7.0-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b1e876b06a5bef06d2e70916e405a8e98d98b373d9c8c3df486fb0b97526c9e2",
                "md5": "853ef4e9a48d60ab51d14a09b2765b57",
                "sha256": "6a7bdf5427f24ec4a21667d70ace3ce177996a8d2200c69bd5c929ae88d848fa"
            },
            "downloads": -1,
            "filename": "stam-0.7.0-cp312-none-win32.whl",
            "has_sig": false,
            "md5_digest": "853ef4e9a48d60ab51d14a09b2765b57",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 1741409,
            "upload_time": "2024-03-28T13:38:08",
            "upload_time_iso_8601": "2024-03-28T13:38:08.352175Z",
            "url": "https://files.pythonhosted.org/packages/b1/e8/76b06a5bef06d2e70916e405a8e98d98b373d9c8c3df486fb0b97526c9e2/stam-0.7.0-cp312-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c671b292bdb59358cb861b246b2122b3fd4107243e23ae1341f14cb1a8b85062",
                "md5": "95db968d7c4f2d791a8206d61cfe2b46",
                "sha256": "8999fab09fd03eb8389f8ecb215ba4179e29b755cad74ef5d340bbee2175488b"
            },
            "downloads": -1,
            "filename": "stam-0.7.0-cp312-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "95db968d7c4f2d791a8206d61cfe2b46",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 1928399,
            "upload_time": "2024-03-28T13:38:11",
            "upload_time_iso_8601": "2024-03-28T13:38:11.075515Z",
            "url": "https://files.pythonhosted.org/packages/c6/71/b292bdb59358cb861b246b2122b3fd4107243e23ae1341f14cb1a8b85062/stam-0.7.0-cp312-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4d2064fd04799e7c85f747551f95d3437a3d22a17e117c1f8672cc2ec1a598b6",
                "md5": "32ca280806243f2de0ad8e21fd9c8b56",
                "sha256": "810ab966a5d92e40fb45a55559cb748fdde16b881d6c4e3f519ae0e91a0b9dcf"
            },
            "downloads": -1,
            "filename": "stam-0.7.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "32ca280806243f2de0ad8e21fd9c8b56",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 3128710,
            "upload_time": "2024-03-28T13:37:16",
            "upload_time_iso_8601": "2024-03-28T13:37:16.066354Z",
            "url": "https://files.pythonhosted.org/packages/4d/20/64fd04799e7c85f747551f95d3437a3d22a17e117c1f8672cc2ec1a598b6/stam-0.7.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "565661725bd141b72cd25e42cc41e5b45a8859237e5b3973219d52c3c6101e1f",
                "md5": "1d5acb131b70517b160d67e965542d40",
                "sha256": "9cf81550a960d94ca1acc6a6bba3c6064b8a17afdc73a08c88a803cf556d846a"
            },
            "downloads": -1,
            "filename": "stam-0.7.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1d5acb131b70517b160d67e965542d40",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 3202668,
            "upload_time": "2024-03-28T13:37:18",
            "upload_time_iso_8601": "2024-03-28T13:37:18.073660Z",
            "url": "https://files.pythonhosted.org/packages/56/56/61725bd141b72cd25e42cc41e5b45a8859237e5b3973219d52c3c6101e1f/stam-0.7.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "af4826e2e5949ea51f7e33345cf8f7812e195e59fc9cb44ce2c150d36cc01526",
                "md5": "49f2fa4c04e6dad61215d5c7940acbca",
                "sha256": "699b4ccd9a1c4fedb9517c964d96d4044ddf94595d7b84ee2f9eab4c2a04598a"
            },
            "downloads": -1,
            "filename": "stam-0.7.0-cp37-cp37m-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "49f2fa4c04e6dad61215d5c7940acbca",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 3289928,
            "upload_time": "2024-03-28T13:37:41",
            "upload_time_iso_8601": "2024-03-28T13:37:41.674306Z",
            "url": "https://files.pythonhosted.org/packages/af/48/26e2e5949ea51f7e33345cf8f7812e195e59fc9cb44ce2c150d36cc01526/stam-0.7.0-cp37-cp37m-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1069bb2aefefa653f90532764663104dab35b5a0eb7700653c5995a42aab26ac",
                "md5": "1de0eb566fb1a51cfe6de6bc4b56a1b2",
                "sha256": "3df30a87c99b4bf48db885ad57ef7952dc98fa67ca8cc14ffc22f45d22028047"
            },
            "downloads": -1,
            "filename": "stam-0.7.0-cp37-cp37m-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1de0eb566fb1a51cfe6de6bc4b56a1b2",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 3369766,
            "upload_time": "2024-03-28T13:37:44",
            "upload_time_iso_8601": "2024-03-28T13:37:44.315818Z",
            "url": "https://files.pythonhosted.org/packages/10/69/bb2aefefa653f90532764663104dab35b5a0eb7700653c5995a42aab26ac/stam-0.7.0-cp37-cp37m-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b0b17366b20a656c5cafbf271430d5da3fa96c39dc879002e8efda7226038052",
                "md5": "8bc45390879c009dc5e822a4f1464203",
                "sha256": "c874d57e5780d6a3d1590fd99e274ba2e2656fd70592def4a2fb741ec3fa3c78"
            },
            "downloads": -1,
            "filename": "stam-0.7.0-cp37-none-win32.whl",
            "has_sig": false,
            "md5_digest": "8bc45390879c009dc5e822a4f1464203",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 1732176,
            "upload_time": "2024-03-28T13:38:15",
            "upload_time_iso_8601": "2024-03-28T13:38:15.412183Z",
            "url": "https://files.pythonhosted.org/packages/b0/b1/7366b20a656c5cafbf271430d5da3fa96c39dc879002e8efda7226038052/stam-0.7.0-cp37-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2594b58378b5a6ff986756ad248efd516ac5ac8a8c1747125b4e3951737cc853",
                "md5": "147a5706f554155ad95e2fb8a9c4ba84",
                "sha256": "7ee12679a55f2e2b310a39662464985c16b74de812296f951affce2a7d8c3b6b"
            },
            "downloads": -1,
            "filename": "stam-0.7.0-cp37-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "147a5706f554155ad95e2fb8a9c4ba84",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 1908459,
            "upload_time": "2024-03-28T13:38:18",
            "upload_time_iso_8601": "2024-03-28T13:38:18.005902Z",
            "url": "https://files.pythonhosted.org/packages/25/94/b58378b5a6ff986756ad248efd516ac5ac8a8c1747125b4e3951737cc853/stam-0.7.0-cp37-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8da925160383eee3666e5c3604f74e13c621408f0ff15f1950ae121714b47eec",
                "md5": "44d3eee37135936034f3ff132d094fb2",
                "sha256": "510b000a3b24d6078395b4ffa3f5451b5bcac1abb75868e5990883e6e1341ad3"
            },
            "downloads": -1,
            "filename": "stam-0.7.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "44d3eee37135936034f3ff132d094fb2",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 3128329,
            "upload_time": "2024-03-28T13:37:20",
            "upload_time_iso_8601": "2024-03-28T13:37:20.195889Z",
            "url": "https://files.pythonhosted.org/packages/8d/a9/25160383eee3666e5c3604f74e13c621408f0ff15f1950ae121714b47eec/stam-0.7.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "06c508558fb709fb995fee08210664a6a88decccdacdd636217e900ecdfdc71a",
                "md5": "71e800c57c52f2681e890f44cf1d1015",
                "sha256": "e028f506610d507fd0afbc71ef8f12213e51529b7e4f2ace40e446a18350b21e"
            },
            "downloads": -1,
            "filename": "stam-0.7.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "71e800c57c52f2681e890f44cf1d1015",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 3202130,
            "upload_time": "2024-03-28T13:37:23",
            "upload_time_iso_8601": "2024-03-28T13:37:23.727950Z",
            "url": "https://files.pythonhosted.org/packages/06/c5/08558fb709fb995fee08210664a6a88decccdacdd636217e900ecdfdc71a/stam-0.7.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "52ddbfa2383833dea782276db2da2b707830e70f19323fc53780fd39fe54c5cb",
                "md5": "f3c28a659333a5f095f7797d1024cb39",
                "sha256": "096a8369502dcdd462f35fa167bd08b9e87abc7c1e8aa200603f362f8af0e328"
            },
            "downloads": -1,
            "filename": "stam-0.7.0-cp38-cp38-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "f3c28a659333a5f095f7797d1024cb39",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 3289298,
            "upload_time": "2024-03-28T13:37:46",
            "upload_time_iso_8601": "2024-03-28T13:37:46.610905Z",
            "url": "https://files.pythonhosted.org/packages/52/dd/bfa2383833dea782276db2da2b707830e70f19323fc53780fd39fe54c5cb/stam-0.7.0-cp38-cp38-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d445aebd0ba3bd7c6e9e4ed54a7c6a303bac7cb69c3a7a82865e0f0a15676d0d",
                "md5": "895722c922648e2f05e5d279acbe53e3",
                "sha256": "259402e731d11b26a41b1b5c7565b76ac23089099b73c9f617ec48b99b6fdfe8"
            },
            "downloads": -1,
            "filename": "stam-0.7.0-cp38-cp38-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "895722c922648e2f05e5d279acbe53e3",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 3369669,
            "upload_time": "2024-03-28T13:37:49",
            "upload_time_iso_8601": "2024-03-28T13:37:49.879718Z",
            "url": "https://files.pythonhosted.org/packages/d4/45/aebd0ba3bd7c6e9e4ed54a7c6a303bac7cb69c3a7a82865e0f0a15676d0d/stam-0.7.0-cp38-cp38-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f92d80868acb4af080de1da61e75807f54ee4b13fce1f76b2d5d22a1f2ed95bd",
                "md5": "e6b03664843965219bb86b9aaa9888a4",
                "sha256": "6637e6efa45f8447f308e13260e13193d4562e0aff6132392d33a14c45063e3f"
            },
            "downloads": -1,
            "filename": "stam-0.7.0-cp38-none-win32.whl",
            "has_sig": false,
            "md5_digest": "e6b03664843965219bb86b9aaa9888a4",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 1731420,
            "upload_time": "2024-03-28T13:38:19",
            "upload_time_iso_8601": "2024-03-28T13:38:19.799464Z",
            "url": "https://files.pythonhosted.org/packages/f9/2d/80868acb4af080de1da61e75807f54ee4b13fce1f76b2d5d22a1f2ed95bd/stam-0.7.0-cp38-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "92bb14a6c179aef5140b29e644a9119c4877ea7bd35fe8625b8bdd109edf6ad2",
                "md5": "7914114442e744c7da0f6b7612cb93b6",
                "sha256": "b3cfdd31b62ab4d20159c82c2d5bc7a5a677ece3d9d4e70c94dfd24828ad65be"
            },
            "downloads": -1,
            "filename": "stam-0.7.0-cp38-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "7914114442e744c7da0f6b7612cb93b6",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 1908999,
            "upload_time": "2024-03-28T13:38:22",
            "upload_time_iso_8601": "2024-03-28T13:38:22.936248Z",
            "url": "https://files.pythonhosted.org/packages/92/bb/14a6c179aef5140b29e644a9119c4877ea7bd35fe8625b8bdd109edf6ad2/stam-0.7.0-cp38-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "958b3cb2b5cb50abb543ee068e060f0b1d9af4f7aa89ca32f86c9360f27f4912",
                "md5": "c9becd6478d3f95a0d4aa056d55d1dc8",
                "sha256": "40a3d2109e7807c5649cf06b8002e75024bca65b2c212f5f1b7be96dbc2b3105"
            },
            "downloads": -1,
            "filename": "stam-0.7.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "c9becd6478d3f95a0d4aa056d55d1dc8",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 3127126,
            "upload_time": "2024-03-28T13:37:26",
            "upload_time_iso_8601": "2024-03-28T13:37:26.031192Z",
            "url": "https://files.pythonhosted.org/packages/95/8b/3cb2b5cb50abb543ee068e060f0b1d9af4f7aa89ca32f86c9360f27f4912/stam-0.7.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "89115b582cee389b91458fb878cbb2afe9be6b41c586a205909110f1a2931fe6",
                "md5": "8852dfd8a40fb3201865d42148715fa1",
                "sha256": "5c7f62e275a2e828ff9eca40731ae26c32695fff9097c7ba81714ac648dd419c"
            },
            "downloads": -1,
            "filename": "stam-0.7.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8852dfd8a40fb3201865d42148715fa1",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 3201888,
            "upload_time": "2024-03-28T13:37:28",
            "upload_time_iso_8601": "2024-03-28T13:37:28.598015Z",
            "url": "https://files.pythonhosted.org/packages/89/11/5b582cee389b91458fb878cbb2afe9be6b41c586a205909110f1a2931fe6/stam-0.7.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c385f0bc3dafd2c3267d47d65af6c26d7335965bbbbeefced119f8af0ee73261",
                "md5": "f658d90608165bd4bb18535f4321e56b",
                "sha256": "7098990d6c07fa1dc7409a059c9f41ca61295683666633bb596f056e329117ff"
            },
            "downloads": -1,
            "filename": "stam-0.7.0-cp39-cp39-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "f658d90608165bd4bb18535f4321e56b",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 3288924,
            "upload_time": "2024-03-28T13:37:51",
            "upload_time_iso_8601": "2024-03-28T13:37:51.809170Z",
            "url": "https://files.pythonhosted.org/packages/c3/85/f0bc3dafd2c3267d47d65af6c26d7335965bbbbeefced119f8af0ee73261/stam-0.7.0-cp39-cp39-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e351df2cfad09afd2ad6a369d163061e07e58e02f6d2762c6a80167ac757265c",
                "md5": "b931da8c0aec71c52ecec533ae211e27",
                "sha256": "35e4f156babc67985613bb103a744fab9a93dbac6f1349af1eaf04165d19a641"
            },
            "downloads": -1,
            "filename": "stam-0.7.0-cp39-cp39-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b931da8c0aec71c52ecec533ae211e27",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 3368904,
            "upload_time": "2024-03-28T13:37:54",
            "upload_time_iso_8601": "2024-03-28T13:37:54.643453Z",
            "url": "https://files.pythonhosted.org/packages/e3/51/df2cfad09afd2ad6a369d163061e07e58e02f6d2762c6a80167ac757265c/stam-0.7.0-cp39-cp39-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d5ba2e430787fc2c29c8e00e8e751d71dff348a4a5eaac9b16ddae763cc744d6",
                "md5": "b2b19a7dac536c5d7fed992409c04a3f",
                "sha256": "52bcc9fe40ac295aec1cca1ab1f5c1497672dac5d9ba08846e415df720df4b10"
            },
            "downloads": -1,
            "filename": "stam-0.7.0-cp39-none-win32.whl",
            "has_sig": false,
            "md5_digest": "b2b19a7dac536c5d7fed992409c04a3f",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 1732592,
            "upload_time": "2024-03-28T13:38:24",
            "upload_time_iso_8601": "2024-03-28T13:38:24.755489Z",
            "url": "https://files.pythonhosted.org/packages/d5/ba/2e430787fc2c29c8e00e8e751d71dff348a4a5eaac9b16ddae763cc744d6/stam-0.7.0-cp39-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7b856be9a3f7bee2a194b2f2a9e9e68bf3ccb140523d8ff536c08c95e36c7d68",
                "md5": "6def0d643ee27e5532ec1abc7c304069",
                "sha256": "09f6a7ee30c03ca0d4c3bb864f07dadaff980890291fdae1479f968839a277dd"
            },
            "downloads": -1,
            "filename": "stam-0.7.0-cp39-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "6def0d643ee27e5532ec1abc7c304069",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 1909856,
            "upload_time": "2024-03-28T13:38:27",
            "upload_time_iso_8601": "2024-03-28T13:38:27.118326Z",
            "url": "https://files.pythonhosted.org/packages/7b/85/6be9a3f7bee2a194b2f2a9e9e68bf3ccb140523d8ff536c08c95e36c7d68/stam-0.7.0-cp39-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "555ff0a48f15de3260b2ac4be3caff458501c7b8ef694c75fa49fba210db467e",
                "md5": "bb9d1eb6e10d30cd90f66557c19c0915",
                "sha256": "bd0e82db97d0b44de2fe31721d9ddfb7cd053938b53dd8ca1cdb489445f2ca88"
            },
            "downloads": -1,
            "filename": "stam-0.7.0.tar.gz",
            "has_sig": false,
            "md5_digest": "bb9d1eb6e10d30cd90f66557c19c0915",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 75450,
            "upload_time": "2024-03-28T13:38:44",
            "upload_time_iso_8601": "2024-03-28T13:38:44.863703Z",
            "url": "https://files.pythonhosted.org/packages/55/5f/f0a48f15de3260b2ac4be3caff458501c7b8ef694c75fa49fba210db467e/stam-0.7.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-03-28 13:38:44",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "annotation",
    "github_project": "stam-python",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "stam"
}
        
Elapsed time: 0.23875s