readfish-tools


Namereadfish-tools JSON
Version 0.0.1 PyPI version JSON
download
home_pageNone
SummaryA blazingly fast Python library for reading and summarising readfish output
upload_time2023-07-31 13:29:03
maintainerNone
docs_urlNone
authorRory Munro <roryjmunro1@gmail.com>
requires_python>=3.8
licenseBSD 3-Clause License
keywords bioinformatics python rust readfish analysis
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # readfish-tools
A Python/rust wrapper for analysing the output of readfish runs. Can be used in conjunction with `readfish summarise`.
The overarching goal is to analyse a PAF, BAM or set of FASTQ files. This tool takes in a readfish TOML file, the sequencing summary output for the PAF file

Currently it is only possible to analyse PAF files, using the `readfish_tools.demultiplex_paf` function or the `ReadfishSummary` class. Usage for both is described below.

# Documentations
To build the rust documentation and view it -

```bash
cargo doc --no-deps --document-private-items --open
```
Python documentation is on the roadmap.

# Installing/Building
This should compile on X64 or Arm/arch64.

:::warning
⚡ Note that if installed with test dependencies, (which is the default in the conda env yaml) `mappy_rs` will be installed, which is NOT Arm/aarch64 compatible (yet).
:::

```bash
git clone https://github.com/Adoni5/readfish-tools
cd readfish-tools
# conda (HAS test dependencies)
mamba env install -f readfish_tools_test.yml
# or via pip, without test dependencies
pip install -e .
```

# Usage
Can be imported either as a Summary class which can be worked with, or a one shot function, which consumes all records in a given file. There are different limitations to each approach.

## Summary class
```python
from readfish_tools import ReadfishSummary

rfs = ReadfishSummary()
rfs.with_toml_conf(<TOML_FILE>)
rfs.parse_paf_from_iter(<iterable of tuple of (pafline, (read_id, channel number, Optional[barcode name]))>)
rfs.print_summary()
```

First it is necessary to initialise the class. The class has methods to set the configuration TOML file. There is also a method to set a path to a sequencing summary file, which is currently **unimplemented**.

As such the only way to successfully use the class of this moment is by ensuring that the iterator provided provides the additional tuple that contains the metadata, as the second element of the tuple, with the paf record as the first element.

For example a valid tuple iterator could look like:

```python
iter([("read123  100 0   100 +   contig123   300 0   300 200 200 50  ch=1", ("read123", 1, None))])
# or if barcoded
iter([("read123  100 0   100 +   contig123   300 0   300 200 200 50  ch=1", ("read123", 1, "barcode01"))])

```

It is possible to call the `parse_paf_from_iter` method multiple times, to parse multiple files, or to parse a single file in chunks. It is also possible to call the `print_summary` method more than once, and
the summary printed will represent the given parsed data at any point when called.

`print_summary` prints to stdout, and will print a table created by the `prettytable.rs` crate.

On the roadmap is a function to return manipulatable `ConditionSummary` and `ContigSumary` classes which can be manipulated in python.

## One shot function
```python
from readfish_tools import summarise_paf
summarise_paf(<TOML_PATH>, <PAF_FILE_PATH>, <SEQUENCING_SUMMARY_PATH>)
# Summarised table
#+---------------------------+-------------+----------------+--------------+-------------+------------+-----------+-----------+-----------+------------+
#| Condition                 | Total reads | # Off-target   | # On-target  | Total Yield | Off Target | On Target | Mean read | On target | Off target |
#|                           |             | reads          | reads        |             |  Yield     |  yield    |  length   | Mean read | Mean read  |
#|                           |             |                |              |             |            |           |           |  length   |  length    |
#+---------------------------+-------------+----------------+--------------+-------------+------------+-----------+-----------+-----------+------------+
#| barcode05_NA12878_tst-170 | 4,236       | 4,210 (99.39%) | 26 (0.61%)   | 3.90 Mb     | 3.79 Mb    | 111.62 Kb | 969 b     | 4.29 Kb   | 885 b      |
#+---------------------------+-------------+----------------+--------------+-------------+------------+-----------+-----------+-----------+------------+
#+----------------+---------------+-------------+-----------+-------------+-----------+--------------+-----------+-----------+------------+
#| Condition Name | barcode05_NA12878_tst-170   |           |             |           |              |           |           |            |
#+----------------+---------------+-------------+-----------+-------------+-----------+--------------+-----------+-----------+------------+
#| Contig         | Contig Length | Read count  | Yield     | Mean        | On Target | Off          | Mean read | On target | Off target |
#|                |               |             |           | Read Length |  Reads    | Target Reads |  length   | Mean read | Mean read  |
#|                |               |             |           |             |           |              |           |  length   |  length    |
#+----------------+---------------+-------------+-----------+-------------+-----------+--------------+-----------+-----------+------------+
#| chr1           | 248,956,422   | 352         | 335.21 Kb | 944 b       | 0         | 352          | 944 b     | 0 b       | 944 b      |
#+----------------+---------------+-------------+-----------+-------------+-----------+--------------+-----------+-----------+------------+
#...
```
The `summarise_paf` function takes 3 parameters, `toml_file`, `paf_file` and Optionally, `sequencing_summary`, which are file paths to the respective paths.
Currently if we do not find **custom** tags for the channel (ch) and optionally the barcode (ba) in the PAF tags, a sequencing summary file is required.
### Limitations

