columnize


Namecolumnize JSON
Version 0.3.11 PyPI version JSON
download
home_pagehttps://github.com/rocky/pycolumnize
SummaryFormat a simple (i.e. not nested) list into aligned columns.
upload_time2022-03-12 01:17:02
maintainer
docs_urlNone
authorRocky Bernstein
requires_python
licensePSF2
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage
            |Pypi Installs| |Supported Python Versions|

|packagestatus|

In showing a long lists, sometimes one would prefer to see the value
arranged aligned in columns. Some examples include listing methods of an
object, listing debugger commands, or showing a numeric array with data
aligned.

This is a Python module to format a simple (i.e. not nested) list into
aligned columns. A string with embedded newline characters is returned.

Setup
-----



    $ python
    >>> import columnize

With String data
----------------

Each column is only as wide as necessary. By default, columns are
separated by two spaces; one was not legible enough. Set *colsep* to
adjust the string separate columns. Set *displaywidth* to set the line
width.

..

    >>> g = ('bibrons', 'golden', 'madascar', 'leopard', 'mourning', 'suras', 'tokay')
    >>> print(columnize.columnize(g, displaywidth=15))
    bibrons   suras
    golden    tokay
    madascar
    leopard
    mourning

    >>> print(columnize.columnize(g, displaywidth=19, colsep=' | '))
    bibrons  | mourning
    golden   | suras
    madascar | tokay
    leopard

    >>> print(columnize.columnize(g, displaywidth=18, colsep=' | ', ljust=False))
    bibrons | suras
     golden | tokay
    madascar
     leopard

Normally, consecutive items go down from the top to bottom from the
left-most column to the right-most. If *arrange\_vertical* is set false,
consecutive items will go across, left to right, top to bottom.

With numeric data
-----------------

..

    >>> print(columnize.columnize(['1', '2', '3', '4'], displaywidth=6)) # => '1  3\n2  4\n'
    1  3
    2  4

    >>> print(columnize.columnize(list(range(1,6)), displaywidth=8))
    1  3  5
    2  4

By default entries are left justified:

..

    >>>  print(columnize.columnize(list(range(1,16)), displaywidth=10))

    1  6   11
    2  7   12
    3  8   13
    4  9   14
    5  10  15

but you can change that with *ljust* or if *arrange\_array* is set to
*True*:

..

    >>>  print(columnize.columnize(list(range(1,16)), displaywidth=10, ljust=False))
    1   6  11
    2   7  12
    3   8  13
    4   9  14
    5  10  15

    >>> print(columnize.columnize(list(range(1,5)), opts={'arrange_array':True, 'displaywidth':6}))
    [1, 2
     3, 4]

Credits
-------

This module (essentially one function) was adapted from a private method
of the same name from Python's
`cmd <http://docs.python.org/library/cmd.html>`__ module. Some
adjustments and generalizations have been made.

pycolumnize for enterprise
==========================

Available as part of the Tidelift Subscription.

The maintainers of pycolumnize and thousands of other packages are working with Tidelift to deliver commercial support and maintenance for the open source dependencies you use to build your applications. Save time, reduce risk, and improve code health, while paying the maintainers of the exact dependencies you use. `Learn more. <https://tidelift.com/subscription/pkg/pypi-columnize?utm_source=pypi-columnize&utm_medium=referral&utm_campaign=enterprise&utm_term=repo>`_

Security contact information
============================

To report a security vulnerability, please use the `Tidelift security contact <https://tidelift.com/security>`_ and Tidelift will coordinate the fix and disclosure.

Other stuff
-----------

Authors: Rocky Bernstein rb@dustyfeet.com

License: MIT

