scoring-matrices


Namescoring-matrices JSON
Version 0.2.2 PyPI version JSON
download
home_pagehttps://github.com/althonos/score-matrices
SummaryDependency free, Cython-compatible scoring matrices to use with biological sequences.
upload_time2024-06-24 10:43:34
maintainerNone
docs_urlNone
authorMartin Larralde
requires_python>=3.5
licenseMIT
keywords bioinformatics sequence substitution matrix score
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # πŸ§¬πŸ”  `scoring-matrices` [![Stars](https://img.shields.io/github/stars/althonos/scoring-matrices.svg?style=social&maxAge=3600&label=Star)](https://github.com/althonos/scoring-matrices/stargazers)

*Dependency free, [Cython](https://cython.org/)-compatible scoring matrices to use with biological sequences.*

[![Actions](https://img.shields.io/github/actions/workflow/status/althonos/scoring-matrices/test.yml?branch=main&logo=github&style=flat-square&maxAge=300)](https://github.com/althonos/scoring-matrices/actions)
[![Coverage](https://img.shields.io/codecov/c/gh/althonos/scoring-matrices?style=flat-square&maxAge=3600&logo=codecov)](https://codecov.io/gh/althonos/scoring-matrices/)
[![License](https://img.shields.io/badge/license-MIT-blue.svg?style=flat-square&maxAge=2678400)](https://choosealicense.com/licenses/mit/)
[![PyPI](https://img.shields.io/pypi/v/scoring-matrices.svg?style=flat-square&maxAge=3600&logo=PyPI)](https://pypi.org/project/scoring-matrices)
[![Bioconda](https://img.shields.io/conda/vn/bioconda/scoring-matrices?style=flat-square&maxAge=3600&logo=anaconda)](https://anaconda.org/bioconda/scoring-matrices)
[![AUR](https://img.shields.io/aur/version/python-scoring-matrices?logo=archlinux&style=flat-square&maxAge=3600)](https://aur.archlinux.org/packages/python-scoring-matrices)
[![Wheel](https://img.shields.io/pypi/wheel/scoring-matrices.svg?style=flat-square&maxAge=3600)](https://pypi.org/project/scoring-matrices/#files)
[![Python Versions](https://img.shields.io/pypi/pyversions/scoring-matrices.svg?style=flat-square&maxAge=600&logo=python)](https://pypi.org/project/scoring-matrices/#files)
[![Python Implementations](https://img.shields.io/pypi/implementation/scoring-matrices.svg?style=flat-square&maxAge=600&label=impl)](https://pypi.org/project/scoring-matrices/#files)
[![Source](https://img.shields.io/badge/source-GitHub-303030.svg?maxAge=2678400&style=flat-square)](https://github.com/althonos/scoring-matrices/)
[![Issues](https://img.shields.io/github/issues/althonos/scoring-matrices.svg?style=flat-square&maxAge=600)](https://github.com/althonos/scoring-matrices/issues)
[![Docs](https://img.shields.io/readthedocs/scoring-matrices/latest?style=flat-square&maxAge=600)](https://scoring-matrices.readthedocs.io)
[![Changelog](https://img.shields.io/badge/keep%20a-changelog-8A0707.svg?maxAge=2678400&style=flat-square)](https://github.com/althonos/scoring-matrices/blob/main/CHANGELOG.md)
[![Downloads](https://img.shields.io/pypi/dm/scoring-matrices?style=flat-square&color=303f9f&maxAge=86400&label=downloads)](https://pepy.tech/project/scoring-matrices)

## πŸ—ΊοΈ Overview

*Scoring Matrices* are matrices used to score the matches and mismatches between
two characters are the same position in a sequence alignment. Some of these
matrices are derived from *substitution matrices*, which uses evolutionary 
modeling.

The `scoring-matrices` package is a dependency-free, batteries included library
to handle and distribute common substitution matrices:

- **no external dependencies**: The matrices are distributed as-is: you don't 
  need the whole [Biopython](https://biopython.org) ecosystem, or even 
  [NumPy](https://numpy.org/).
- **Cython compatibility**: The `ScoringMatrix` is a Cython class that can be
  inherited, and the matrix data can be accessed as either a raw pointer, or
  a [typed memoryview](https://cython.readthedocs.io/en/latest/src/userguide/memoryviews.html).
- **most common matrices**: The package distributes most common matrices, such as 
  those used by the NCBI BLAST+ suite, including:
  - [*PAM*](https://en.wikipedia.org/wiki/Point_accepted_mutation#) matrices by Dayhoff *et al.* (1978).
  - [*BLOSUM*](https://en.wikipedia.org/wiki/BLOSUM) matrices by Henikoff & Henikoff (1992).
  - *VTML* matrices by Muller *et al.* (2002).
  - *BENNER* matrices by Benner *et al.* (1994).

## πŸ”§ Installing

`scoring-matrices` can be installed directly from [PyPI](https://pypi.org/project/scoring-matrices/),
which hosts some pre-built wheels for the x86-64 architecture (Linux/OSX/Windows)
and the Aarch64 architecture (Linux/OSX), as well as the code required to
compile from source with Cython:
```console
$ pip install scoring-matrices
```

Otherwise, `scoring-matrices` is also available as a [Bioconda](https://bioconda.github.io/)
package:
```console
$ conda install bioconda::scoring-matrices
```

## πŸ’‘ Usage

### Python

- Import the `ScoringMatrix` class from the installed module:
  ```python
  from scoring_matrices import ScoringMatrix
  ```
- Load one of the built-in matrices:
  ```python
  blosum62 = ScoringMatrix.from_name("BLOSUM62")
  ```
- Get individual matrix weights either by index or by alphabet letter:
  ```python
  x = blosum62[0, 0]
  y = blosum62['A', 'A']
  ```
- Get a row of the matrix either by index or by alphabet letter:
  ```python
  row_x = blosum62[0]
  row_y = blosum62['A']
  ```

### Cython

- Access the matrix weights as raw pointers to constant data:
  ```cython
  from scoring_matrices cimport ScoringMatrix

  cdef ScoringMatrix blosum = ScoringMatrix.from_name("BLOSUM62")
  cdef const float*  data   = blosum.data_ptr()    # dense array
  cdef const float** matrix = blosum.matrix_ptr()  # array of pointers
  ```
- Access the `ScoringMatrix` weights as a [typed memoryview](https://cython.readthedocs.io/en/latest/src/userguide/memoryviews.html) 
  using the *buffer protocol* in more recents versions of Python:
  ```cython
  from scoring_matrices cimport ScoringMatrix

  cdef ScoringMatrix     blosum  = ScoringMatrix.from_name("BLOSUM62")
  cdef const float[:, :] weights = blosum
  ```

## πŸ’­ Feedback

### ⚠️ Issue Tracker

Found a bug ? Have an enhancement request ? Head over to the [GitHub issue tracker](https://github.com/althonos/scoring-matrices/issues)
if you need to report or ask something. If you are filing in on a bug,
please include as much information as you can about the issue, and try to
recreate the same bug in a simple, easily reproducible situation.

### πŸ—οΈ Contributing

Contributions are more than welcome! See
[`CONTRIBUTING.md`](https://github.com/althonos/scoring-matrices/blob/main/CONTRIBUTING.md)
for more details.


## πŸ“‹ Changelog

This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html)
and provides a [changelog](https://github.com/althonos/scoring-matrices/blob/main/CHANGELOG.md)
in the [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) format.


## βš–οΈ License

This library is provided under the [MIT License](https://choosealicense.com/licenses/mit/). 
Matrices were collected from the [MMseqs2](https://github.com/soedinglab/MMseqs2), 
[Biopython](https://github.com/biopython/biopython/tree/master/Bio/Align/substitution_matrices/data)
and [NCBI BLAST+](https://ftp.ncbi.nih.gov/blast/matrices/) sources and are believed to 
be in the public domain.

*This project was developed by [Martin Larralde](https://github.com/althonos/) 
during his PhD project at the [Leiden University Medical Center](https://www.lumc.nl/en/) in the [Zeller team](https://github.com/zellerlab).*

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/althonos/score-matrices",
    "name": "scoring-matrices",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.5",
    "maintainer_email": null,
    "keywords": "bioinformatics, sequence, substitution, matrix, score",
    "author": "Martin Larralde",
    "author_email": "martin.larralde@embl.de",
    "download_url": "https://files.pythonhosted.org/packages/38/ef/f8f55afafb7b85dccfe7bfd95ef6f86aff39d01689d80150497088ccd602/scoring-matrices-0.2.2.tar.gz",
    "platform": "any",
    "description": "# \ud83e\uddec\ud83d\udd20 `scoring-matrices` [![Stars](https://img.shields.io/github/stars/althonos/scoring-matrices.svg?style=social&maxAge=3600&label=Star)](https://github.com/althonos/scoring-matrices/stargazers)\n\n*Dependency free, [Cython](https://cython.org/)-compatible scoring matrices to use with biological sequences.*\n\n[![Actions](https://img.shields.io/github/actions/workflow/status/althonos/scoring-matrices/test.yml?branch=main&logo=github&style=flat-square&maxAge=300)](https://github.com/althonos/scoring-matrices/actions)\n[![Coverage](https://img.shields.io/codecov/c/gh/althonos/scoring-matrices?style=flat-square&maxAge=3600&logo=codecov)](https://codecov.io/gh/althonos/scoring-matrices/)\n[![License](https://img.shields.io/badge/license-MIT-blue.svg?style=flat-square&maxAge=2678400)](https://choosealicense.com/licenses/mit/)\n[![PyPI](https://img.shields.io/pypi/v/scoring-matrices.svg?style=flat-square&maxAge=3600&logo=PyPI)](https://pypi.org/project/scoring-matrices)\n[![Bioconda](https://img.shields.io/conda/vn/bioconda/scoring-matrices?style=flat-square&maxAge=3600&logo=anaconda)](https://anaconda.org/bioconda/scoring-matrices)\n[![AUR](https://img.shields.io/aur/version/python-scoring-matrices?logo=archlinux&style=flat-square&maxAge=3600)](https://aur.archlinux.org/packages/python-scoring-matrices)\n[![Wheel](https://img.shields.io/pypi/wheel/scoring-matrices.svg?style=flat-square&maxAge=3600)](https://pypi.org/project/scoring-matrices/#files)\n[![Python Versions](https://img.shields.io/pypi/pyversions/scoring-matrices.svg?style=flat-square&maxAge=600&logo=python)](https://pypi.org/project/scoring-matrices/#files)\n[![Python Implementations](https://img.shields.io/pypi/implementation/scoring-matrices.svg?style=flat-square&maxAge=600&label=impl)](https://pypi.org/project/scoring-matrices/#files)\n[![Source](https://img.shields.io/badge/source-GitHub-303030.svg?maxAge=2678400&style=flat-square)](https://github.com/althonos/scoring-matrices/)\n[![Issues](https://img.shields.io/github/issues/althonos/scoring-matrices.svg?style=flat-square&maxAge=600)](https://github.com/althonos/scoring-matrices/issues)\n[![Docs](https://img.shields.io/readthedocs/scoring-matrices/latest?style=flat-square&maxAge=600)](https://scoring-matrices.readthedocs.io)\n[![Changelog](https://img.shields.io/badge/keep%20a-changelog-8A0707.svg?maxAge=2678400&style=flat-square)](https://github.com/althonos/scoring-matrices/blob/main/CHANGELOG.md)\n[![Downloads](https://img.shields.io/pypi/dm/scoring-matrices?style=flat-square&color=303f9f&maxAge=86400&label=downloads)](https://pepy.tech/project/scoring-matrices)\n\n## \ud83d\uddfa\ufe0f Overview\n\n*Scoring Matrices* are matrices used to score the matches and mismatches between\ntwo characters are the same position in a sequence alignment. Some of these\nmatrices are derived from *substitution matrices*, which uses evolutionary \nmodeling.\n\nThe `scoring-matrices` package is a dependency-free, batteries included library\nto handle and distribute common substitution matrices:\n\n- **no external dependencies**: The matrices are distributed as-is: you don't \n  need the whole [Biopython](https://biopython.org) ecosystem, or even \n  [NumPy](https://numpy.org/).\n- **Cython compatibility**: The `ScoringMatrix` is a Cython class that can be\n  inherited, and the matrix data can be accessed as either a raw pointer, or\n  a [typed memoryview](https://cython.readthedocs.io/en/latest/src/userguide/memoryviews.html).\n- **most common matrices**: The package distributes most common matrices, such as \n  those used by the NCBI BLAST+ suite, including:\n  - [*PAM*](https://en.wikipedia.org/wiki/Point_accepted_mutation#) matrices by Dayhoff *et al.* (1978).\n  - [*BLOSUM*](https://en.wikipedia.org/wiki/BLOSUM) matrices by Henikoff & Henikoff (1992).\n  - *VTML* matrices by Muller *et al.* (2002).\n  - *BENNER* matrices by Benner *et al.* (1994).\n\n## \ud83d\udd27 Installing\n\n`scoring-matrices` can be installed directly from [PyPI](https://pypi.org/project/scoring-matrices/),\nwhich hosts some pre-built wheels for the x86-64 architecture (Linux/OSX/Windows)\nand the Aarch64 architecture (Linux/OSX), as well as the code required to\ncompile from source with Cython:\n```console\n$ pip install scoring-matrices\n```\n\nOtherwise, `scoring-matrices` is also available as a [Bioconda](https://bioconda.github.io/)\npackage:\n```console\n$ conda install bioconda::scoring-matrices\n```\n\n## \ud83d\udca1 Usage\n\n### Python\n\n- Import the `ScoringMatrix` class from the installed module:\n  ```python\n  from scoring_matrices import ScoringMatrix\n  ```\n- Load one of the built-in matrices:\n  ```python\n  blosum62 = ScoringMatrix.from_name(\"BLOSUM62\")\n  ```\n- Get individual matrix weights either by index or by alphabet letter:\n  ```python\n  x = blosum62[0, 0]\n  y = blosum62['A', 'A']\n  ```\n- Get a row of the matrix either by index or by alphabet letter:\n  ```python\n  row_x = blosum62[0]\n  row_y = blosum62['A']\n  ```\n\n### Cython\n\n- Access the matrix weights as raw pointers to constant data:\n  ```cython\n  from scoring_matrices cimport ScoringMatrix\n\n  cdef ScoringMatrix blosum = ScoringMatrix.from_name(\"BLOSUM62\")\n  cdef const float*  data   = blosum.data_ptr()    # dense array\n  cdef const float** matrix = blosum.matrix_ptr()  # array of pointers\n  ```\n- Access the `ScoringMatrix` weights as a [typed memoryview](https://cython.readthedocs.io/en/latest/src/userguide/memoryviews.html) \n  using the *buffer protocol* in more recents versions of Python:\n  ```cython\n  from scoring_matrices cimport ScoringMatrix\n\n  cdef ScoringMatrix     blosum  = ScoringMatrix.from_name(\"BLOSUM62\")\n  cdef const float[:, :] weights = blosum\n  ```\n\n## \ud83d\udcad Feedback\n\n### \u26a0\ufe0f Issue Tracker\n\nFound a bug ? Have an enhancement request ? Head over to the [GitHub issue tracker](https://github.com/althonos/scoring-matrices/issues)\nif you need to report or ask something. If you are filing in on a bug,\nplease include as much information as you can about the issue, and try to\nrecreate the same bug in a simple, easily reproducible situation.\n\n### \ud83c\udfd7\ufe0f Contributing\n\nContributions are more than welcome! See\n[`CONTRIBUTING.md`](https://github.com/althonos/scoring-matrices/blob/main/CONTRIBUTING.md)\nfor more details.\n\n\n## \ud83d\udccb Changelog\n\nThis project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html)\nand provides a [changelog](https://github.com/althonos/scoring-matrices/blob/main/CHANGELOG.md)\nin the [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) format.\n\n\n## \u2696\ufe0f License\n\nThis library is provided under the [MIT License](https://choosealicense.com/licenses/mit/). \nMatrices were collected from the [MMseqs2](https://github.com/soedinglab/MMseqs2), \n[Biopython](https://github.com/biopython/biopython/tree/master/Bio/Align/substitution_matrices/data)\nand [NCBI BLAST+](https://ftp.ncbi.nih.gov/blast/matrices/) sources and are believed to \nbe in the public domain.\n\n*This project was developed by [Martin Larralde](https://github.com/althonos/) \nduring his PhD project at the [Leiden University Medical Center](https://www.lumc.nl/en/) in the [Zeller team](https://github.com/zellerlab).*\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Dependency free, Cython-compatible scoring matrices to use with biological sequences.",
    "version": "0.2.2",
    "project_urls": {
        "Bug Tracker": "https://github.com/althonos/scoring-matrices/issues",
        "Builds": "https://github.com/althonos/scoring-matrices/actions",
        "Changelog": "https://github.com/althonos/scoring-matrices/blob/main/CHANGELOG.md",
        "Coverage": "https://codecov.io/gh/althonos/scoring-matrices/",
        "Homepage": "https://github.com/althonos/score-matrices"
    },
    "split_keywords": [
        "bioinformatics",
        " sequence",
        " substitution",
        " matrix",
        " score"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1eef510d247b7c39b4db108e165facd57691514e9533783e6284c92735398160",
                "md5": "1290b33aa285279aaffd0faa36abe32c",
                "sha256": "88b85887e252db5926398cba1c91fcb029ceed1ee08125363c648a67f3c16399"
            },
            "downloads": -1,
            "filename": "scoring_matrices-0.2.2-cp310-cp310-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1290b33aa285279aaffd0faa36abe32c",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.5",
            "size": 116950,
            "upload_time": "2024-06-24T10:42:18",
            "upload_time_iso_8601": "2024-06-24T10:42:18.548288Z",
            "url": "https://files.pythonhosted.org/packages/1e/ef/510d247b7c39b4db108e165facd57691514e9533783e6284c92735398160/scoring_matrices-0.2.2-cp310-cp310-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2c96f10aba3a5c71f58b03805b27ed40eb023a798ad98e383e3aa8b15483633b",
                "md5": "f35a080cf97913cf47e1101c243e0981",
                "sha256": "dd1921e5d08bd214266e41b5c7dd72b787ac0b74cc6301c1800999c8eaee82de"
            },
            "downloads": -1,
            "filename": "scoring_matrices-0.2.2-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "f35a080cf97913cf47e1101c243e0981",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.5",
            "size": 115325,
            "upload_time": "2024-06-24T10:42:19",
            "upload_time_iso_8601": "2024-06-24T10:42:19.848344Z",
            "url": "https://files.pythonhosted.org/packages/2c/96/f10aba3a5c71f58b03805b27ed40eb023a798ad98e383e3aa8b15483633b/scoring_matrices-0.2.2-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e26e0a31c96524a1667fb14a7dd6bd48e6df499cbc879a54f3da7dd2d0618674",
                "md5": "59c8c8cc295a9e690b773731f35445a5",
                "sha256": "c7c4b09972c83c164f826c25c409107e8b764c1618fcc7817977d947a94ed8d4"
            },
            "downloads": -1,
            "filename": "scoring_matrices-0.2.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "59c8c8cc295a9e690b773731f35445a5",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.5",
            "size": 426957,
            "upload_time": "2024-06-24T10:42:21",
            "upload_time_iso_8601": "2024-06-24T10:42:21.629085Z",
            "url": "https://files.pythonhosted.org/packages/e2/6e/0a31c96524a1667fb14a7dd6bd48e6df499cbc879a54f3da7dd2d0618674/scoring_matrices-0.2.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "355bb38baf3f307bf63828bbbb67bab45679eae21c42d26eccb0cacce8f6a420",
                "md5": "d7001652d2ab47f9a2175be660439680",
                "sha256": "e5d5acbefd9d0e45de602f3d561835af41553b9e181430efbdc8d8fbccb54d9f"
            },
            "downloads": -1,
            "filename": "scoring_matrices-0.2.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d7001652d2ab47f9a2175be660439680",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.5",
            "size": 435051,
            "upload_time": "2024-06-24T10:42:22",
            "upload_time_iso_8601": "2024-06-24T10:42:22.909448Z",
            "url": "https://files.pythonhosted.org/packages/35/5b/b38baf3f307bf63828bbbb67bab45679eae21c42d26eccb0cacce8f6a420/scoring_matrices-0.2.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3ba452acb4b3a082a516f7e22452365b39f550c8a9cbab97440f1055b3db9e02",
                "md5": "8b316c2de8b506b8796197274438491f",
                "sha256": "f3f90c8c4afdfabb8893f8ed8f1af0e92bcde4fe7438db2e795a34b158e0bf94"
            },
            "downloads": -1,
            "filename": "scoring_matrices-0.2.2-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "8b316c2de8b506b8796197274438491f",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.5",
            "size": 111901,
            "upload_time": "2024-06-24T10:42:24",
            "upload_time_iso_8601": "2024-06-24T10:42:24.660913Z",
            "url": "https://files.pythonhosted.org/packages/3b/a4/52acb4b3a082a516f7e22452365b39f550c8a9cbab97440f1055b3db9e02/scoring_matrices-0.2.2-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "57680767c062be98dd0ca3a916a3d3edee8fd93099db2fbc6b2960baed63d125",
                "md5": "8b9456fcbe42344b1e0a1df266525dd4",
                "sha256": "61382d002f43a42b5937dcc4b7b4d5280b88ee76b3243623f489187138d10f86"
            },
            "downloads": -1,
            "filename": "scoring_matrices-0.2.2-cp311-cp311-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8b9456fcbe42344b1e0a1df266525dd4",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.5",
            "size": 118445,
            "upload_time": "2024-06-24T10:42:25",
            "upload_time_iso_8601": "2024-06-24T10:42:25.638235Z",
            "url": "https://files.pythonhosted.org/packages/57/68/0767c062be98dd0ca3a916a3d3edee8fd93099db2fbc6b2960baed63d125/scoring_matrices-0.2.2-cp311-cp311-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2fb429fe34453467027ebf04d78f42d2b90f7d1cda4c759bfa2c140f9c35deaf",
                "md5": "a47ccaf1e6fde93ef492ef3306567210",
                "sha256": "d40b5a8ec0947eda2d355554b4a988a35df38d3feb07be92b1c292b6893b28ca"
            },
            "downloads": -1,
            "filename": "scoring_matrices-0.2.2-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "a47ccaf1e6fde93ef492ef3306567210",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.5",
            "size": 116354,
            "upload_time": "2024-06-24T10:42:29",
            "upload_time_iso_8601": "2024-06-24T10:42:29.359980Z",
            "url": "https://files.pythonhosted.org/packages/2f/b4/29fe34453467027ebf04d78f42d2b90f7d1cda4c759bfa2c140f9c35deaf/scoring_matrices-0.2.2-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1aa6cc9cb9cf75a8e8c23f2f35dd9ab75c9804e8e4274dc1f8bcdfb065be668a",
                "md5": "eaf90e61882fff9cc8dea79db826e352",
                "sha256": "4ee0a74a4c3f0297e1da8f59189e3395976b34bc507a090870aa2034d1417389"
            },
            "downloads": -1,
            "filename": "scoring_matrices-0.2.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "eaf90e61882fff9cc8dea79db826e352",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.5",
            "size": 465605,
            "upload_time": "2024-06-24T10:42:31",
            "upload_time_iso_8601": "2024-06-24T10:42:31.177246Z",
            "url": "https://files.pythonhosted.org/packages/1a/a6/cc9cb9cf75a8e8c23f2f35dd9ab75c9804e8e4274dc1f8bcdfb065be668a/scoring_matrices-0.2.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3a0b0b0f3de25a0aaaa5117211c9f768f47607499c79ba66713bdf93e4cf0c59",
                "md5": "864db2c065b93b5919663cbc56bc160f",
                "sha256": "021c1959120dea44329b65823373af274e32dc30b01ab4c7f9fc023619453c33"
            },
            "downloads": -1,
            "filename": "scoring_matrices-0.2.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "864db2c065b93b5919663cbc56bc160f",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.5",
            "size": 473426,
            "upload_time": "2024-06-24T10:42:32",
            "upload_time_iso_8601": "2024-06-24T10:42:32.677320Z",
            "url": "https://files.pythonhosted.org/packages/3a/0b/0b0f3de25a0aaaa5117211c9f768f47607499c79ba66713bdf93e4cf0c59/scoring_matrices-0.2.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fd64b75c1f3c86ea0b7c6f7aea607c556de7b6e4585612bc0a3ce76b9741f733",
                "md5": "56b46ac52f62849d2ebe5637469c6ec1",
                "sha256": "fed1fe3e3206e5431a443c80e83556e14dc10eafd3e9c6e68ebaf7305a6d150e"
            },
            "downloads": -1,
            "filename": "scoring_matrices-0.2.2-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "56b46ac52f62849d2ebe5637469c6ec1",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.5",
            "size": 112010,
            "upload_time": "2024-06-24T10:42:34",
            "upload_time_iso_8601": "2024-06-24T10:42:34.732487Z",
            "url": "https://files.pythonhosted.org/packages/fd/64/b75c1f3c86ea0b7c6f7aea607c556de7b6e4585612bc0a3ce76b9741f733/scoring_matrices-0.2.2-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e0b23cc9dd2d4b41d2250939dc32ea8aabc1997d1776ef5062b68c3e745c711e",
                "md5": "02c6999117641e96e2561914ad5d99c5",
                "sha256": "8ed338e1f33384f4b350d535ea329f64e47e04c83423e94b85dff04f28175866"
            },
            "downloads": -1,
            "filename": "scoring_matrices-0.2.2-cp312-cp312-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "02c6999117641e96e2561914ad5d99c5",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.5",
            "size": 117594,
            "upload_time": "2024-06-24T10:42:36",
            "upload_time_iso_8601": "2024-06-24T10:42:36.448099Z",
            "url": "https://files.pythonhosted.org/packages/e0/b2/3cc9dd2d4b41d2250939dc32ea8aabc1997d1776ef5062b68c3e745c711e/scoring_matrices-0.2.2-cp312-cp312-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "65533c663ba3cff2dd8811dc3d7add81ca053686470a642eaec09bba98c28756",
                "md5": "73e969cafaece040d1f97375fd27ed83",
                "sha256": "f552589a3567209433fee51c80290874ceee3fe77d18b01e33b1c06c5c506b13"
            },
            "downloads": -1,
            "filename": "scoring_matrices-0.2.2-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "73e969cafaece040d1f97375fd27ed83",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.5",
            "size": 115784,
            "upload_time": "2024-06-24T10:42:38",
            "upload_time_iso_8601": "2024-06-24T10:42:38.338189Z",
            "url": "https://files.pythonhosted.org/packages/65/53/3c663ba3cff2dd8811dc3d7add81ca053686470a642eaec09bba98c28756/scoring_matrices-0.2.2-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a7aa874db1c01bcc3206257447ca4f008243387e5d4259c0a4382fd0f592c827",
                "md5": "a27e398d9dad62d1710a601b5db50ec2",
                "sha256": "acd3185867723b246471ac1c9e87023e5b7543bf6845cc8b17c2dfe8339d928b"
            },
            "downloads": -1,
            "filename": "scoring_matrices-0.2.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "a27e398d9dad62d1710a601b5db50ec2",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.5",
            "size": 451885,
            "upload_time": "2024-06-24T10:42:40",
            "upload_time_iso_8601": "2024-06-24T10:42:40.053855Z",
            "url": "https://files.pythonhosted.org/packages/a7/aa/874db1c01bcc3206257447ca4f008243387e5d4259c0a4382fd0f592c827/scoring_matrices-0.2.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3638efafef5b40f9e28a541e69028b525f4cba84187c5d71629ed785fd6f7a7d",
                "md5": "b84a06607ee2cd9ac3ddbf89e53b91ec",
                "sha256": "c2cb7c79b21119ca5ea4e7d04aee158a1557568ee56145b5f0574a21691dc3b5"
            },
            "downloads": -1,
            "filename": "scoring_matrices-0.2.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b84a06607ee2cd9ac3ddbf89e53b91ec",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.5",
            "size": 461119,
            "upload_time": "2024-06-24T10:42:41",
            "upload_time_iso_8601": "2024-06-24T10:42:41.383984Z",
            "url": "https://files.pythonhosted.org/packages/36/38/efafef5b40f9e28a541e69028b525f4cba84187c5d71629ed785fd6f7a7d/scoring_matrices-0.2.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "78a766fe92732602a2dbba20c7c30af542f7c3ac2eb66958c4b0d36cec47327a",
                "md5": "2dbf8f738b21931812eac08b39f1b2ae",
                "sha256": "1352d35c806883910c6faf0d9111da5fed0582b278b57b5b770652fd373b7e17"
            },
            "downloads": -1,
            "filename": "scoring_matrices-0.2.2-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "2dbf8f738b21931812eac08b39f1b2ae",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.5",
            "size": 112100,
            "upload_time": "2024-06-24T10:42:44",
            "upload_time_iso_8601": "2024-06-24T10:42:44.477396Z",
            "url": "https://files.pythonhosted.org/packages/78/a7/66fe92732602a2dbba20c7c30af542f7c3ac2eb66958c4b0d36cec47327a/scoring_matrices-0.2.2-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "06f78a895b0cd6536d1e1adf144899949110516833d4a389eeb6066896098f33",
                "md5": "ebe437ddc4e7bdb01a10d953868319d1",
                "sha256": "f877490bac9cb4c7c6d2603dcc689051f06000143ea23e63c9a1f7940a67ade4"
            },
            "downloads": -1,
            "filename": "scoring_matrices-0.2.2-cp36-cp36m-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ebe437ddc4e7bdb01a10d953868319d1",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": ">=3.5",
            "size": 115625,
            "upload_time": "2024-06-24T10:42:46",
            "upload_time_iso_8601": "2024-06-24T10:42:46.247572Z",
            "url": "https://files.pythonhosted.org/packages/06/f7/8a895b0cd6536d1e1adf144899949110516833d4a389eeb6066896098f33/scoring_matrices-0.2.2-cp36-cp36m-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fa1a829154480e91218ce5c19d569312c985e1cd7e0a15321b099d12d64171ce",
                "md5": "72cdcdb1a3259ac4a3df45e0614cec0a",
                "sha256": "62c54b94c4a11628159c27ef794509db603655739a818a716b5ee13b31ce5fe5"
            },
            "downloads": -1,
            "filename": "scoring_matrices-0.2.2-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "72cdcdb1a3259ac4a3df45e0614cec0a",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": ">=3.5",
            "size": 371697,
            "upload_time": "2024-06-24T10:42:47",
            "upload_time_iso_8601": "2024-06-24T10:42:47.453348Z",
            "url": "https://files.pythonhosted.org/packages/fa/1a/829154480e91218ce5c19d569312c985e1cd7e0a15321b099d12d64171ce/scoring_matrices-0.2.2-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a090105ab1da3dbd242feaf0fc13d298e54b5d71e3411f4d84fc863ad7b8a3a2",
                "md5": "32af6f262dbd437ec2f52abc2f369800",
                "sha256": "b635aa70e3ecd7fb07e5ec32206cb4bac6909a86585ac02e36d43e6e83e7e436"
            },
            "downloads": -1,
            "filename": "scoring_matrices-0.2.2-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "32af6f262dbd437ec2f52abc2f369800",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": ">=3.5",
            "size": 376896,
            "upload_time": "2024-06-24T10:42:49",
            "upload_time_iso_8601": "2024-06-24T10:42:49.477771Z",
            "url": "https://files.pythonhosted.org/packages/a0/90/105ab1da3dbd242feaf0fc13d298e54b5d71e3411f4d84fc863ad7b8a3a2/scoring_matrices-0.2.2-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "177eb406179a486578a4b3e32b72713173501fbdf53df60016bd588350fdb63f",
                "md5": "55dd7076ee90bc5aa4e896ce6eddd806",
                "sha256": "04a78af7a03a3cd8824b729befaa938d5d30e546bf0378b4852c861dd24144c7"
            },
            "downloads": -1,
            "filename": "scoring_matrices-0.2.2-cp36-cp36m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "55dd7076ee90bc5aa4e896ce6eddd806",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": ">=3.5",
            "size": 121289,
            "upload_time": "2024-06-24T10:42:51",
            "upload_time_iso_8601": "2024-06-24T10:42:51.134058Z",
            "url": "https://files.pythonhosted.org/packages/17/7e/b406179a486578a4b3e32b72713173501fbdf53df60016bd588350fdb63f/scoring_matrices-0.2.2-cp36-cp36m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2d557ff99418d72c5e749418f595e98d82c61f72b4a98cf0d241774d60e92d05",
                "md5": "facb5e7e683a6712d3fdcf6017259705",
                "sha256": "bb66ac8ecf75168d35368c996a0f23503f147d9caade22187ff1293975e6c8a0"
            },
            "downloads": -1,
            "filename": "scoring_matrices-0.2.2-cp37-cp37m-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "facb5e7e683a6712d3fdcf6017259705",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.5",
            "size": 118527,
            "upload_time": "2024-06-24T10:42:52",
            "upload_time_iso_8601": "2024-06-24T10:42:52.228451Z",
            "url": "https://files.pythonhosted.org/packages/2d/55/7ff99418d72c5e749418f595e98d82c61f72b4a98cf0d241774d60e92d05/scoring_matrices-0.2.2-cp37-cp37m-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "09b3405c142e37474b35e4d0b57e70833b1ba05993ebe6fe39c03fda825d6b5d",
                "md5": "e60a993d9cea1efd19abb3044f5cef8c",
                "sha256": "35a4887d5ec4771ea62b0a02171188ffa8b8059b46171ef21d4af1570e70fcc3"
            },
            "downloads": -1,
            "filename": "scoring_matrices-0.2.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "e60a993d9cea1efd19abb3044f5cef8c",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.5",
            "size": 396709,
            "upload_time": "2024-06-24T10:42:53",
            "upload_time_iso_8601": "2024-06-24T10:42:53.372562Z",
            "url": "https://files.pythonhosted.org/packages/09/b3/405c142e37474b35e4d0b57e70833b1ba05993ebe6fe39c03fda825d6b5d/scoring_matrices-0.2.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "db718f16b4f8eade0e2c4af83835b6defd649890d9eea47a5daa95560236e49a",
                "md5": "bb132f5da9edbb8bbec46d2811fe4ad0",
                "sha256": "aebbc7478af6123963db2a2017fb4e16efe50d02165dd506cb8042a7f282695d"
            },
            "downloads": -1,
            "filename": "scoring_matrices-0.2.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "bb132f5da9edbb8bbec46d2811fe4ad0",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.5",
            "size": 406807,
            "upload_time": "2024-06-24T10:42:54",
            "upload_time_iso_8601": "2024-06-24T10:42:54.495989Z",
            "url": "https://files.pythonhosted.org/packages/db/71/8f16b4f8eade0e2c4af83835b6defd649890d9eea47a5daa95560236e49a/scoring_matrices-0.2.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c7590467b27416a3113c20e3f31a3061008bfc0a448c1f2e5d2e44194e612a74",
                "md5": "d6d52ad429363eb659824e0f5f64ea0a",
                "sha256": "70a6575be0c0aaa96d32a95e97f9d9aabd0e115826832a57f2d66b7ed55cc956"
            },
            "downloads": -1,
            "filename": "scoring_matrices-0.2.2-cp37-cp37m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "d6d52ad429363eb659824e0f5f64ea0a",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.5",
            "size": 113479,
            "upload_time": "2024-06-24T10:42:55",
            "upload_time_iso_8601": "2024-06-24T10:42:55.689096Z",
            "url": "https://files.pythonhosted.org/packages/c7/59/0467b27416a3113c20e3f31a3061008bfc0a448c1f2e5d2e44194e612a74/scoring_matrices-0.2.2-cp37-cp37m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "14cb9aa45b15d07d3bc243984d4c6e1b3b7e96bbc541707f0783a538fbf84530",
                "md5": "b9f13655318557f778eee7a8ad3127f7",
                "sha256": "498467f3246da17bc9f6fdb79dfa44af58f330fca8dc95bef8f4e495ffcf31fb"
            },
            "downloads": -1,
            "filename": "scoring_matrices-0.2.2-cp38-cp38-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b9f13655318557f778eee7a8ad3127f7",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.5",
            "size": 118101,
            "upload_time": "2024-06-24T10:42:56",
            "upload_time_iso_8601": "2024-06-24T10:42:56.765335Z",
            "url": "https://files.pythonhosted.org/packages/14/cb/9aa45b15d07d3bc243984d4c6e1b3b7e96bbc541707f0783a538fbf84530/scoring_matrices-0.2.2-cp38-cp38-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1e06a02d5bbbda1a35ddea937443c5ec0da0f375a926714377dcf5c44541d729",
                "md5": "0f95619e673cfe46f6919ff2d518a0a8",
                "sha256": "98b2088606c59651a754aa8ec6a8262e841319fb642d94be194943d7a80510c5"
            },
            "downloads": -1,
            "filename": "scoring_matrices-0.2.2-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "0f95619e673cfe46f6919ff2d518a0a8",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.5",
            "size": 116280,
            "upload_time": "2024-06-24T10:42:58",
            "upload_time_iso_8601": "2024-06-24T10:42:58.629103Z",
            "url": "https://files.pythonhosted.org/packages/1e/06/a02d5bbbda1a35ddea937443c5ec0da0f375a926714377dcf5c44541d729/scoring_matrices-0.2.2-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a44efaf720025430a716f2d81d857a60ece84f70f75ecb6b235adef958925854",
                "md5": "9f9164b5c788cdeaf4f857fd8644cc95",
                "sha256": "191077ed47d56515fb3223472d72af7be6e877ef042b7832e9554e91c5c9aecb"
            },
            "downloads": -1,
            "filename": "scoring_matrices-0.2.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "9f9164b5c788cdeaf4f857fd8644cc95",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.5",
            "size": 431763,
            "upload_time": "2024-06-24T10:42:59",
            "upload_time_iso_8601": "2024-06-24T10:42:59.725095Z",
            "url": "https://files.pythonhosted.org/packages/a4/4e/faf720025430a716f2d81d857a60ece84f70f75ecb6b235adef958925854/scoring_matrices-0.2.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "14dbc9883ff3f91f70765053dc4059a59dabdfa6bb56bcea8256a624d6c40472",
                "md5": "086981ebfc032f076ddd143609b78bf3",
                "sha256": "4635eae6e49c1f39e419f967f7002a438a35ce933b8d98601146818d0934be24"
            },
            "downloads": -1,
            "filename": "scoring_matrices-0.2.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "086981ebfc032f076ddd143609b78bf3",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.5",
            "size": 442110,
            "upload_time": "2024-06-24T10:43:05",
            "upload_time_iso_8601": "2024-06-24T10:43:05.250707Z",
            "url": "https://files.pythonhosted.org/packages/14/db/c9883ff3f91f70765053dc4059a59dabdfa6bb56bcea8256a624d6c40472/scoring_matrices-0.2.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "99d433a666384d068666de2174267f9239275c07443950dcb170374e90211939",
                "md5": "072acb91d77c0d6c35460f9d6b94d165",
                "sha256": "8ad3a0061fc252b4657ed7f17f03f433f9d8a6dabaed1c0170c816fb89a4001c"
            },
            "downloads": -1,
            "filename": "scoring_matrices-0.2.2-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "072acb91d77c0d6c35460f9d6b94d165",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.5",
            "size": 112629,
            "upload_time": "2024-06-24T10:43:06",
            "upload_time_iso_8601": "2024-06-24T10:43:06.420024Z",
            "url": "https://files.pythonhosted.org/packages/99/d4/33a666384d068666de2174267f9239275c07443950dcb170374e90211939/scoring_matrices-0.2.2-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8ecc25c4ababab77382fe883065205b69da7de5d7b2742b30d0efc11b3611ca7",
                "md5": "1f4bcebc76acd2d52c4c34a70c66c9d9",
                "sha256": "681a30548cdb367d3e84ebe4ab762c080881db9fc8f3282a185ffe32f6d49db2"
            },
            "downloads": -1,
            "filename": "scoring_matrices-0.2.2-cp39-cp39-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1f4bcebc76acd2d52c4c34a70c66c9d9",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.5",
            "size": 118903,
            "upload_time": "2024-06-24T10:43:07",
            "upload_time_iso_8601": "2024-06-24T10:43:07.556736Z",
            "url": "https://files.pythonhosted.org/packages/8e/cc/25c4ababab77382fe883065205b69da7de5d7b2742b30d0efc11b3611ca7/scoring_matrices-0.2.2-cp39-cp39-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9dfd37fab16b5a9d99c2adfcfd7c79662a1f1f98d37b502d26518185b557b63d",
                "md5": "c614e9138727853e32e60c35c5ba0437",
                "sha256": "7fdd6131cb3220dd15131693ef275f5474f39b61691d08142d742bbd62af2fb4"
            },
            "downloads": -1,
            "filename": "scoring_matrices-0.2.2-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "c614e9138727853e32e60c35c5ba0437",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.5",
            "size": 116802,
            "upload_time": "2024-06-24T10:43:08",
            "upload_time_iso_8601": "2024-06-24T10:43:08.594465Z",
            "url": "https://files.pythonhosted.org/packages/9d/fd/37fab16b5a9d99c2adfcfd7c79662a1f1f98d37b502d26518185b557b63d/scoring_matrices-0.2.2-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "26937a7f8a98069eab1a5cda540ebb70b7113320a2f91a5115ada6800e33cda7",
                "md5": "df7c21a4620970b4ff009780b4618d52",
                "sha256": "55e120b22a53fc3cbc9900c59bf1bd2892c04bc51e57048369652f017cbe26d6"
            },
            "downloads": -1,
            "filename": "scoring_matrices-0.2.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "df7c21a4620970b4ff009780b4618d52",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.5",
            "size": 427974,
            "upload_time": "2024-06-24T10:43:11",
            "upload_time_iso_8601": "2024-06-24T10:43:11.221651Z",
            "url": "https://files.pythonhosted.org/packages/26/93/7a7f8a98069eab1a5cda540ebb70b7113320a2f91a5115ada6800e33cda7/scoring_matrices-0.2.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8b9e241bfebda431e929d7dc4e5560230406b33aaeda28221cbe7494262b259c",
                "md5": "28d06bb135d212f7882851b87bfb12b6",
                "sha256": "3420eeb5aa93c3366b3bd8c36215b5dee1b3608c83696146d9d57036364b369e"
            },
            "downloads": -1,
            "filename": "scoring_matrices-0.2.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "28d06bb135d212f7882851b87bfb12b6",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.5",
            "size": 437347,
            "upload_time": "2024-06-24T10:43:12",
            "upload_time_iso_8601": "2024-06-24T10:43:12.433891Z",
            "url": "https://files.pythonhosted.org/packages/8b/9e/241bfebda431e929d7dc4e5560230406b33aaeda28221cbe7494262b259c/scoring_matrices-0.2.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bdbaf9f860dfbac9d838b060d37186649d189932b9a7f05f0b551ffb3d69628b",
                "md5": "46c0d0e42494700f6cf362cdb04f79a7",
                "sha256": "6b55518fee0966e69e1b6600ff43ae379d6c44543d83cd6badcf973ee359773b"
            },
            "downloads": -1,
            "filename": "scoring_matrices-0.2.2-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "46c0d0e42494700f6cf362cdb04f79a7",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.5",
            "size": 112490,
            "upload_time": "2024-06-24T10:43:13",
            "upload_time_iso_8601": "2024-06-24T10:43:13.680140Z",
            "url": "https://files.pythonhosted.org/packages/bd/ba/f9f860dfbac9d838b060d37186649d189932b9a7f05f0b551ffb3d69628b/scoring_matrices-0.2.2-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3498d04700811ca70d33084075db6bab6ac2d281bfff20721073e6e569cbf586",
                "md5": "2343928084f09e2ba3fe10887363f1d4",
                "sha256": "3b0ab843e05e89f2099fc0169256e6db72a4dc9c5cfa76cc496db27a7e20f8b6"
            },
            "downloads": -1,
            "filename": "scoring_matrices-0.2.2-pp310-pypy310_pp73-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2343928084f09e2ba3fe10887363f1d4",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.5",
            "size": 98061,
            "upload_time": "2024-06-24T10:43:14",
            "upload_time_iso_8601": "2024-06-24T10:43:14.885852Z",
            "url": "https://files.pythonhosted.org/packages/34/98/d04700811ca70d33084075db6bab6ac2d281bfff20721073e6e569cbf586/scoring_matrices-0.2.2-pp310-pypy310_pp73-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f047fe01be4e03b2980a5a18941a5f504ae4ac7c6c660b6488b560bca6c946ee",
                "md5": "be2c0b0733803cd6b3a8e855224da2ff",
                "sha256": "301ab2fe4ba50f79711b576856ab17530c876a36c615d48c846e9b30f3242f94"
            },
            "downloads": -1,
            "filename": "scoring_matrices-0.2.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "be2c0b0733803cd6b3a8e855224da2ff",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.5",
            "size": 105076,
            "upload_time": "2024-06-24T10:43:15",
            "upload_time_iso_8601": "2024-06-24T10:43:15.876832Z",
            "url": "https://files.pythonhosted.org/packages/f0/47/fe01be4e03b2980a5a18941a5f504ae4ac7c6c660b6488b560bca6c946ee/scoring_matrices-0.2.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "da01e4240e3dd4dba5f3d68a5d701f3cb727575d7e84b3cb5fc0cace1f7498da",
                "md5": "4be32da9668ee54755154d1add381600",
                "sha256": "44b795e32162b3e364c35f0dbde11fb3a949f31ca328d06796bdc045ab650247"
            },
            "downloads": -1,
            "filename": "scoring_matrices-0.2.2-pp310-pypy310_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4be32da9668ee54755154d1add381600",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.5",
            "size": 107832,
            "upload_time": "2024-06-24T10:43:17",
            "upload_time_iso_8601": "2024-06-24T10:43:17.202663Z",
            "url": "https://files.pythonhosted.org/packages/da/01/e4240e3dd4dba5f3d68a5d701f3cb727575d7e84b3cb5fc0cace1f7498da/scoring_matrices-0.2.2-pp310-pypy310_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0283e0c6dd6d77144e3427f669f9cd0afc2a22a4926d774b0ae54139a484543c",
                "md5": "d22057470cf7ab8e6d18ec2c3a356311",
                "sha256": "6e7585fb7362ea0098ff78ce2dd4141d41e60ebfec7cf15095adbedd9ffd177a"
            },
            "downloads": -1,
            "filename": "scoring_matrices-0.2.2-pp310-pypy310_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "d22057470cf7ab8e6d18ec2c3a356311",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.5",
            "size": 99963,
            "upload_time": "2024-06-24T10:43:18",
            "upload_time_iso_8601": "2024-06-24T10:43:18.410713Z",
            "url": "https://files.pythonhosted.org/packages/02/83/e0c6dd6d77144e3427f669f9cd0afc2a22a4926d774b0ae54139a484543c/scoring_matrices-0.2.2-pp310-pypy310_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "07196c77d5ae4b5ae77f4f00bab85c479bf77b523eb59e51cc15f1cc09980ae5",
                "md5": "2261d079538685663678a7fa63edf025",
                "sha256": "59d813a8d1bda765bbbea58e8d430726deb82134c77d36a5cdeeaba2092eb729"
            },
            "downloads": -1,
            "filename": "scoring_matrices-0.2.2-pp37-pypy37_pp73-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2261d079538685663678a7fa63edf025",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.5",
            "size": 97973,
            "upload_time": "2024-06-24T10:43:20",
            "upload_time_iso_8601": "2024-06-24T10:43:20.050724Z",
            "url": "https://files.pythonhosted.org/packages/07/19/6c77d5ae4b5ae77f4f00bab85c479bf77b523eb59e51cc15f1cc09980ae5/scoring_matrices-0.2.2-pp37-pypy37_pp73-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "40c4f265cc99586844e1e9b989c5d66ccfb1a39a9995d6fc95cee8d1e361d85c",
                "md5": "46bc9055f5598c5f2bc702e38d868970",
                "sha256": "081ec65d778bf2107c41e122df2f49fb1d44da9b2c9dec669718c31c28dd55f2"
            },
            "downloads": -1,
            "filename": "scoring_matrices-0.2.2-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "46bc9055f5598c5f2bc702e38d868970",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.5",
            "size": 105282,
            "upload_time": "2024-06-24T10:43:21",
            "upload_time_iso_8601": "2024-06-24T10:43:21.564593Z",
            "url": "https://files.pythonhosted.org/packages/40/c4/f265cc99586844e1e9b989c5d66ccfb1a39a9995d6fc95cee8d1e361d85c/scoring_matrices-0.2.2-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "587e1194b774d57162d1db5582a11f80800e15692c2e5bcfbf48a698e3fc664d",
                "md5": "59b93f49d28f123fe6ad393f86f08cae",
                "sha256": "710a89bb77f5a53fab4830490ece63f8f4e89ac0167164e19ca494b0deaddf25"
            },
            "downloads": -1,
            "filename": "scoring_matrices-0.2.2-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "59b93f49d28f123fe6ad393f86f08cae",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.5",
            "size": 108290,
            "upload_time": "2024-06-24T10:43:23",
            "upload_time_iso_8601": "2024-06-24T10:43:23.184092Z",
            "url": "https://files.pythonhosted.org/packages/58/7e/1194b774d57162d1db5582a11f80800e15692c2e5bcfbf48a698e3fc664d/scoring_matrices-0.2.2-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3828e443795f01e2bcfae3047b7aac96298233efa07a2f189afe051f880e9f23",
                "md5": "5720c83e90dc1d32f4b7eefb2fb7c2b2",
                "sha256": "4c21b496a580e0fbcd03b047b678fdb0aa236621cd5795416d80e8b9f7e57cdc"
            },
            "downloads": -1,
            "filename": "scoring_matrices-0.2.2-pp37-pypy37_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "5720c83e90dc1d32f4b7eefb2fb7c2b2",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.5",
            "size": 99793,
            "upload_time": "2024-06-24T10:43:24",
            "upload_time_iso_8601": "2024-06-24T10:43:24.353798Z",
            "url": "https://files.pythonhosted.org/packages/38/28/e443795f01e2bcfae3047b7aac96298233efa07a2f189afe051f880e9f23/scoring_matrices-0.2.2-pp37-pypy37_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4820ffc2752c6b5d1805228021ef245dc6306f87100682f54088ec695cb4fd37",
                "md5": "efb3b37e86415ac51c8c6a93d8c09023",
                "sha256": "fe8b36fde513c32d386e46f4011ef3994d68c6c177fa9149e2febc5e8ec2175f"
            },
            "downloads": -1,
            "filename": "scoring_matrices-0.2.2-pp38-pypy38_pp73-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "efb3b37e86415ac51c8c6a93d8c09023",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.5",
            "size": 97974,
            "upload_time": "2024-06-24T10:43:25",
            "upload_time_iso_8601": "2024-06-24T10:43:25.405119Z",
            "url": "https://files.pythonhosted.org/packages/48/20/ffc2752c6b5d1805228021ef245dc6306f87100682f54088ec695cb4fd37/scoring_matrices-0.2.2-pp38-pypy38_pp73-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7938e0fec7b84cd0b99e2ef193061d77c09c6d086a120aa7e395d50c15039142",
                "md5": "1efaa08a0b74db57ba3cd831bda2f740",
                "sha256": "5ebb05537c8546ce601eac536d0e7f7e61ede42d5b3df57bcecfb7795ca26edf"
            },
            "downloads": -1,
            "filename": "scoring_matrices-0.2.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "1efaa08a0b74db57ba3cd831bda2f740",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.5",
            "size": 105335,
            "upload_time": "2024-06-24T10:43:26",
            "upload_time_iso_8601": "2024-06-24T10:43:26.348009Z",
            "url": "https://files.pythonhosted.org/packages/79/38/e0fec7b84cd0b99e2ef193061d77c09c6d086a120aa7e395d50c15039142/scoring_matrices-0.2.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4bb0714f4d5cb833fbe4e510f275ad0bbacdb19dd149cb764c8925bfa1766a09",
                "md5": "7dfd44f33a07dcfe98ab5904ab8b25b9",
                "sha256": "e98780bc4913d780d3cd9eb4e782e97ae136e5f8745a74d0c8addf7c0acc574c"
            },
            "downloads": -1,
            "filename": "scoring_matrices-0.2.2-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7dfd44f33a07dcfe98ab5904ab8b25b9",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.5",
            "size": 108301,
            "upload_time": "2024-06-24T10:43:28",
            "upload_time_iso_8601": "2024-06-24T10:43:28.031616Z",
            "url": "https://files.pythonhosted.org/packages/4b/b0/714f4d5cb833fbe4e510f275ad0bbacdb19dd149cb764c8925bfa1766a09/scoring_matrices-0.2.2-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "49c17fdd469ed6f575340c0300744df645521bb4556a70d373c0b649d0fe0f3f",
                "md5": "248ba786abc5788dbdb7cf05303211f6",
                "sha256": "2d12b9492a3f9424d8ef2b671d6b96a5fec48e845c2cc27252d9abecdfe1e8f5"
            },
            "downloads": -1,
            "filename": "scoring_matrices-0.2.2-pp38-pypy38_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "248ba786abc5788dbdb7cf05303211f6",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.5",
            "size": 99801,
            "upload_time": "2024-06-24T10:43:29",
            "upload_time_iso_8601": "2024-06-24T10:43:29.009077Z",
            "url": "https://files.pythonhosted.org/packages/49/c1/7fdd469ed6f575340c0300744df645521bb4556a70d373c0b649d0fe0f3f/scoring_matrices-0.2.2-pp38-pypy38_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fc5c9303bc988730cc8b4efea395e44a1a905bd889379d1f4b9b704c2ea31351",
                "md5": "4f6229788638f5290a491ac1c49200b0",
                "sha256": "e02ede6fd1ea1b5d0e0ae03e0591a21857a1737460067875cad47c3fa1db96ee"
            },
            "downloads": -1,
            "filename": "scoring_matrices-0.2.2-pp39-pypy39_pp73-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4f6229788638f5290a491ac1c49200b0",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.5",
            "size": 97999,
            "upload_time": "2024-06-24T10:43:29",
            "upload_time_iso_8601": "2024-06-24T10:43:29.983591Z",
            "url": "https://files.pythonhosted.org/packages/fc/5c/9303bc988730cc8b4efea395e44a1a905bd889379d1f4b9b704c2ea31351/scoring_matrices-0.2.2-pp39-pypy39_pp73-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c2dac6ecd8cf077a2f8d5b5df936a30274069606544b98139f1458510bddc370",
                "md5": "d7d5e1e6a4882cfc77d236fcc4911477",
                "sha256": "eb43b6825f33228ee0fbadcb88c13b8e06aed0984eba62a939fffa1511211a14"
            },
            "downloads": -1,
            "filename": "scoring_matrices-0.2.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "d7d5e1e6a4882cfc77d236fcc4911477",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.5",
            "size": 104974,
            "upload_time": "2024-06-24T10:43:30",
            "upload_time_iso_8601": "2024-06-24T10:43:30.938940Z",
            "url": "https://files.pythonhosted.org/packages/c2/da/c6ecd8cf077a2f8d5b5df936a30274069606544b98139f1458510bddc370/scoring_matrices-0.2.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9c41399d0549278509a8f3214c1debe4e183bfa8fbe2377ca2cd01a181456e9d",
                "md5": "f7200d920769df6b07858b993794cc22",
                "sha256": "cb556de465a2970c81bd9fadda039ef4994c81484762bcbf0e0616b1d2902c3c"
            },
            "downloads": -1,
            "filename": "scoring_matrices-0.2.2-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f7200d920769df6b07858b993794cc22",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.5",
            "size": 107799,
            "upload_time": "2024-06-24T10:43:32",
            "upload_time_iso_8601": "2024-06-24T10:43:32.028878Z",
            "url": "https://files.pythonhosted.org/packages/9c/41/399d0549278509a8f3214c1debe4e183bfa8fbe2377ca2cd01a181456e9d/scoring_matrices-0.2.2-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "58ae5b598c124ed7a3d18478b1252423f605a54410bec257ff97821a4042cb0c",
                "md5": "363439c9f9c6669341849f7f104d2f64",
                "sha256": "7799beea9015d2c61c9a9a83f5eee91d8e27a669e33891fb9e58d87fec987236"
            },
            "downloads": -1,
            "filename": "scoring_matrices-0.2.2-pp39-pypy39_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "363439c9f9c6669341849f7f104d2f64",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.5",
            "size": 99904,
            "upload_time": "2024-06-24T10:43:33",
            "upload_time_iso_8601": "2024-06-24T10:43:33.298673Z",
            "url": "https://files.pythonhosted.org/packages/58/ae/5b598c124ed7a3d18478b1252423f605a54410bec257ff97821a4042cb0c/scoring_matrices-0.2.2-pp39-pypy39_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "38eff8f55afafb7b85dccfe7bfd95ef6f86aff39d01689d80150497088ccd602",
                "md5": "3d923b2b075949c9b7401019faea310d",
                "sha256": "2192df3f5f8ecd144071858cc287c958d2a842cdc8cc082c13755dfefe2f66b8"
            },
            "downloads": -1,
            "filename": "scoring-matrices-0.2.2.tar.gz",
            "has_sig": false,
            "md5_digest": "3d923b2b075949c9b7401019faea310d",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.5",
            "size": 44542,
            "upload_time": "2024-06-24T10:43:34",
            "upload_time_iso_8601": "2024-06-24T10:43:34.373402Z",
            "url": "https://files.pythonhosted.org/packages/38/ef/f8f55afafb7b85dccfe7bfd95ef6f86aff39d01689d80150497088ccd602/scoring-matrices-0.2.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-06-24 10:43:34",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "althonos",
    "github_project": "score-matrices",
    "github_not_found": true,
    "lcname": "scoring-matrices"
}
        
Elapsed time: 0.28093s