SeqTools


NameSeqTools JSON
Version 1.4.1 PyPI version JSON
download
home_pageNone
SummaryA library for transparent transformation of indexable containers (lists, etc.)
upload_time2024-04-12 20:52:30
maintainerNone
docs_urlNone
authorNone
requires_python>=3.8
licenseMozilla Public License 2.0 (MPL 2.0)
keywords mapping lazy delayed pipeline processing
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            .. image:: https://badge.fury.io/py/SeqTools.svg
   :target: https://pypi.org/project/SeqTools
   :alt: PyPi package
.. image:: https://readthedocs.org/projects/seqtools-doc/badge
   :target: http://seqtools-doc.readthedocs.io
   :alt: Documentation

SeqTools
========

SeqTools extends the functionalities of itertools to indexable (list-like)
objects. Some of the provided functionalities include: element-wise function
mapping, reordering, reindexing, concatenation, joining, slicing, minibatching,
`etc <https://seqtools-doc.readthedocs.io/en/stable/reference.html>`_.

SeqTools functions implement **on-demand evaluation** under the hood:
operations and transformations are only applied to individual items when they
are actually accessed. A simple but powerful prefetch function is also provided
to eagerly evaluate elements in background threads or processes.

SeqTools originally targets data science, more precisely the data preprocessing
stages. Being aware of the experimental nature of this usage,
on-demand execution is made as transparent as possible by providing
**fault-tolerant functions and insightful error message**.

Example
-------

>>> def count_lines(filename):
...     with open(filename) as f:
...         return len(f.readlines())
>>>
>>> def count_words(filename):
...     with open(filename) as f:
...         return len(f.read().split())
>>>
>>> filenames = ["a.txt", "b.txt", "c.txt", "d.txt"]
>>> lc = seqtools.smap(count_lines, filenames)
>>> wc = seqtools.smap(count_words, filenames)
>>> counts = seqtools.collate([lc, wc])
>>> # no computations so far!
>>> lc[2]  # only evaluates on index 2
3
>>> counts[1]  # same for index 1
(1, 2)

Batteries included!
-------------------

The library comes with a set of functions to manipulate sequences:

.. |concatenate| image:: docs/_static/concatenate.svg

.. _concatenate: https://seqtools-doc.readthedocs.io/en/stable/reference.html#seqtools.concatenate

.. |batch| image:: docs/_static/batch.svg

.. _batch: https://seqtools-doc.readthedocs.io/en/stable/reference.html#seqtools.batch

.. |gather| image:: docs/_static/gather.svg

.. _gather: https://seqtools-doc.readthedocs.io/en/stable/reference.html#seqtools.gather

.. |prefetch| image:: docs/_static/prefetch.svg

.. _prefetch: https://seqtools-doc.readthedocs.io/en/stable/reference.html#seqtools.prefetch

.. |interleave| image:: docs/_static/interleave.svg

.. _interleave: https://seqtools-doc.readthedocs.io/en/stable/reference.html#seqtools.interleave

.. |uniter| image:: docs/_static/uniter.svg

.. _uniter: https://seqtools-doc.readthedocs.io/en/stable/reference.html#seqtools.uniter

+-------------------+---------------+
| `concatenate`_    | |concatenate| |
+-------------------+---------------+
| `batch`_          | |batch|       |
+-------------------+---------------+
| `gather`_         | |gather|      |
+-------------------+---------------+
| `prefetch`_       | |prefetch|    |
+-------------------+---------------+
| `interleave`_     | |interleave|  |
+-------------------+---------------+
| `uniter`_         | |uniter|      |
+-------------------+---------------+

and others (suggestions are also welcome).

Installation
------------

.. code-block:: bash

   pip install seqtools

Documentation
-------------

The documentation is hosted at `https://seqtools-doc.readthedocs.io
<https://seqtools-doc.readthedocs.io>`_.

Contributing and Support
------------------------

Use the `issue tracker <https://github.com/nlgranger/SeqTools/issues>`_
to request features, propose improvements or report issues. For questions
regarding usage, please send an `email
<mailto:3764009+nlgranger@users.noreply.github.com>`_.

Related libraries
-----------------