Currently, if a sequencing summary file is provided, a record buffer of 100,000 rows is filled. If the Paf record being analysed is not found in this buffer, the buffer rolls along the file, removing the oldest line when a new line is read.
Therefore, if the PAF file being analysed is not in the order in which reads were base-called (with 100,000 reads leeway), the analysis will not work properly, with some reads being skipped.
This is most likely to be a problem on barcoded runs.

# tests
To run rust integration, unit and doctests
```bash
cargo test
```

Python tests
```bash
pip install -e .[tests]
pytest -sv
```

# RoadMap
V0.0.2
    [#2](https://github.com/Adoni5/readfish-tools/issues/2)

More refined printing of summaries.
- [ ] More fields on the printout
- [ ] Comparison of given conditions
- [X] Better grouping of stats
- [ ] Writing out of CSV files
- [ ] No stats options
- [X] Take an iter of PAf records, rather than a full file.
- [ ] Python documentation


# Changelog
V0.0.1 - Basic printing out of stats, taken from custom tags in the PAF record, (ba, ch) or from a sequencing summary file.


            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "readfish-tools",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": "Rory Munro <rory.munro@nottingham.ac.uk>",
    "keywords": "bioinformatics,python,rust,readfish,analysis",
    "author": "Rory Munro <roryjmunro1@gmail.com>",
    "author_email": "Rory Munro <rory.munro@nottingham.ac.uk>",
    "download_url": "https://files.pythonhosted.org/packages/4e/8f/ab8bab856f19e6e0dc071f70fe308f254253658e801d0422fd31cb461b6e/readfish_tools-0.0.1.tar.gz",
    "platform": null,
    "description": "# readfish-tools\nA Python/rust wrapper for analysing the output of readfish runs. Can be used in conjunction with `readfish summarise`.\nThe overarching goal is to analyse a PAF, BAM or set of FASTQ files. This tool takes in a readfish TOML file, the sequencing summary output for the PAF file\n\nCurrently it is only possible to analyse PAF files, using the `readfish_tools.demultiplex_paf` function or the `ReadfishSummary` class. Usage for both is described below.\n\n# Documentations\nTo build the rust documentation and view it -\n\n```bash\ncargo doc --no-deps --document-private-items --open\n```\nPython documentation is on the roadmap.\n\n# Installing/Building\nThis should compile on X64 or Arm/arch64.\n\n:::warning\n\u26a1 Note that if installed with test dependencies, (which is the default in the conda env yaml) `mappy_rs` will be installed, which is NOT Arm/aarch64 compatible (yet).\n:::\n\n```bash\ngit clone https://github.com/Adoni5/readfish-tools\ncd readfish-tools\n# conda (HAS test dependencies)\nmamba env install -f readfish_tools_test.yml\n# or via pip, without test dependencies\npip install -e .\n```\n\n# Usage\nCan be imported either as a Summary class which can be worked with, or a one shot function, which consumes all records in a given file. There are different limitations to each approach.\n\n## Summary class\n```python\nfrom readfish_tools import ReadfishSummary\n\nrfs = ReadfishSummary()\nrfs.with_toml_conf(<TOML_FILE>)\nrfs.parse_paf_from_iter(<iterable of tuple of (pafline, (read_id, channel number, Optional[barcode name]))>)\nrfs.print_summary()\n```\n\nFirst it is necessary to initialise the class. The class has methods to set the configuration TOML file. There is also a method to set a path to a sequencing summary file, which is currently **unimplemented**.\n\nAs such the only way to successfully use the class of this moment is by ensuring that the iterator provided provides the additional tuple that contains the metadata, as the second element of the tuple, with the paf record as the first element.\n\nFor example a valid tuple iterator could look like:\n\n```python\niter([(\"read123  100 0   100 +   contig123   300 0   300 200 200 50  ch=1\", (\"read123\", 1, None))])\n# or if barcoded\niter([(\"read123  100 0   100 +   contig123   300 0   300 200 200 50  ch=1\", (\"read123\", 1, \"barcode01\"))])\n\n```\n\nIt is possible to call the `parse_paf_from_iter` method multiple times, to parse multiple files, or to parse a single file in chunks. It is also possible to call the `print_summary` method more than once, and\nthe summary printed will represent the given parsed data at any point when called.\n\n`print_summary` prints to stdout, and will print a table created by the `prettytable.rs` crate.\n\nOn the roadmap is a function to return manipulatable `ConditionSummary` and `ContigSumary` classes which can be manipulated in python.\n\n## One shot function\n```python\nfrom readfish_tools import summarise_paf\nsummarise_paf(<TOML_PATH>, <PAF_FILE_PATH>, <SEQUENCING_SUMMARY_PATH>)\n# Summarised table\n#+---------------------------+-------------+----------------+--------------+-------------+------------+-----------+-----------+-----------+------------+\n#| Condition                 | Total reads | # Off-target   | # On-target  | Total Yield | Off Target | On Target | Mean read | On target | Off target |\n#|                           |             | reads          | reads        |             |  Yield     |  yield    |  length   | Mean read | Mean read  |\n#|                           |             |                |              |             |            |           |           |  length   |  length    |\n#+---------------------------+-------------+----------------+--------------+-------------+------------+-----------+-----------+-----------+------------+\n#| barcode05_NA12878_tst-170 | 4,236       | 4,210 (99.39%) | 26 (0.61%)   | 3.90 Mb     | 3.79 Mb    | 111.62 Kb | 969 b     | 4.29 Kb   | 885 b      |\n#+---------------------------+-------------+----------------+--------------+-------------+------------+-----------+-----------+-----------+------------+\n#+----------------+---------------+-------------+-----------+-------------+-----------+--------------+-----------+-----------+------------+\n#| Condition Name | barcode05_NA12878_tst-170   |           |             |           |              |           |           |            |\n#+----------------+---------------+-------------+-----------+-------------+-----------+--------------+-----------+-----------+------------+\n#| Contig         | Contig Length | Read count  | Yield     | Mean        | On Target | Off          | Mean read | On target | Off target |\n#|                |               |             |           | Read Length |  Reads    | Target Reads |  length   | Mean read | Mean read  |\n#|                |               |             |           |             |           |              |           |  length   |  length    |\n#+----------------+---------------+-------------+-----------+-------------+-----------+--------------+-----------+-----------+------------+\n#| chr1           | 248,956,422   | 352         | 335.21 Kb | 944 b       | 0         | 352          | 944 b     | 0 b       | 944 b      |\n#+----------------+---------------+-------------+-----------+-------------+-----------+--------------+-----------+-----------+------------+\n#...\n```\nThe `summarise_paf` function takes 3 parameters, `toml_file`, `paf_file` and Optionally, `sequencing_summary`, which are file paths to the respective paths.\nCurrently if we do not find **custom** tags for the channel (ch) and optionally the barcode (ba) in the PAF tags, a sequencing summary file is required.\n### Limitations\n\nCurrently, if a sequencing summary file is provided, a record buffer of 100,000 rows is filled. If the Paf record being analysed is not found in this buffer, the buffer rolls along the file, removing the oldest line when a new line is read.\nTherefore, if the PAF file being analysed is not in the order in which reads were base-called (with 100,000 reads leeway), the analysis will not work properly, with some reads being skipped.\nThis is most likely to be a problem on barcoded runs.\n\n# tests\nTo run rust integration, unit and doctests\n```bash\ncargo test\n```\n\nPython tests\n```bash\npip install -e .[tests]\npytest -sv\n```\n\n# RoadMap\nV0.0.2\n    [#2](https://github.com/Adoni5/readfish-tools/issues/2)\n\nMore refined printing of summaries.\n- [ ] More fields on the printout\n- [ ] Comparison of given conditions\n- [X] Better grouping of stats\n- [ ] Writing out of CSV files\n- [ ] No stats options\n- [X] Take an iter of PAf records, rather than a full file.\n- [ ] Python documentation\n\n\n# Changelog\nV0.0.1 - Basic printing out of stats, taken from custom tags in the PAF record, (ba, ch) or from a sequencing summary file.\n\n",
    "bugtrack_url": null,
    "license": "BSD 3-Clause License",
    "summary": "A blazingly fast Python library for reading and summarising readfish output",
    "version": "0.0.1",
    "project_urls": {
        "Source Code": "https://github.com/adoni5/readfish-tools/"
    },
    "split_keywords": [
        "bioinformatics",
        "python",
        "rust",
        "readfish",
        "analysis"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9407c2116ae641ef1d7fbbcda54afa96f464fa7911b243c4aac2ea20b1576013",
                "md5": "5cf2285846c3054cee397dec9dd67383",
                "sha256": "9dea3ff4d896a0adb8d9c15d74ca135e77972f1df7c98e83e2cab861c82c8201"
            },
            "downloads": -1,
            "filename": "readfish_tools-0.0.1-cp310-cp310-macosx_10_7_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5cf2285846c3054cee397dec9dd67383",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 633174,
            "upload_time": "2023-07-31T13:27:40",
            "upload_time_iso_8601": "2023-07-31T13:27:40.540973Z",
            "url": "https://files.pythonhosted.org/packages/94/07/c2116ae641ef1d7fbbcda54afa96f464fa7911b243c4aac2ea20b1576013/readfish_tools-0.0.1-cp310-cp310-macosx_10_7_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7266ef4a0712118486f1b81274a181337b7bf2b3947b49e2fff15dadc456c6fe",
                "md5": "36bdc7538c28556a07baa79ef70cfa36",
                "sha256": "fd5d1d4dbeac67cc9b2cde7476a9cb22cf98fbd6d487edea75c7005597229798"
            },
            "downloads": -1,
            "filename": "readfish_tools-0.0.1-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "36bdc7538c28556a07baa79ef70cfa36",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 603019,
            "upload_time": "2023-07-31T13:27:43",
            "upload_time_iso_8601": "2023-07-31T13:27:43.306149Z",
            "url": "https://files.pythonhosted.org/packages/72/66/ef4a0712118486f1b81274a181337b7bf2b3947b49e2fff15dadc456c6fe/readfish_tools-0.0.1-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "637c00f36ae6919637bcba3925f294647c0b2563296693befeb4eee3d79c1d44",
                "md5": "997805da4c3ffeb9f46e7e5fcaeacc39",
                "sha256": "28c93b87d1f5e8ec0756be342f8e2abb132fe787d9b8105c10cebe06831fe1db"
            },
            "downloads": -1,
            "filename": "readfish_tools-0.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "997805da4c3ffeb9f46e7e5fcaeacc39",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1036203,
            "upload_time": "2023-07-31T13:27:45",
            "upload_time_iso_8601": "2023-07-31T13:27:45.328740Z",
            "url": "https://files.pythonhosted.org/packages/63/7c/00f36ae6919637bcba3925f294647c0b2563296693befeb4eee3d79c1d44/readfish_tools-0.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4027fd85f5ccd02ecbfb71a825725f5c31e7b65c7a6f133b394186f90d1fc246",
                "md5": "0a78d757ca16eb3adccc428c93da5df7",
                "sha256": "6f1148bbbc57b186ddce94830bc105585379825c808d5b2733d24629fa1f3b43"
            },
            "downloads": -1,
            "filename": "readfish_tools-0.0.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "0a78d757ca16eb3adccc428c93da5df7",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1043389,
            "upload_time": "2023-07-31T13:27:47",
            "upload_time_iso_8601": "2023-07-31T13:27:47.825211Z",
            "url": "https://files.pythonhosted.org/packages/40/27/fd85f5ccd02ecbfb71a825725f5c31e7b65c7a6f133b394186f90d1fc246/readfish_tools-0.0.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7be6e0d837f1e18ad2f132c9de624e7ec75990f12a4e01133997181f625fb2db",
                "md5": "2c64cafcd25b3e16807a8effbf0304cb",
                "sha256": "baf32b9d55cf70c5825bb40259e15bc6b81de16d7e0c900981acc58382e9c5f2"
            },
            "downloads": -1,
            "filename": "readfish_tools-0.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2c64cafcd25b3e16807a8effbf0304cb",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1052116,
            "upload_time": "2023-07-31T13:27:50",
            "upload_time_iso_8601": "2023-07-31T13:27:50.643288Z",
            "url": "https://files.pythonhosted.org/packages/7b/e6/e0d837f1e18ad2f132c9de624e7ec75990f12a4e01133997181f625fb2db/readfish_tools-0.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f2f670ecf68fa56f2af89aa653c38f42fc7a7c6cca2327554ee6c7c16c67c5da",
                "md5": "ceb0f119195f08e6e76deb75395ac15f",
                "sha256": "01ca2401d9e49675c4b305119308d9af60231d6ad559f154081651a8b5dfaf70"
            },
            "downloads": -1,
            "filename": "readfish_tools-0.0.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "ceb0f119195f08e6e76deb75395ac15f",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1063940,
            "upload_time": "2023-07-31T13:27:52",
            "upload_time_iso_8601": "2023-07-31T13:27:52.951481Z",
            "url": "https://files.pythonhosted.org/packages/f2/f6/70ecf68fa56f2af89aa653c38f42fc7a7c6cca2327554ee6c7c16c67c5da/readfish_tools-0.0.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7e7ff6f256490086148287c3731b7774b55194b2774ecd7c51eb8e2a5b139baf",
                "md5": "0ad3b68b068ff168db5e3d4088026804",
                "sha256": "b96ec6a37a90b3a0a56420f2f2305f183038d265c8b491d87f9b08ac2da41402"
            },
            "downloads": -1,
            "filename": "readfish_tools-0.0.1-cp311-cp311-macosx_10_7_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0ad3b68b068ff168db5e3d4088026804",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 633174,
            "upload_time": "2023-07-31T13:27:55",
            "upload_time_iso_8601": "2023-07-31T13:27:55.377936Z",
            "url": "https://files.pythonhosted.org/packages/7e/7f/f6f256490086148287c3731b7774b55194b2774ecd7c51eb8e2a5b139baf/readfish_tools-0.0.1-cp311-cp311-macosx_10_7_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9d2364c8695a8c2cc2dccebfe52b5219b1b8c64b023671624ed3c5f19c116dc6",
                "md5": "c6ce886408e0f661714529c5fbe4a110",
                "sha256": "9d02433503f83c50ef78d187e07897ecac14a8d2815d108a1cd86a8c3a9a90d4"
            },
            "downloads": -1,
            "filename": "readfish_tools-0.0.1-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "c6ce886408e0f661714529c5fbe4a110",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 603019,
            "upload_time": "2023-07-31T13:27:57",
            "upload_time_iso_8601": "2023-07-31T13:27:57.679370Z",
            "url": "https://files.pythonhosted.org/packages/9d/23/64c8695a8c2cc2dccebfe52b5219b1b8c64b023671624ed3c5f19c116dc6/readfish_tools-0.0.1-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ca3d268bfc816250cf2dfb731124843efd3a814f3ba16e35e1a8bb293fb3c296",
                "md5": "ed7c10b66724b50b4aa1e96c02e8eb6e",
                "sha256": "b0d9f24af592bc08c2caaed60bd284bbefcff51713d1de76b473e7d72740aa93"
            },
            "downloads": -1,
            "filename": "readfish_tools-0.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "ed7c10b66724b50b4aa1e96c02e8eb6e",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1036203,
            "upload_time": "2023-07-31T13:28:00",
            "upload_time_iso_8601": "2023-07-31T13:28:00.022680Z",
            "url": "https://files.pythonhosted.org/packages/ca/3d/268bfc816250cf2dfb731124843efd3a814f3ba16e35e1a8bb293fb3c296/readfish_tools-0.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d39c268925937078b569e34d50f273a2fc21f6bc4abe767d55cd959793e04951",
                "md5": "9dcd6beda7a08c370439ee093a70675a",
                "sha256": "da7999ba28c15787be64ae7d7520eba289359b84c5c16126c470a1b36944787a"
            },
            "downloads": -1,
            "filename": "readfish_tools-0.0.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "9dcd6beda7a08c370439ee093a70675a",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1043389,
            "upload_time": "2023-07-31T13:28:02",
            "upload_time_iso_8601": "2023-07-31T13:28:02.490871Z",
            "url": "https://files.pythonhosted.org/packages/d3/9c/268925937078b569e34d50f273a2fc21f6bc4abe767d55cd959793e04951/readfish_tools-0.0.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7d186b81947392d451c3a2ebf53895464939c30381d504b61b0f71f001ef0d85",
                "md5": "fe15b5393fe0d279e9a3508cf7f328cd",
                "sha256": "777f47651581e546e246c6d773a53d555239f01f51d1f34420a712d51fcb3cce"
            },
            "downloads": -1,
            "filename": "readfish_tools-0.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "fe15b5393fe0d279e9a3508cf7f328cd",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1052115,
            "upload_time": "2023-07-31T13:28:04",
            "upload_time_iso_8601": "2023-07-31T13:28:04.349032Z",
            "url": "https://files.pythonhosted.org/packages/7d/18/6b81947392d451c3a2ebf53895464939c30381d504b61b0f71f001ef0d85/readfish_tools-0.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b0a64597384ee0b2085a157a5755e0a3938f2b05d2f106cb8650b6cdf59a0784",
                "md5": "7c80ff8656ef040f172573a37da41e12",
                "sha256": "29cc330de2ce26a0b132b06a66d0a9a7962d09fe3bc6c205b4d4f0dab93a862a"
            },
            "downloads": -1,
            "filename": "readfish_tools-0.0.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "7c80ff8656ef040f172573a37da41e12",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1063940,
            "upload_time": "2023-07-31T13:28:06",
            "upload_time_iso_8601": "2023-07-31T13:28:06.844562Z",
            "url": "https://files.pythonhosted.org/packages/b0/a6/4597384ee0b2085a157a5755e0a3938f2b05d2f106cb8650b6cdf59a0784/readfish_tools-0.0.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b593c6d6fcb962153993aa4fcb94e33fa094da050b2e501c852d4a0e106628f2",
                "md5": "f295c7d77660790f59680efe62a5609c",
                "sha256": "8cbb4b781de66cc6a10eed86645fb27fe45dc5f9d191574456cf16723a8a8bfb"
            },
            "downloads": -1,
            "filename": "readfish_tools-0.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "f295c7d77660790f59680efe62a5609c",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1036191,
            "upload_time": "2023-07-31T13:28:09",
            "upload_time_iso_8601": "2023-07-31T13:28:09.557935Z",
            "url": "https://files.pythonhosted.org/packages/b5/93/c6d6fcb962153993aa4fcb94e33fa094da050b2e501c852d4a0e106628f2/readfish_tools-0.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c6908cfe050bc22b927745fd967f44666fdfb2e64d718b7d9d6e8d355f81ec06",
                "md5": "505a657d5f6240d326466b9dce6a9e1c",
                "sha256": "891da62caefc16ae564b9bd7b2762369775c86c07e087928c1a7e15f2b460b83"
            },
            "downloads": -1,
            "filename": "readfish_tools-0.0.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "505a657d5f6240d326466b9dce6a9e1c",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1043388,
            "upload_time": "2023-07-31T13:28:11",
            "upload_time_iso_8601": "2023-07-31T13:28:11.392626Z",
            "url": "https://files.pythonhosted.org/packages/c6/90/8cfe050bc22b927745fd967f44666fdfb2e64d718b7d9d6e8d355f81ec06/readfish_tools-0.0.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f691bd5362300d24f894fc84d984d756b8d005b73d203b852945a122051359cc",
                "md5": "596f713f11e585874ea53d9948431e6a",
                "sha256": "e286bcafd828e43b19dd328a49c3ecf61d9bb787ef623e4af91601ff6e286078"
            },
            "downloads": -1,
            "filename": "readfish_tools-0.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "596f713f11e585874ea53d9948431e6a",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1052116,
            "upload_time": "2023-07-31T13:28:13",
            "upload_time_iso_8601": "2023-07-31T13:28:13.767738Z",
            "url": "https://files.pythonhosted.org/packages/f6/91/bd5362300d24f894fc84d984d756b8d005b73d203b852945a122051359cc/readfish_tools-0.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e0421070a02b3b07113c63510b6c8acad7a0daaf75e4dea4f7447ce0756f53aa",
                "md5": "57a093829dd01e7df8b36275b390d651",
                "sha256": "11f5eb8ffff05b51cc99ba0a5e2766870209d80de5857d50c3b1d0f3ce65e74c"
            },
            "downloads": -1,
            "filename": "readfish_tools-0.0.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "57a093829dd01e7df8b36275b390d651",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1063941,
            "upload_time": "2023-07-31T13:28:15",
            "upload_time_iso_8601": "2023-07-31T13:28:15.741952Z",
            "url": "https://files.pythonhosted.org/packages/e0/42/1070a02b3b07113c63510b6c8acad7a0daaf75e4dea4f7447ce0756f53aa/readfish_tools-0.0.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e959ff0ea8833f8ed84c994d86e1099d6fa4e6ac7257c7bd516533e210410010",
                "md5": "de7daad66630a9be7e7ab8efadfe96b6",
                "sha256": "b9c8f94b19e892f49defd4b5ac709754825954e42aa487e47954a6b336549244"
            },
            "downloads": -1,
            "filename": "readfish_tools-0.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "de7daad66630a9be7e7ab8efadfe96b6",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1036546,
            "upload_time": "2023-07-31T13:28:17",
            "upload_time_iso_8601": "2023-07-31T13:28:17.971866Z",
            "url": "https://files.pythonhosted.org/packages/e9/59/ff0ea8833f8ed84c994d86e1099d6fa4e6ac7257c7bd516533e210410010/readfish_tools-0.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5154a018a76267a87d09c872875cb25761c9ea42ee90236f3ba55b41824ec616",
                "md5": "754ebd27c5827f28ea634ff4be7d56f1",
                "sha256": "b6891454e7b441d73f8f66cf6448b0dc5e5d6de3171a95ad86896c4eb4bb81e8"
            },
            "downloads": -1,
            "filename": "readfish_tools-0.0.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "754ebd27c5827f28ea634ff4be7d56f1",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1044146,
            "upload_time": "2023-07-31T13:28:19",
            "upload_time_iso_8601": "2023-07-31T13:28:19.759805Z",
            "url": "https://files.pythonhosted.org/packages/51/54/a018a76267a87d09c872875cb25761c9ea42ee90236f3ba55b41824ec616/readfish_tools-0.0.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3c88d13d6a64b8460518cdf7aab30efbe215a6e219ef817e84880e7cfe617e29",
                "md5": "c934c60aa2724aef91be48ce412b056c",
                "sha256": "ecfda4bfc5859bd570925dbebb7935a36593fad5b35f062d00bed1781b73cb1d"
            },
            "downloads": -1,
            "filename": "readfish_tools-0.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c934c60aa2724aef91be48ce412b056c",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1052404,
            "upload_time": "2023-07-31T13:28:21",
            "upload_time_iso_8601": "2023-07-31T13:28:21.793559Z",
            "url": "https://files.pythonhosted.org/packages/3c/88/d13d6a64b8460518cdf7aab30efbe215a6e219ef817e84880e7cfe617e29/readfish_tools-0.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "897277ea8972182ea6ed24039965e296ed7decbede3409b5095ef4cc6ffc3dd2",
                "md5": "bbb36ec2fcd1dd23d99db03281e8d74f",
                "sha256": "4bf24cfced9ea5fb4cffa9cdcba45db76e03816698a6981c709d1e2ff724b2a7"
            },
            "downloads": -1,
            "filename": "readfish_tools-0.0.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "bbb36ec2fcd1dd23d99db03281e8d74f",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1064803,
            "upload_time": "2023-07-31T13:28:24",
            "upload_time_iso_8601": "2023-07-31T13:28:24.085034Z",
            "url": "https://files.pythonhosted.org/packages/89/72/77ea8972182ea6ed24039965e296ed7decbede3409b5095ef4cc6ffc3dd2/readfish_tools-0.0.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bb5393087797154d5c660722e248c6e44308de07d79435ecf76bf1e0fe44fb35",
                "md5": "926781af05adc0a8222391184876484a",
                "sha256": "9f541e58885c6c55390b5f5f893a38b947020ad96ebc4482a43d27bdcae884c9"
            },
            "downloads": -1,
            "filename": "readfish_tools-0.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "926781af05adc0a8222391184876484a",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1036515,
            "upload_time": "2023-07-31T13:28:25",
            "upload_time_iso_8601": "2023-07-31T13:28:25.929284Z",
            "url": "https://files.pythonhosted.org/packages/bb/53/93087797154d5c660722e248c6e44308de07d79435ecf76bf1e0fe44fb35/readfish_tools-0.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "53b6c44455c013a6ded95614e37429067a101c154c99256a3fdfb0f93dd002d4",
                "md5": "fb262f086c5dd78b960b2dd2d95f649d",
                "sha256": "ab90bd62a0baf76c8f189e8193b4c50b7e99bf006611863e87b1672f2379f400"
            },
            "downloads": -1,
            "filename": "readfish_tools-0.0.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "fb262f086c5dd78b960b2dd2d95f649d",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1043975,
            "upload_time": "2023-07-31T13:28:27",
            "upload_time_iso_8601": "2023-07-31T13:28:27.931631Z",
            "url": "https://files.pythonhosted.org/packages/53/b6/c44455c013a6ded95614e37429067a101c154c99256a3fdfb0f93dd002d4/readfish_tools-0.0.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "be6c9a7739f773c5d57cc9944864b7389d698b8b962b183972769458708f411d",
                "md5": "e965096f7d4385365e5e4046fd6ff1aa",
                "sha256": "b241b2914ecc0b7569761deae29d52918f9d1b832b11d09fed4d3dfebdccb02d"
            },
            "downloads": -1,
            "filename": "readfish_tools-0.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e965096f7d4385365e5e4046fd6ff1aa",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1052270,
            "upload_time": "2023-07-31T13:28:30",
            "upload_time_iso_8601": "2023-07-31T13:28:30.456802Z",
            "url": "https://files.pythonhosted.org/packages/be/6c/9a7739f773c5d57cc9944864b7389d698b8b962b183972769458708f411d/readfish_tools-0.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3ce04d0274c90efde6ed48441d3933ff492f194cbdb43487a2311653a2a42b46",
                "md5": "6b343157e9b01aa3bd79e12104e27042",
                "sha256": "64246b844070b71326f94a22c615149238ffd609d230c52cc48ff627a7cc55f7"
            },
            "downloads": -1,
            "filename": "readfish_tools-0.0.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "6b343157e9b01aa3bd79e12104e27042",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1064364,
            "upload_time": "2023-07-31T13:28:32",
            "upload_time_iso_8601": "2023-07-31T13:28:32.471536Z",
            "url": "https://files.pythonhosted.org/packages/3c/e0/4d0274c90efde6ed48441d3933ff492f194cbdb43487a2311653a2a42b46/readfish_tools-0.0.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "812917e3975da30c7a63301213baea30e94c720555af61a16bbd6108932abe4d",
                "md5": "13cfddfde7f38e2d2a375980ed20fba7",
                "sha256": "e871897d0dd155b2156936d984fedc2497440528d11d1fbd1faafbcb297c71f1"
            },
            "downloads": -1,
            "filename": "readfish_tools-0.0.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "13cfddfde7f38e2d2a375980ed20fba7",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 1036459,
            "upload_time": "2023-07-31T13:28:34",
            "upload_time_iso_8601": "2023-07-31T13:28:34.360303Z",
            "url": "https://files.pythonhosted.org/packages/81/29/17e3975da30c7a63301213baea30e94c720555af61a16bbd6108932abe4d/readfish_tools-0.0.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8c7300cab0838e460f4366a564d17ad4daa6cef54e6541ed7074d8a30997526f",
                "md5": "8583e786121e6412e7fea4ee9adc6e95",
                "sha256": "209a00d77ddb0c607997b426a0fc026fd4eefe2cdd78957e1b219f924622e459"
            },
            "downloads": -1,
            "filename": "readfish_tools-0.0.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "8583e786121e6412e7fea4ee9adc6e95",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 1043085,
            "upload_time": "2023-07-31T13:28:36",
            "upload_time_iso_8601": "2023-07-31T13:28:36.917056Z",
            "url": "https://files.pythonhosted.org/packages/8c/73/00cab0838e460f4366a564d17ad4daa6cef54e6541ed7074d8a30997526f/readfish_tools-0.0.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "66141b0fb53b442a8e4c1a184ad633f2669968cec01f026ca6340d36ae6eff4f",
                "md5": "95e16e42dac817bb92d163d8ca3bd55b",
                "sha256": "0ac5386cf6b364650acd16b0d489c042117b9f72d741c8d0dfdc36c10c19165b"
            },
            "downloads": -1,
            "filename": "readfish_tools-0.0.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "95e16e42dac817bb92d163d8ca3bd55b",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 1052168,
            "upload_time": "2023-07-31T13:28:39",
            "upload_time_iso_8601": "2023-07-31T13:28:39.780603Z",
            "url": "https://files.pythonhosted.org/packages/66/14/1b0fb53b442a8e4c1a184ad633f2669968cec01f026ca6340d36ae6eff4f/readfish_tools-0.0.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fd6f2ac9e454599863268959bf1236f4ea3490b604d1efa07a906f435a08bfec",
                "md5": "443ebb5ae4a67716da83e577a3c9ba2c",
                "sha256": "877a753abae58214a1a43d0d34a9139f005b32d5d7786ac14e6a6e137a3c1831"
            },
            "downloads": -1,
            "filename": "readfish_tools-0.0.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "443ebb5ae4a67716da83e577a3c9ba2c",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 1064055,
            "upload_time": "2023-07-31T13:28:42",
            "upload_time_iso_8601": "2023-07-31T13:28:42.704002Z",
            "url": "https://files.pythonhosted.org/packages/fd/6f/2ac9e454599863268959bf1236f4ea3490b604d1efa07a906f435a08bfec/readfish_tools-0.0.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f410d9bde9478ca459ae1a8505b63449399313c3f25ef5a3a4004f31b24354b0",
                "md5": "d361afdddf71325c1b95ea245d43a49a",
                "sha256": "6d1f9c15a318ec225386ded804efdfd57582660ba45b99c216090f598af8da84"
            },
            "downloads": -1,
            "filename": "readfish_tools-0.0.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "d361afdddf71325c1b95ea245d43a49a",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 1036620,
            "upload_time": "2023-07-31T13:28:45",
            "upload_time_iso_8601": "2023-07-31T13:28:45.625018Z",
            "url": "https://files.pythonhosted.org/packages/f4/10/d9bde9478ca459ae1a8505b63449399313c3f25ef5a3a4004f31b24354b0/readfish_tools-0.0.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ea8b6aad52a5c4ab7199803cfe952b63fb6fde132ce6046ac53d1d0aea991c52",
                "md5": "276e9e199815bcba3f30876b32712a5d",
                "sha256": "b67cfdf11369e0b22ce82b3387c3f70d4bf6283c655bf389d96995e199312d07"
            },
            "downloads": -1,
            "filename": "readfish_tools-0.0.1-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "276e9e199815bcba3f30876b32712a5d",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 1043822,
            "upload_time": "2023-07-31T13:28:48",
            "upload_time_iso_8601": "2023-07-31T13:28:48.346552Z",
            "url": "https://files.pythonhosted.org/packages/ea/8b/6aad52a5c4ab7199803cfe952b63fb6fde132ce6046ac53d1d0aea991c52/readfish_tools-0.0.1-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "dff99d40859dfae5ccb0251f73d80a69947cd8e67439c83dc910d1398c89b897",
                "md5": "81e57b8cdcaaafa6a279bccc5a4cef13",
                "sha256": "636a2de8a8fd0a53b0b87bcdf398e64869e71424a08093ffbeff42ee97c12999"
            },
            "downloads": -1,
            "filename": "readfish_tools-0.0.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "81e57b8cdcaaafa6a279bccc5a4cef13",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 1052198,
            "upload_time": "2023-07-31T13:28:50",
            "upload_time_iso_8601": "2023-07-31T13:28:50.277568Z",
            "url": "https://files.pythonhosted.org/packages/df/f9/9d40859dfae5ccb0251f73d80a69947cd8e67439c83dc910d1398c89b897/readfish_tools-0.0.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "12e05173bcef64feb182cbe78e1daa17c4ed6de84d4de3bd54407f9baa32aaf3",
                "md5": "230dced5ab342c5fd463015e3c726c9a",
                "sha256": "e87c132490633ba5d15dbdbeb7d0866bfdd6cba77f75165de0c4fe13c1e90e7d"
            },
            "downloads": -1,
            "filename": "readfish_tools-0.0.1-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "230dced5ab342c5fd463015e3c726c9a",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 1064583,
            "upload_time": "2023-07-31T13:28:52",
            "upload_time_iso_8601": "2023-07-31T13:28:52.205684Z",
            "url": "https://files.pythonhosted.org/packages/12/e0/5173bcef64feb182cbe78e1daa17c4ed6de84d4de3bd54407f9baa32aaf3/readfish_tools-0.0.1-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6ef952a31808aa06d27b31b96d493689647e3504c19c696297fe82464cf71b60",
                "md5": "b9bf7ae8479c7afb29006f6ecd50bd17",
                "sha256": "c6362d6053b152351b4697971ecab4c8937b395e8245f834e36775cd4ca53ec7"
            },
            "downloads": -1,
            "filename": "readfish_tools-0.0.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "b9bf7ae8479c7afb29006f6ecd50bd17",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 1036517,
            "upload_time": "2023-07-31T13:28:54",
            "upload_time_iso_8601": "2023-07-31T13:28:54.179157Z",
            "url": "https://files.pythonhosted.org/packages/6e/f9/52a31808aa06d27b31b96d493689647e3504c19c696297fe82464cf71b60/readfish_tools-0.0.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b274fdfc8ed6310a04d7e4e7a44adc2bfb9e42d830a556ff0b55a8af63e89250",
                "md5": "396533fab44a67873abc1fcfa92db01d",
                "sha256": "a87c56dcab50e46287d15fd92acc5f100e8701099b332f31261a196046ca7ea3"
            },
            "downloads": -1,
            "filename": "readfish_tools-0.0.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "396533fab44a67873abc1fcfa92db01d",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 1043086,
            "upload_time": "2023-07-31T13:28:56",
            "upload_time_iso_8601": "2023-07-31T13:28:56.664554Z",
            "url": "https://files.pythonhosted.org/packages/b2/74/fdfc8ed6310a04d7e4e7a44adc2bfb9e42d830a556ff0b55a8af63e89250/readfish_tools-0.0.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1ae51fa6a32dff7cd04eae1be569541c64d904c31acae3ec09134097c09d431f",
                "md5": "ba6cf99ea2e8592d18e3408011df43b7",
                "sha256": "fdda38bff0f4b286933a9483c099e6d830835d0112944d313ad4600198ba4cb9"
            },
            "downloads": -1,
            "filename": "readfish_tools-0.0.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ba6cf99ea2e8592d18e3408011df43b7",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 1052163,
            "upload_time": "2023-07-31T13:28:58",
            "upload_time_iso_8601": "2023-07-31T13:28:58.983353Z",
            "url": "https://files.pythonhosted.org/packages/1a/e5/1fa6a32dff7cd04eae1be569541c64d904c31acae3ec09134097c09d431f/readfish_tools-0.0.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1389ccd9bc7abecf392f5f5a678e25b19b6cc909d8cbb1b9fc8ba7201f274358",
                "md5": "f91a41ed3c55aafe8ea28baab0040b80",
                "sha256": "46e3f956c08138ea09e0e7ec79b607bd7eb5c7c9d621864a7f4d61a20004f5e6"
            },
            "downloads": -1,
            "filename": "readfish_tools-0.0.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "f91a41ed3c55aafe8ea28baab0040b80",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 1064048,
            "upload_time": "2023-07-31T13:29:00",
            "upload_time_iso_8601": "2023-07-31T13:29:00.927144Z",
            "url": "https://files.pythonhosted.org/packages/13/89/ccd9bc7abecf392f5f5a678e25b19b6cc909d8cbb1b9fc8ba7201f274358/readfish_tools-0.0.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4e8fab8bab856f19e6e0dc071f70fe308f254253658e801d0422fd31cb461b6e",
                "md5": "37d6c52eab042b17362ce27ee312c5e3",
                "sha256": "f418b728962e66409b039137afe5433b16d56da1deafdcd52e3dc9a50d4200a5"
            },
            "downloads": -1,
            "filename": "readfish_tools-0.0.1.tar.gz",
            "has_sig": false,
            "md5_digest": "37d6c52eab042b17362ce27ee312c5e3",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 64031,
            "upload_time": "2023-07-31T13:29:03",
            "upload_time_iso_8601": "2023-07-31T13:29:03.375740Z",
            "url": "https://files.pythonhosted.org/packages/4e/8f/ab8bab856f19e6e0dc071f70fe308f254253658e801d0422fd31cb461b6e/readfish_tools-0.0.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-07-31 13:29:03",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "adoni5",
    "github_project": "readfish-tools",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "readfish-tools"
}
        
Elapsed time: 0.13362s