.. |Supported Python Versions| image:: https://img.shields.io/pypi/pyversions/columnize.svg :target: https://pypi.python.org/pypi/columnize/
.. |Pypi Installs| image:: https://pepy.tech/badge/columnize
.. |packagestatus| image:: https://repology.org/badge/vertical-allrepos/python:columnize.svg :target: https://repology.org/project/python:columnize/versions




            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/rocky/pycolumnize",
    "name": "columnize",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "",
    "author": "Rocky Bernstein",
    "author_email": "rocky@gnu.org",
    "download_url": "https://files.pythonhosted.org/packages/b0/ab/47c68ccca6052e18ccce562e6af92404b08cb2715edd9e9da31f4118cbcd/columnize-0.3.11.tar.gz",
    "platform": null,
    "description": "|Pypi Installs| |Supported Python Versions|\n\n|packagestatus|\n\nIn showing a long lists, sometimes one would prefer to see the value\narranged aligned in columns. Some examples include listing methods of an\nobject, listing debugger commands, or showing a numeric array with data\naligned.\n\nThis is a Python module to format a simple (i.e. not nested) list into\naligned columns. A string with embedded newline characters is returned.\n\nSetup\n-----\n\n\n\n    $ python\n    >>> import columnize\n\nWith String data\n----------------\n\nEach column is only as wide as necessary. By default, columns are\nseparated by two spaces; one was not legible enough. Set *colsep* to\nadjust the string separate columns. Set *displaywidth* to set the line\nwidth.\n\n..\n\n    >>> g = ('bibrons', 'golden', 'madascar', 'leopard', 'mourning', 'suras', 'tokay')\n    >>> print(columnize.columnize(g, displaywidth=15))\n    bibrons   suras\n    golden    tokay\n    madascar\n    leopard\n    mourning\n\n    >>> print(columnize.columnize(g, displaywidth=19, colsep=' | '))\n    bibrons  | mourning\n    golden   | suras\n    madascar | tokay\n    leopard\n\n    >>> print(columnize.columnize(g, displaywidth=18, colsep=' | ', ljust=False))\n    bibrons | suras\n     golden | tokay\n    madascar\n     leopard\n\nNormally, consecutive items go down from the top to bottom from the\nleft-most column to the right-most. If *arrange\\_vertical* is set false,\nconsecutive items will go across, left to right, top to bottom.\n\nWith numeric data\n-----------------\n\n..\n\n    >>> print(columnize.columnize(['1', '2', '3', '4'], displaywidth=6)) # => '1  3\\n2  4\\n'\n    1  3\n    2  4\n\n    >>> print(columnize.columnize(list(range(1,6)), displaywidth=8))\n    1  3  5\n    2  4\n\nBy default entries are left justified:\n\n..\n\n    >>>  print(columnize.columnize(list(range(1,16)), displaywidth=10))\n\n    1  6   11\n    2  7   12\n    3  8   13\n    4  9   14\n    5  10  15\n\nbut you can change that with *ljust* or if *arrange\\_array* is set to\n*True*:\n\n..\n\n    >>>  print(columnize.columnize(list(range(1,16)), displaywidth=10, ljust=False))\n    1   6  11\n    2   7  12\n    3   8  13\n    4   9  14\n    5  10  15\n\n    >>> print(columnize.columnize(list(range(1,5)), opts={'arrange_array':True, 'displaywidth':6}))\n    [1, 2\n     3, 4]\n\nCredits\n-------\n\nThis module (essentially one function) was adapted from a private method\nof the same name from Python's\n`cmd <http://docs.python.org/library/cmd.html>`__ module. Some\nadjustments and generalizations have been made.\n\npycolumnize for enterprise\n==========================\n\nAvailable as part of the Tidelift Subscription.\n\nThe maintainers of pycolumnize and thousands of other packages are working with Tidelift to deliver commercial support and maintenance for the open source dependencies you use to build your applications. Save time, reduce risk, and improve code health, while paying the maintainers of the exact dependencies you use. `Learn more. <https://tidelift.com/subscription/pkg/pypi-columnize?utm_source=pypi-columnize&utm_medium=referral&utm_campaign=enterprise&utm_term=repo>`_\n\nSecurity contact information\n============================\n\nTo report a security vulnerability, please use the `Tidelift security contact <https://tidelift.com/security>`_ and Tidelift will coordinate the fix and disclosure.\n\nOther stuff\n-----------\n\nAuthors: Rocky Bernstein rb@dustyfeet.com\n\nLicense: MIT\n\n.. |Supported Python Versions| image:: https://img.shields.io/pypi/pyversions/columnize.svg :target: https://pypi.python.org/pypi/columnize/\n.. |Pypi Installs| image:: https://pepy.tech/badge/columnize\n.. |packagestatus| image:: https://repology.org/badge/vertical-allrepos/python:columnize.svg :target: https://repology.org/project/python:columnize/versions\n\n\n\n",
    "bugtrack_url": null,
    "license": "PSF2",
    "summary": "Format a simple (i.e. not nested) list into aligned columns.",
    "version": "0.3.11",
    "project_urls": {
        "Homepage": "https://github.com/rocky/pycolumnize"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "65462380ea8b3c99a61bc9d80f0e341d52a1ae32c0b7464bf152ddffc266ef40",
                "md5": "90dbc18af5bfe427d9849a2c1766b9ae",
                "sha256": "1d16a58a7fce2ec7b716e7516736cf8351bcd66583482aa542ea025244b73ae6"
            },
            "downloads": -1,
            "filename": "columnize-0.3.11-py2.4.egg",
            "has_sig": false,
            "md5_digest": "90dbc18af5bfe427d9849a2c1766b9ae",
            "packagetype": "bdist_egg",
            "python_version": "0.3.11",
            "requires_python": null,
            "size": 10976,
            "upload_time": "2022-03-12T01:15:40",
            "upload_time_iso_8601": "2022-03-12T01:15:40.097723Z",
            "url": "https://files.pythonhosted.org/packages/65/46/2380ea8b3c99a61bc9d80f0e341d52a1ae32c0b7464bf152ddffc266ef40/columnize-0.3.11-py2.4.egg",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "af7eb6a5ba02861ebb9cc29e3d5550ab290e0cb9ebceb5b99d83cfe158b3d184",
                "md5": "b8c24ec235023e92b301339349ece72d",
                "sha256": "92bbac9ec7bca0f97eb011a3b15a9703dd02a28bbcc4fda7d9d99078af68325e"
            },
            "downloads": -1,
            "filename": "columnize-0.3.11-py2.5.egg",
            "has_sig": false,
            "md5_digest": "b8c24ec235023e92b301339349ece72d",
            "packagetype": "bdist_egg",
            "python_version": "0.3.11",
            "requires_python": null,
            "size": 10947,
            "upload_time": "2022-03-12T01:15:42",
            "upload_time_iso_8601": "2022-03-12T01:15:42.348677Z",
            "url": "https://files.pythonhosted.org/packages/af/7e/b6a5ba02861ebb9cc29e3d5550ab290e0cb9ebceb5b99d83cfe158b3d184/columnize-0.3.11-py2.5.egg",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "01e76630dac1d79a53aa5f165e9bb2586bc2f0fbdb97480318515f94544dcf30",
                "md5": "ac285d8d3c08aeaad7cf974c5bfcc901",
                "sha256": "23db4ca4ed6a27c3a0b12407d1590729876a8983b625adcf3e1b6bf18b54e8d5"
            },
            "downloads": -1,
            "filename": "columnize-0.3.11-py2.6.egg",
            "has_sig": false,
            "md5_digest": "ac285d8d3c08aeaad7cf974c5bfcc901",
            "packagetype": "bdist_egg",
            "python_version": "0.3.11",
            "requires_python": null,
            "size": 10933,
            "upload_time": "2022-03-12T01:15:43",
            "upload_time_iso_8601": "2022-03-12T01:15:43.968157Z",
            "url": "https://files.pythonhosted.org/packages/01/e7/6630dac1d79a53aa5f165e9bb2586bc2f0fbdb97480318515f94544dcf30/columnize-0.3.11-py2.6.egg",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d66f4e875ac31ba2156466277ca44247d2295061d2b1cdc99d67892ea03f379a",
                "md5": "214b89f0138071bb8dbcc4908651a0bc",
                "sha256": "0fe17409dbb30a3534806a69ed0540467b31276689e10383b3c989b66014666e"
            },
            "downloads": -1,
            "filename": "columnize-0.3.11-py2.7.egg",
            "has_sig": false,
            "md5_digest": "214b89f0138071bb8dbcc4908651a0bc",
            "packagetype": "bdist_egg",
            "python_version": "0.3.11",
            "requires_python": null,
            "size": 10873,
            "upload_time": "2022-03-12T01:15:45",
            "upload_time_iso_8601": "2022-03-12T01:15:45.307727Z",
            "url": "https://files.pythonhosted.org/packages/d6/6f/4e875ac31ba2156466277ca44247d2295061d2b1cdc99d67892ea03f379a/columnize-0.3.11-py2.7.egg",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8a3fd47e953bcc8ff5b8b5f6ddcf71b2fc5d9083c54fa8ccbe76883cf8a2bf4c",
                "md5": "e97b7972b01f7e05eeacaa8540077359",
                "sha256": "e4f5f53eadaddfa7bd57150d6f0ed8c7e704b82b196b17290f97fc1f5422bb54"
            },
            "downloads": -1,
            "filename": "columnize-0.3.11-py2-none-any.whl",
            "has_sig": false,
            "md5_digest": "e97b7972b01f7e05eeacaa8540077359",
            "packagetype": "bdist_wheel",
            "python_version": "py2",
            "requires_python": null,
            "size": 7712,
            "upload_time": "2022-03-12T01:15:36",
            "upload_time_iso_8601": "2022-03-12T01:15:36.279539Z",
            "url": "https://files.pythonhosted.org/packages/8a/3f/d47e953bcc8ff5b8b5f6ddcf71b2fc5d9083c54fa8ccbe76883cf8a2bf4c/columnize-0.3.11-py2-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "79dfd7687e75f31cc025e0ee3e1b382461bb7fbd8e2f9472f50a35c284fa648b",
                "md5": "ef3ae2f7a7f7ef044a4619588db4e67a",
                "sha256": "f5e68fea1f15a546dcaea846a167f48a590954788bb556571ada89f9d7b8ddcc"
            },
            "downloads": -1,
            "filename": "columnize-0.3.11-py3.10.egg",
            "has_sig": false,
            "md5_digest": "ef3ae2f7a7f7ef044a4619588db4e67a",
            "packagetype": "bdist_egg",
            "python_version": "0.3.11",
            "requires_python": null,
            "size": 10907,
            "upload_time": "2022-03-12T01:15:46",
            "upload_time_iso_8601": "2022-03-12T01:15:46.428599Z",
            "url": "https://files.pythonhosted.org/packages/79/df/d7687e75f31cc025e0ee3e1b382461bb7fbd8e2f9472f50a35c284fa648b/columnize-0.3.11-py3.10.egg",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ed6a1ce9762634a7db08a1171ae2e2c9e63dab7ad07b997bdcdeb1723233d860",
                "md5": "82d972608bde267707bbb7203ac8211d",
                "sha256": "b723c3791672b69c859e4e32a6fd2a1958a05d94874a2d2fb46c87bc8df4e817"
            },
            "downloads": -1,
            "filename": "columnize-0.3.11-py3.2.egg",
            "has_sig": false,
            "md5_digest": "82d972608bde267707bbb7203ac8211d",
            "packagetype": "bdist_egg",
            "python_version": "0.3.11",
            "requires_python": null,
            "size": 11064,
            "upload_time": "2022-03-12T01:15:48",
            "upload_time_iso_8601": "2022-03-12T01:15:48.435010Z",
            "url": "https://files.pythonhosted.org/packages/ed/6a/1ce9762634a7db08a1171ae2e2c9e63dab7ad07b997bdcdeb1723233d860/columnize-0.3.11-py3.2.egg",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "211925987111865f6ffcfe200df2c26cc8bf2efa8a6ef5ac64f75c419cd02789",
                "md5": "b39a783ad6c975d4538dd77ccbab1f90",
                "sha256": "d40e31904ba0d8c024f48dc85a0aaa4f9ef19cb72238c44d93ba23873f379bd4"
            },
            "downloads": -1,
            "filename": "columnize-0.3.11-py3.3.egg",
            "has_sig": false,
            "md5_digest": "b39a783ad6c975d4538dd77ccbab1f90",
            "packagetype": "bdist_egg",
            "python_version": "0.3.11",
            "requires_python": null,
            "size": 11131,
            "upload_time": "2022-03-12T01:15:49",
            "upload_time_iso_8601": "2022-03-12T01:15:49.817339Z",
            "url": "https://files.pythonhosted.org/packages/21/19/25987111865f6ffcfe200df2c26cc8bf2efa8a6ef5ac64f75c419cd02789/columnize-0.3.11-py3.3.egg",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7fbcd1dff951159ef3e0cc831dfff54a0e2dff36d480f081237367736f9a088c",
                "md5": "74e55d85b17d882ec25d3d4fb408e86a",
                "sha256": "477c472c4beec17aa20a705def9b243b1846584907eb8671330c258e4a22e0e9"
            },
            "downloads": -1,
            "filename": "columnize-0.3.11-py3.4.egg",
            "has_sig": false,
            "md5_digest": "74e55d85b17d882ec25d3d4fb408e86a",
            "packagetype": "bdist_egg",
            "python_version": "0.3.11",
            "requires_python": null,
            "size": 11140,
            "upload_time": "2022-03-12T01:15:51",
            "upload_time_iso_8601": "2022-03-12T01:15:51.544989Z",
            "url": "https://files.pythonhosted.org/packages/7f/bc/d1dff951159ef3e0cc831dfff54a0e2dff36d480f081237367736f9a088c/columnize-0.3.11-py3.4.egg",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9fcbd96afda26d147007aa1a176217205bf622d11412225a732d1592102b379a",
                "md5": "971eb26b0dea110c5129ed2fbe2edd08",
                "sha256": "844a01077be698e7232253dc9b4c8971d93275000d7f4af17218dfaeb9bd557b"
            },
            "downloads": -1,
            "filename": "columnize-0.3.11-py3.5.egg",
            "has_sig": false,
            "md5_digest": "971eb26b0dea110c5129ed2fbe2edd08",
            "packagetype": "bdist_egg",
            "python_version": "0.3.11",
            "requires_python": null,
            "size": 11100,
            "upload_time": "2022-03-12T01:15:53",
            "upload_time_iso_8601": "2022-03-12T01:15:53.527806Z",
            "url": "https://files.pythonhosted.org/packages/9f/cb/d96afda26d147007aa1a176217205bf622d11412225a732d1592102b379a/columnize-0.3.11-py3.5.egg",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "65e600e30b560cfc87a4376de4fb31336d7ab7360e4c0d644ea911a04466f544",
                "md5": "7c0351da2c2963aba22deeb352b8d68f",
                "sha256": "a03e1a21c9b3b069a2243d93893640555f0f8e7d3d456af3660ab553d7adbebd"
            },
            "downloads": -1,
            "filename": "columnize-0.3.11-py3.6.egg",
            "has_sig": false,
            "md5_digest": "7c0351da2c2963aba22deeb352b8d68f",
            "packagetype": "bdist_egg",
            "python_version": "0.3.11",
            "requires_python": null,
            "size": 10979,
            "upload_time": "2022-03-12T01:15:55",
            "upload_time_iso_8601": "2022-03-12T01:15:55.377489Z",
            "url": "https://files.pythonhosted.org/packages/65/e6/00e30b560cfc87a4376de4fb31336d7ab7360e4c0d644ea911a04466f544/columnize-0.3.11-py3.6.egg",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ddc39902c94a4835f64d7151c6c5c40687de1438f37118d9270d15b5a2212ab1",
                "md5": "65a5929812dcb44da13bf8a5e636ed79",
                "sha256": "10dc33cbe4ef96b777b407a96078cea2b195acfaf86592357e318180c81a83d9"
            },
            "downloads": -1,
            "filename": "columnize-0.3.11-py36-none-any.whl",
            "has_sig": false,
            "md5_digest": "65a5929812dcb44da13bf8a5e636ed79",
            "packagetype": "bdist_wheel",
            "python_version": "py36",
            "requires_python": null,
            "size": 7728,
            "upload_time": "2022-03-12T01:15:37",
            "upload_time_iso_8601": "2022-03-12T01:15:37.727643Z",
            "url": "https://files.pythonhosted.org/packages/dd/c3/9902c94a4835f64d7151c6c5c40687de1438f37118d9270d15b5a2212ab1/columnize-0.3.11-py36-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ec219caac93fe566e163b89493693cd7356f1a9402aca4ce384411462533d066",
                "md5": "9e3577aad7c3c1f5a8d5688a3579ffb5",
                "sha256": "938d0b4f4c43ef78343906242d194ae2e7bb75952e4f976e30cf63ba2221a8f7"
            },
            "downloads": -1,
            "filename": "columnize-0.3.11-py3.7.egg",
            "has_sig": false,
            "md5_digest": "9e3577aad7c3c1f5a8d5688a3579ffb5",
            "packagetype": "bdist_egg",
            "python_version": "0.3.11",
            "requires_python": null,
            "size": 10935,
            "upload_time": "2022-03-12T01:15:57",
            "upload_time_iso_8601": "2022-03-12T01:15:57.245201Z",
            "url": "https://files.pythonhosted.org/packages/ec/21/9caac93fe566e163b89493693cd7356f1a9402aca4ce384411462533d066/columnize-0.3.11-py3.7.egg",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "015d5b87d52b9f4daf05b3bee84c7a8eb83359221985ea18a637bb01e78d9013",
                "md5": "d71762220608bd805f18ff7883d76887",
                "sha256": "46a9fdb5d9625868728ecd3d075cc208732372e2f0784daf8f9bf3e3e3b7c88f"
            },
            "downloads": -1,
            "filename": "columnize-0.3.11-py3.8.egg",
            "has_sig": false,
            "md5_digest": "d71762220608bd805f18ff7883d76887",
            "packagetype": "bdist_egg",
            "python_version": "0.3.11",
            "requires_python": null,
            "size": 10932,
            "upload_time": "2022-03-12T01:15:58",
            "upload_time_iso_8601": "2022-03-12T01:15:58.583801Z",
            "url": "https://files.pythonhosted.org/packages/01/5d/5b87d52b9f4daf05b3bee84c7a8eb83359221985ea18a637bb01e78d9013/columnize-0.3.11-py3.8.egg",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b0fa2ce8090659b4fa1f0b015c2ef818d77473d6e93c6539670fd6cf867781b1",
                "md5": "cb62c6510035317c1b998ecf01dbe0f2",
                "sha256": "30f0a7d750487b4de0da1c5ca39d6aab0d9493628d24b19febee2a024a5b646f"
            },
            "downloads": -1,
            "filename": "columnize-0.3.11-py3.9.egg",
            "has_sig": false,
            "md5_digest": "cb62c6510035317c1b998ecf01dbe0f2",
            "packagetype": "bdist_egg",
            "python_version": "0.3.11",
            "requires_python": null,
            "size": 10866,
            "upload_time": "2022-03-12T01:15:59",
            "upload_time_iso_8601": "2022-03-12T01:15:59.667556Z",
            "url": "https://files.pythonhosted.org/packages/b0/fa/2ce8090659b4fa1f0b015c2ef818d77473d6e93c6539670fd6cf867781b1/columnize-0.3.11-py3.9.egg",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "dedac1f84838ecb3e84c3c85c691f51f1e2dfcf7be745761d9f6462c909175ad",
                "md5": "c0b061531533a05a2b5ca83c6ff5f278",
                "sha256": "3c474ca632e474df8f012843fb74a4c0bea4e8876d49a17f952f8e82f14cbc3d"
            },
            "downloads": -1,
            "filename": "columnize-0.3.11-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "c0b061531533a05a2b5ca83c6ff5f278",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": null,
            "size": 7750,
            "upload_time": "2022-03-12T01:15:38",
            "upload_time_iso_8601": "2022-03-12T01:15:38.843837Z",
            "url": "https://files.pythonhosted.org/packages/de/da/c1f84838ecb3e84c3c85c691f51f1e2dfcf7be745761d9f6462c909175ad/columnize-0.3.11-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b0ab47c68ccca6052e18ccce562e6af92404b08cb2715edd9e9da31f4118cbcd",
                "md5": "e287d0f5ee5da9cc659ad99c4624d2b6",
                "sha256": "a631b863b310a6c1457629b7bf32a3777ea5a407f8985311ce8c24c31d1d8bb2"
            },
            "downloads": -1,
            "filename": "columnize-0.3.11.tar.gz",
            "has_sig": false,
            "md5_digest": "e287d0f5ee5da9cc659ad99c4624d2b6",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 18776,
            "upload_time": "2022-03-12T01:17:02",
            "upload_time_iso_8601": "2022-03-12T01:17:02.747113Z",
            "url": "https://files.pythonhosted.org/packages/b0/ab/47c68ccca6052e18ccce562e6af92404b08cb2715edd9e9da31f4118cbcd/columnize-0.3.11.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2022-03-12 01:17:02",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "rocky",
    "github_project": "pycolumnize",
    "travis_ci": false,
    "coveralls": true,
    "github_actions": true,
    "tox": true,
    "lcname": "columnize"
}
        
Elapsed time: 0.30067s