`Joblib <https://joblib.readthedocs.io>`_, proposes low-level functions with
many optimization settings to optimize pipelined transformations. This library
notably provides advanced caching mechanisms which are not the primary concern
of SeqTool. SeqTool uses a simpler container-oriented interface with multiple
utility functions in order to assist fast prototyping. On-demand evaluation is
its default behaviour and applies at all layers of a transformation pipeline.
Eager evaluation of elements in SeqTools does not break the list-like interface
and can be used in the middle of a transformation pipeline.

SeqTools is conceived to connect nicely to the data loading pipeline of Machine
Learning libraries such as PyTorch's `torch.utils.data
<http://pytorch.org/docs/master/data.html>`_ and `torchvision.transforms
<http://pytorch.org/docs/master/torchvision/transforms.html>`_ or Tensorflow's
`tf.data <https://www.tensorflow.org/guide/datasets>`_. The interface of these
libraries focuses on `iterators
<https://docs.python.org/3/library/stdtypes.html#iterator-types>`_ to access
transformed elements, contrary to SeqTools which also provides arbitrary reads
via indexing.

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "SeqTools",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": null,
    "keywords": "mapping, lazy, delayed, pipeline, processing",
    "author": null,
    "author_email": "Nicolas Granger <nicolas.granger.m@gmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/70/89/6b77db4509349dc0f36cf17fc02f0fba904983ac2ca7146d15508a498f22/seqtools-1.4.1.tar.gz",
    "platform": null,
    "description": ".. image:: https://badge.fury.io/py/SeqTools.svg\n   :target: https://pypi.org/project/SeqTools\n   :alt: PyPi package\n.. image:: https://readthedocs.org/projects/seqtools-doc/badge\n   :target: http://seqtools-doc.readthedocs.io\n   :alt: Documentation\n\nSeqTools\n========\n\nSeqTools extends the functionalities of itertools to indexable (list-like)\nobjects. Some of the provided functionalities include: element-wise function\nmapping, reordering, reindexing, concatenation, joining, slicing, minibatching,\n`etc <https://seqtools-doc.readthedocs.io/en/stable/reference.html>`_.\n\nSeqTools functions implement **on-demand evaluation** under the hood:\noperations and transformations are only applied to individual items when they\nare actually accessed. A simple but powerful prefetch function is also provided\nto eagerly evaluate elements in background threads or processes.\n\nSeqTools originally targets data science, more precisely the data preprocessing\nstages. Being aware of the experimental nature of this usage,\non-demand execution is made as transparent as possible by providing\n**fault-tolerant functions and insightful error message**.\n\nExample\n-------\n\n>>> def count_lines(filename):\n...     with open(filename) as f:\n...         return len(f.readlines())\n>>>\n>>> def count_words(filename):\n...     with open(filename) as f:\n...         return len(f.read().split())\n>>>\n>>> filenames = [\"a.txt\", \"b.txt\", \"c.txt\", \"d.txt\"]\n>>> lc = seqtools.smap(count_lines, filenames)\n>>> wc = seqtools.smap(count_words, filenames)\n>>> counts = seqtools.collate([lc, wc])\n>>> # no computations so far!\n>>> lc[2]  # only evaluates on index 2\n3\n>>> counts[1]  # same for index 1\n(1, 2)\n\nBatteries included!\n-------------------\n\nThe library comes with a set of functions to manipulate sequences:\n\n.. |concatenate| image:: docs/_static/concatenate.svg\n\n.. _concatenate: https://seqtools-doc.readthedocs.io/en/stable/reference.html#seqtools.concatenate\n\n.. |batch| image:: docs/_static/batch.svg\n\n.. _batch: https://seqtools-doc.readthedocs.io/en/stable/reference.html#seqtools.batch\n\n.. |gather| image:: docs/_static/gather.svg\n\n.. _gather: https://seqtools-doc.readthedocs.io/en/stable/reference.html#seqtools.gather\n\n.. |prefetch| image:: docs/_static/prefetch.svg\n\n.. _prefetch: https://seqtools-doc.readthedocs.io/en/stable/reference.html#seqtools.prefetch\n\n.. |interleave| image:: docs/_static/interleave.svg\n\n.. _interleave: https://seqtools-doc.readthedocs.io/en/stable/reference.html#seqtools.interleave\n\n.. |uniter| image:: docs/_static/uniter.svg\n\n.. _uniter: https://seqtools-doc.readthedocs.io/en/stable/reference.html#seqtools.uniter\n\n+-------------------+---------------+\n| `concatenate`_    | |concatenate| |\n+-------------------+---------------+\n| `batch`_          | |batch|       |\n+-------------------+---------------+\n| `gather`_         | |gather|      |\n+-------------------+---------------+\n| `prefetch`_       | |prefetch|    |\n+-------------------+---------------+\n| `interleave`_     | |interleave|  |\n+-------------------+---------------+\n| `uniter`_         | |uniter|      |\n+-------------------+---------------+\n\nand others (suggestions are also welcome).\n\nInstallation\n------------\n\n.. code-block:: bash\n\n   pip install seqtools\n\nDocumentation\n-------------\n\nThe documentation is hosted at `https://seqtools-doc.readthedocs.io\n<https://seqtools-doc.readthedocs.io>`_.\n\nContributing and Support\n------------------------\n\nUse the `issue tracker <https://github.com/nlgranger/SeqTools/issues>`_\nto request features, propose improvements or report issues. For questions\nregarding usage, please send an `email\n<mailto:3764009+nlgranger@users.noreply.github.com>`_.\n\nRelated libraries\n-----------------\n\n`Joblib <https://joblib.readthedocs.io>`_, proposes low-level functions with\nmany optimization settings to optimize pipelined transformations. This library\nnotably provides advanced caching mechanisms which are not the primary concern\nof SeqTool. SeqTool uses a simpler container-oriented interface with multiple\nutility functions in order to assist fast prototyping. On-demand evaluation is\nits default behaviour and applies at all layers of a transformation pipeline.\nEager evaluation of elements in SeqTools does not break the list-like interface\nand can be used in the middle of a transformation pipeline.\n\nSeqTools is conceived to connect nicely to the data loading pipeline of Machine\nLearning libraries such as PyTorch's `torch.utils.data\n<http://pytorch.org/docs/master/data.html>`_ and `torchvision.transforms\n<http://pytorch.org/docs/master/torchvision/transforms.html>`_ or Tensorflow's\n`tf.data <https://www.tensorflow.org/guide/datasets>`_. The interface of these\nlibraries focuses on `iterators\n<https://docs.python.org/3/library/stdtypes.html#iterator-types>`_ to access\ntransformed elements, contrary to SeqTools which also provides arbitrary reads\nvia indexing.\n",
    "bugtrack_url": null,
    "license": "Mozilla Public License 2.0 (MPL 2.0)",
    "summary": "A library for transparent transformation of indexable containers (lists, etc.)",
    "version": "1.4.1",
    "project_urls": {
        "Documentation": "http://seqtools-doc.readthedocs.io",
        "PyPi": "https://pypi.org/project/SeqTools",
        "Repository": "https://github.com/nlgranger/SeqTools"
    },
    "split_keywords": [
        "mapping",
        " lazy",
        " delayed",
        " pipeline",
        " processing"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "89f7a12c1a6d65d1654e7ed3beed042397307c383bac6c67e51f1c0ea2ec359b",
                "md5": "dc0d8425ebc0b5a372becd9ed5801fc3",
                "sha256": "b4449b210b7858f1fe16702afebfcd5ba7b465c6c4bc8ca69745728cb21d0f2a"
            },
            "downloads": -1,
            "filename": "SeqTools-1.4.1-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "dc0d8425ebc0b5a372becd9ed5801fc3",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 34252,
            "upload_time": "2024-04-12T20:52:00",
            "upload_time_iso_8601": "2024-04-12T20:52:00.476310Z",
            "url": "https://files.pythonhosted.org/packages/89/f7/a12c1a6d65d1654e7ed3beed042397307c383bac6c67e51f1c0ea2ec359b/SeqTools-1.4.1-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e06faae9c87203579beaa0175801d6a7c5e12dcfc4667fde7881409e2f915c47",
                "md5": "7b2d506d7005edbac23a8f2bbbc38c15",
                "sha256": "357ed0b1bb0537dafa65be3970ad49d4fcbef160d45188fe22626dbccd42b55c"
            },
            "downloads": -1,
            "filename": "SeqTools-1.4.1-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "7b2d506d7005edbac23a8f2bbbc38c15",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 34655,
            "upload_time": "2024-04-12T20:52:08",
            "upload_time_iso_8601": "2024-04-12T20:52:08.000134Z",
            "url": "https://files.pythonhosted.org/packages/e0/6f/aae9c87203579beaa0175801d6a7c5e12dcfc4667fde7881409e2f915c47/SeqTools-1.4.1-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f820dcadcb4915ad072b086e6d60d3efeda233b0e31c048052de67217bb9181e",
                "md5": "3f704ebfe1f11a22ab56a2ee5adf7464",
                "sha256": "7c83cadda3d4b4ec278b661895b096f54aa8b183deea1999f7b2c6124456d5cc"
            },
            "downloads": -1,
            "filename": "SeqTools-1.4.1-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3f704ebfe1f11a22ab56a2ee5adf7464",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 44616,
            "upload_time": "2024-04-12T20:52:09",
            "upload_time_iso_8601": "2024-04-12T20:52:09.987066Z",
            "url": "https://files.pythonhosted.org/packages/f8/20/dcadcb4915ad072b086e6d60d3efeda233b0e31c048052de67217bb9181e/SeqTools-1.4.1-cp310-cp310-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": "047ab21ac49463d2f543c4b4703702824d5712ebb38c7f2e154e70b2e0a792f7",
                "md5": "0dfde2ee6f5ff276d3a9ae684d40d4c0",
                "sha256": "94a589f13e9a69c71448ff700c6808f52703b2e39c0466eb587a37bcf6312dd9"
            },
            "downloads": -1,
            "filename": "SeqTools-1.4.1-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "0dfde2ee6f5ff276d3a9ae684d40d4c0",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 37330,
            "upload_time": "2024-04-12T20:52:11",
            "upload_time_iso_8601": "2024-04-12T20:52:11.232283Z",
            "url": "https://files.pythonhosted.org/packages/04/7a/b21ac49463d2f543c4b4703702824d5712ebb38c7f2e154e70b2e0a792f7/SeqTools-1.4.1-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8d06b3e48b1990b3b0c26209a9dd10ea2dbb25ed6100311fec8df57ec6aadb97",
                "md5": "0967214654fb5642622b4c502bee43ce",
                "sha256": "0747ec4c92759af24ee4295fa0160a132b4d668b29d10eea154ca4a034c4937e"
            },
            "downloads": -1,
            "filename": "SeqTools-1.4.1-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0967214654fb5642622b4c502bee43ce",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 34252,
            "upload_time": "2024-04-12T20:52:12",
            "upload_time_iso_8601": "2024-04-12T20:52:12.201133Z",
            "url": "https://files.pythonhosted.org/packages/8d/06/b3e48b1990b3b0c26209a9dd10ea2dbb25ed6100311fec8df57ec6aadb97/SeqTools-1.4.1-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f42cc07a4fdaef703f809fe43f8909ef21b443f5b915ee21a7569cc47688ef77",
                "md5": "7b9e7c76062919a5bb1cd2368fa15f98",
                "sha256": "eb885ed072b8f8a5b09d2e5bb409dbede4b8ba1ca90cb9f39806fa3d2f56859c"
            },
            "downloads": -1,
            "filename": "SeqTools-1.4.1-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "7b9e7c76062919a5bb1cd2368fa15f98",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 34657,
            "upload_time": "2024-04-12T20:52:13",
            "upload_time_iso_8601": "2024-04-12T20:52:13.286812Z",
            "url": "https://files.pythonhosted.org/packages/f4/2c/c07a4fdaef703f809fe43f8909ef21b443f5b915ee21a7569cc47688ef77/SeqTools-1.4.1-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5c1e827215d333c4c9751909fd34fc001b0a6e91093cc4a849fd2afae59d5355",
                "md5": "3cc07557e6c9526219454edb8bef8bbd",
                "sha256": "1f02ed5d0733d9626a253d54db90211baaec607be5dcfe97ee36bd85ba2d9a21"
            },
            "downloads": -1,
            "filename": "SeqTools-1.4.1-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3cc07557e6c9526219454edb8bef8bbd",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 44682,
            "upload_time": "2024-04-12T20:52:14",
            "upload_time_iso_8601": "2024-04-12T20:52:14.960830Z",
            "url": "https://files.pythonhosted.org/packages/5c/1e/827215d333c4c9751909fd34fc001b0a6e91093cc4a849fd2afae59d5355/SeqTools-1.4.1-cp311-cp311-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": "bc1f26b908eaa84fcc967f176c825a30c05ac7d57b2437717857deb1501eae19",
                "md5": "510570101a7d6603c12487385698f099",
                "sha256": "2fa10c7676d5af5995a2c040905425594ba896ceb94d579d7ebd4ba59ecec6a6"
            },
            "downloads": -1,
            "filename": "SeqTools-1.4.1-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "510570101a7d6603c12487385698f099",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 37331,
            "upload_time": "2024-04-12T20:52:16",
            "upload_time_iso_8601": "2024-04-12T20:52:16.133016Z",
            "url": "https://files.pythonhosted.org/packages/bc/1f/26b908eaa84fcc967f176c825a30c05ac7d57b2437717857deb1501eae19/SeqTools-1.4.1-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "596c59c3cca10ad3b813edfef4384b9f018cdfa9127379ea04c9871cdd8108a8",
                "md5": "0b67cc9091a2994f3c32be1ccedaf798",
                "sha256": "a7af717e314c923a8c2d8035c80f09b451bbab02aebd2f8d78c215a054a12f08"
            },
            "downloads": -1,
            "filename": "SeqTools-1.4.1-cp312-cp312-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0b67cc9091a2994f3c32be1ccedaf798",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 34293,
            "upload_time": "2024-04-12T20:52:17",
            "upload_time_iso_8601": "2024-04-12T20:52:17.545848Z",
            "url": "https://files.pythonhosted.org/packages/59/6c/59c3cca10ad3b813edfef4384b9f018cdfa9127379ea04c9871cdd8108a8/SeqTools-1.4.1-cp312-cp312-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "dea035ac7b74841c7a7d2c52da14731933306e736f0f5cdd2c2fe1567f4752ec",
                "md5": "884b69430fcd958482713be48e972c1f",
                "sha256": "1e3f0d349bc3e4fac5a5e2517da642c8b2870dd6b033e6d5968f4c347ed90dc0"
            },
            "downloads": -1,
            "filename": "SeqTools-1.4.1-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "884b69430fcd958482713be48e972c1f",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 34670,
            "upload_time": "2024-04-12T20:52:19",
            "upload_time_iso_8601": "2024-04-12T20:52:19.971369Z",
            "url": "https://files.pythonhosted.org/packages/de/a0/35ac7b74841c7a7d2c52da14731933306e736f0f5cdd2c2fe1567f4752ec/SeqTools-1.4.1-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "81ba30d5edddd38a156e63aace9736ba94edb751c85ea735db41fb1122a83974",
                "md5": "0d8eabc20402b0a4ade30ca6d1c9d5b5",
                "sha256": "a92d7c834cc023b8fa6f1ea94681cf6e8eb701d7cbb194c294a1d7725b882e3e"
            },
            "downloads": -1,
            "filename": "SeqTools-1.4.1-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0d8eabc20402b0a4ade30ca6d1c9d5b5",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 45643,
            "upload_time": "2024-04-12T20:52:21",
            "upload_time_iso_8601": "2024-04-12T20:52:21.092844Z",
            "url": "https://files.pythonhosted.org/packages/81/ba/30d5edddd38a156e63aace9736ba94edb751c85ea735db41fb1122a83974/SeqTools-1.4.1-cp312-cp312-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": "9dee34c6ee79832307b9adc29cce58e591233788abfba05ad9ccd0c83282d328",
                "md5": "eec5b2ac1fc7fd0551c5bb22da6f5516",
                "sha256": "2e345374a64f69ba6b485f382e2655a5023863d2910440fb0693789edfd51c08"
            },
            "downloads": -1,
            "filename": "SeqTools-1.4.1-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "eec5b2ac1fc7fd0551c5bb22da6f5516",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 37381,
            "upload_time": "2024-04-12T20:52:22",
            "upload_time_iso_8601": "2024-04-12T20:52:22.901310Z",
            "url": "https://files.pythonhosted.org/packages/9d/ee/34c6ee79832307b9adc29cce58e591233788abfba05ad9ccd0c83282d328/SeqTools-1.4.1-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "be079c2344eef34cf3dc5c514c36db899490e52a4d4b6f298dad7c4b9e104132",
                "md5": "f299349142efbe2ff246e7f7ff5caf23",
                "sha256": "0f7f947d592f7d1692b51d1670f35ce4f5b1631217a1afd2473214400bfd3ba9"
            },
            "downloads": -1,
            "filename": "SeqTools-1.4.1-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f299349142efbe2ff246e7f7ff5caf23",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 34248,
            "upload_time": "2024-04-12T20:52:24",
            "upload_time_iso_8601": "2024-04-12T20:52:24.658200Z",
            "url": "https://files.pythonhosted.org/packages/be/07/9c2344eef34cf3dc5c514c36db899490e52a4d4b6f298dad7c4b9e104132/SeqTools-1.4.1-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "eff8684288214767608fe3e27c96e2c703f8e2b82e537f86373200f68917d863",
                "md5": "ccd9a7c133fbc6bfee5437e9b76173a2",
                "sha256": "1a304f1fb86dbb0f7fb233d01a2387165087009636f3c46a57339e70edc4565b"
            },
            "downloads": -1,
            "filename": "SeqTools-1.4.1-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "ccd9a7c133fbc6bfee5437e9b76173a2",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 34642,
            "upload_time": "2024-04-12T20:52:26",
            "upload_time_iso_8601": "2024-04-12T20:52:26.248980Z",
            "url": "https://files.pythonhosted.org/packages/ef/f8/684288214767608fe3e27c96e2c703f8e2b82e537f86373200f68917d863/SeqTools-1.4.1-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "12c94fe854d9deef333a7fe2904cf2625773bb51db2006830e1ebe0a9188ccc6",
                "md5": "8b9e1f15b2ea8d35a4aaec7ae253c2e4",
                "sha256": "f8ba54294fb9271b4f0e3027d33623416681f3a5db2e4b20aa8578e0b8929c1f"
            },
            "downloads": -1,
            "filename": "SeqTools-1.4.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8b9e1f15b2ea8d35a4aaec7ae253c2e4",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 44461,
            "upload_time": "2024-04-12T20:52:27",
            "upload_time_iso_8601": "2024-04-12T20:52:27.270588Z",
            "url": "https://files.pythonhosted.org/packages/12/c9/4fe854d9deef333a7fe2904cf2625773bb51db2006830e1ebe0a9188ccc6/SeqTools-1.4.1-cp39-cp39-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": "482fedc35e25bc723edee5cf0fbca5997efa4fbc392bb1d27e77422aed14d5c8",
                "md5": "703fec970382930801c21645ff89347f",
                "sha256": "8e10f13caf9ae482fd1ae52819d89b6722536e7da0e15560eb54191c2c57cd9e"
            },
            "downloads": -1,
            "filename": "SeqTools-1.4.1-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "703fec970382930801c21645ff89347f",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 37326,
            "upload_time": "2024-04-12T20:52:28",
            "upload_time_iso_8601": "2024-04-12T20:52:28.309620Z",
            "url": "https://files.pythonhosted.org/packages/48/2f/edc35e25bc723edee5cf0fbca5997efa4fbc392bb1d27e77422aed14d5c8/SeqTools-1.4.1-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "70896b77db4509349dc0f36cf17fc02f0fba904983ac2ca7146d15508a498f22",
                "md5": "981cd5df5b3d5d0fc6cf1d2ab34dcf24",
                "sha256": "615c4e23411c9fbc7351c91454607056add493b5825e821a3e7d72fbae6705e0"
            },
            "downloads": -1,
            "filename": "seqtools-1.4.1.tar.gz",
            "has_sig": false,
            "md5_digest": "981cd5df5b3d5d0fc6cf1d2ab34dcf24",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 595981,
            "upload_time": "2024-04-12T20:52:30",
            "upload_time_iso_8601": "2024-04-12T20:52:30.033964Z",
            "url": "https://files.pythonhosted.org/packages/70/89/6b77db4509349dc0f36cf17fc02f0fba904983ac2ca7146d15508a498f22/seqtools-1.4.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-04-12 20:52:30",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "nlgranger",
    "github_project": "SeqTools",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "seqtools"
}
        
Elapsed time: 0.22862s