{
"info": {
"author": "Priyam Singh",
"author_email": "priyamsingh.22296@gmail.com",
"bugtrack_url": null,
"classifiers": [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Printing",
"Topic :: Text Processing"
],
"description": "##########################################################################\nbeautifultable\n##########################################################################\n\n.. inclusion-marker-badges-start\n\n.. image:: https://badge.fury.io/py/beautifultable.svg\n :target: https://badge.fury.io/py/beautifultable\n\n.. image:: https://img.shields.io/pypi/pyversions/beautifultable.svg\n :target: https://pypi.python.org/pypi/beautifultable/\n\n.. image:: https://codecov.io/gh/pri22296/beautifultable/branch/master/graphs/badge.svg\n :target: https://codecov.io/gh/pri22296/beautifultable/branch/master/\n\n.. image:: https://api.codacy.com/project/badge/Grade/7a76eb35ad4e450eaf00339e98381511\n :target: https://www.codacy.com/app/pri22296/beautifultable?utm_source=github.com&utm_medium=referral&utm_content=pri22296/beautifultable&utm_campaign=Badge_Grade\n\n.. image:: https://travis-ci.org/pri22296/beautifultable.svg?branch=master\n :target: https://travis-ci.org/pri22296/beautifultable\n\n.. image:: https://readthedocs.org/projects/beautifultable/badge/?version=latest\n :alt: Documentation Status\n :target: http://beautifultable.readthedocs.io/en/latest/?badge=latest\n\n.. image:: https://img.shields.io/badge/Donate-PayPal-yellow.svg\n :target: https://paypal.me/beautifultable\n\n.. inclusion-marker-badges-end\n\n\n.. inclusion-marker-introduction-start\n\n**************************************************************************\nIntroduction\n**************************************************************************\n\nThis Package provides BeautifulTable class for easily printing\ntabular data in a visually appealing ASCII format to a terminal. \n\nFeatures included but not limited to:\n\n* Full customization of the look and feel of the table\n* Build the Table as you wish, By adding rows, or by columns or even\n mixing both these approaches.\n* Full support for *colors* using ANSI sequences or any library of your\n choice. It just works.\n* Plenty of predefined *styles* for multiple use cases and option to\n create custom ones.\n* Support for *Unicode* characters.\n\n.. inclusion-marker-introduction-end\n\n\n\n.. inclusion-marker-links-start\n\n**************************************************************************\nLinks\n**************************************************************************\n\n* `Documentation `_\n\n* `Source `_\n\n* `API Reference `_\n\n\n.. inclusion-marker-links-end\n\n\n\n.. inclusion-marker-usage-start\n\n**************************************************************************\nUsage\n**************************************************************************\n\nHere is an example of how you can use beautifultable::\n\n >>> from beautifultable import BeautifulTable\n >>> table = BeautifulTable()\n >>> table.column_headers = [\"name\", \"rank\", \"gender\"]\n >>> table.append_row([\"Jacob\", 1, \"boy\"])\n >>> table.append_row([\"Isabella\", 1, \"girl\"])\n >>> table.append_row([\"Ethan\", 2, \"boy\"])\n >>> table.append_row([\"Sophia\", 2, \"girl\"])\n >>> table.append_row([\"Michael\", 3, \"boy\"])\n >>> print(table)\n +----------+------+--------+\n | name | rank | gender |\n +----------+------+--------+\n | Jacob | 1 | boy |\n +----------+------+--------+\n | Isabella | 1 | girl |\n +----------+------+--------+\n | Ethan | 2 | boy |\n +----------+------+--------+\n | Sophia | 2 | girl |\n +----------+------+--------+\n | Michael | 3 | boy |\n +----------+------+--------+\n\nYou can learn more about beautifultable at this `Tutorial `_\n\n.. inclusion-marker-usage-end\n\n\n\n.. inclusion-marker-install-start\n\n**************************************************************************\nInstallation\n**************************************************************************\n\n::\n\n pip install beautifultable\n\n.. inclusion-marker-install-end\n\n\n\n.. inclusion-marker-changelog-start\n\n**************************************************************************\nChangelog\n**************************************************************************\n\n==========\nUnreleased\n==========\n\n==========\nv0.8.0\n==========\n\n* Dropped support for Python 3.3\n* Added support for streaming tables using a generator for cases where data retrieval is slow\n* Alignment, padding, width can now be set for all columns using a simplified syntax like\n ``table.column_alignments = beautifultable.ALIGN_LEFT``\n\n==========\nv0.7.0\n==========\n\n* Added 4 new styles, **STYLE_BOX**, **STYLE_BOX_DOUBLED**, **STYLE_BOX_ROUNDED**,\n **STYLE_GRID**.\n* Renamed **STYLE_RESTRUCTURED_TEXT** to **STYLE_RST**\n* **wcwidth** is now an optional dependency\n* Updated the algorithm for calculating width of columns(better division of space among columns)\n* Added support for Paragraphs(using ``\\n`` character)\n* Added finer control for intersection characters using 12 new\n attributes ``intersect_{top|header|row|bottom}_{left|mid|right}``\n* Added the ability to also accept bytestrings instead of unicode\n* Deprecated attribute ``intersection_char``\n* Deprecated methods ``get_top_border()``, ``get_bottom_border()``, ``get_header_separator()``,\n ``get_row_separator()``, ``auto_calculate_width()``\n* Fixed an issue with **WEP_ELLIPSIS** and **WEP_STRIP** when using multibyte characters\n* Fixed an issue where table would not be in proper form if ``column_width`` is too low\n\n==========\nv0.6.0\n==========\n\n* Added support for handling Multi byte strings\n* Added support for colored strings using ANSI escape sequences\n* Added constraint where all strings must be unicode\n* Fixed an issue where sometimes width was calculated as higher than intended\n\n==========\nv0.5.3\n==========\n\n* Added support for handing color codes using ANSI escape sequences(experimental)\n* Fixed collections ABCs deprecation warning\n\n==========\nv0.5.2\n==========\n\n* Added new style **STYLE_NONE**\n* Fixed issue regarding improper conversion of non-string floats\n\n==========\nv0.5.1\n==========\n\n* Added ``detect_numerics`` boolean for toggling automatic numeric conversion\n\n==========\nv0.5.0\n==========\n\n* Added new property ``serialno_header``\n* Deprecated methods with misspelled *\"seperator\"* in their name.\n* Fixed an issue where table was corrupted when ``column_count`` was too high\n\n\n==========\nv0.4.0\n==========\n\n* Added predefined styles for easier customization\n* Added *reverse* argument to ``sort()`` method\n* Fixed *enum34* dependency for python versions prior to 3.4\n\n==========\nv0.3.0\n==========\n\n* Added property ``serialno`` for auto printing serial number\n* Fixed an issue with ``sign_mode`` related to str conversion\n* Fixed bugs related to python version prior to 3.3\n* Fixed exception on **WEP_ELLIPSIS** and token length less than 3\n* Fixed printing issues with empty table\n\n==========\nv0.2.0\n==========\n\n* Added python 2 support\n\n==========\nv0.1.3\n==========\n\n* Fixed minor issues\n\n==========\nv0.1.2\n==========\n\n* Added new property ``default_padding``\n* Added new method ``update_row``\n* Fixed an issue in ``auto_calculate_width()``\n\n==========\nv0.1.1\n==========\n\n* Initial release on PyPI\n\n\n.. inclusion-marker-changelog-end\n\n\n.. inclusion-marker-contribution-start\n\n**************************************************************************\nContribute\n**************************************************************************\n\nIf you have any suggestions or bug reports, Please create a Issue. Pull\nRequests are always welcome.\n\n.. inclusion-marker-contribution-end\n\n\n\n.. inclusion-marker-license-start\n\n**************************************************************************\nLicense\n**************************************************************************\n\nThis project is licensed under the MIT License - see the `LICENSE.txt `_ file for details.\n\n\n.. inclusion-marker-license-end\n\n\n\n.. inclusion-marker-donation-start\n\n**************************************************************************\nDonation\n**************************************************************************\n\nLove *beautifultable*? Consider supporting the development :)\n\n.. image:: https://www.paypalobjects.com/en_US/i/btn/btn_donateCC_LG.gif\n :target: https://paypal.me/beautifultable\n\n\n.. inclusion-marker-donation-end\n\n\n",
"description_content_type": "",
"docs_url": null,
"download_url": "https://github.com/pri22296/beautifultable/tarball/0.8.0",
"downloads": {
"last_day": -1,
"last_month": -1,
"last_week": -1
},
"home_page": "https://github.com/pri22296/beautifultable",
"keywords": "table terminal ascii",
"license": "MIT",
"maintainer": "",
"maintainer_email": "",
"name": "beautifultable",
"package_url": "https://pypi.org/project/beautifultable/",
"platform": "",
"project_url": "https://pypi.org/project/beautifultable/",
"project_urls": {
"Download": "https://github.com/pri22296/beautifultable/tarball/0.8.0",
"Homepage": "https://github.com/pri22296/beautifultable"
},
"release_url": "https://pypi.org/project/beautifultable/0.8.0/",
"requires_dist": [
"enum34 ; python_version<\"3.4\""
],
"requires_python": "",
"summary": "Print ASCII tables for terminals",
"version": "0.8.0"
},
"last_serial": 5726214,
"releases": {
"0.1.1": [
{
"comment_text": "",
"digests": {
"md5": "987e575822c4a8c58ebdcca8fea8449a",
"sha256": "6d82a117924ccafebfd4e5de8c94285897e9d659a73eabf72fa2b5ba3c5cc3f7"
},
"downloads": -1,
"filename": "beautifultable-0.1.1.zip",
"has_sig": false,
"md5_digest": "987e575822c4a8c58ebdcca8fea8449a",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 12996,
"upload_time": "2017-02-26T09:07:13",
"url": "https://files.pythonhosted.org/packages/c5/cd/ebf62d175fed2bb5b3ebd9b04aaeaab022c0d0d970a85d6f2eb02bd1fc05/beautifultable-0.1.1.zip"
}
],
"0.1.2": [
{
"comment_text": "",
"digests": {
"md5": "0b8b1187785a65f995dba13c4ecd7195",
"sha256": "c1e8f9d8859a60ecfb61b67c797baea1960643cbd62f9a3b40b841ae590cc125"
},
"downloads": -1,
"filename": "beautifultable-0.1.2.zip",
"has_sig": false,
"md5_digest": "0b8b1187785a65f995dba13c4ecd7195",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 12997,
"upload_time": "2017-03-04T11:02:24",
"url": "https://files.pythonhosted.org/packages/30/1e/44b3f3a5a12b74a3e7e80af0531a2ea36c96454d879c547216edbcf3f897/beautifultable-0.1.2.zip"
}
],
"0.1.3": [
{
"comment_text": "",
"digests": {
"md5": "f282fe4e4ab8650e4b7b69788427d215",
"sha256": "e90e8da70153c0936d0aa9d5eea9c3770c6f7bb6ac92691807d39a69ba7e47bd"
},
"downloads": -1,
"filename": "beautifultable-0.1.3.zip",
"has_sig": false,
"md5_digest": "f282fe4e4ab8650e4b7b69788427d215",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 16586,
"upload_time": "2017-04-16T11:17:24",
"url": "https://files.pythonhosted.org/packages/fa/89/7ce22b1d8697aadbe2ce6c9b8cbd41547fb7ad80e6d5310d73f5f30040a9/beautifultable-0.1.3.zip"
}
],
"0.2.0": [
{
"comment_text": "",
"digests": {
"md5": "ecf3e8e2864ac9361204bcb55dee5d99",
"sha256": "be3e3e7b6fdf16629d23a7459964391978759fdbb1c452886c66908ba759e3a1"
},
"downloads": -1,
"filename": "beautifultable-0.2.0.zip",
"has_sig": false,
"md5_digest": "ecf3e8e2864ac9361204bcb55dee5d99",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 16238,
"upload_time": "2017-05-05T19:35:31",
"url": "https://files.pythonhosted.org/packages/cf/8a/4ddd005aef21f95b287ea3138c687b1af289d491aeacd1a3e2491ee52a6c/beautifultable-0.2.0.zip"
}
],
"0.3.0": [
{
"comment_text": "",
"digests": {
"md5": "389540da01f05bc285ac5681f8aee51f",
"sha256": "dad7dbf23015bcbcfd4bbf38531ffbe50a2b5c47d5e660a28c41827efadab759"
},
"downloads": -1,
"filename": "beautifultable-0.3.0-py3.6.egg",
"has_sig": false,
"md5_digest": "389540da01f05bc285ac5681f8aee51f",
"packagetype": "bdist_egg",
"python_version": "3.6",
"requires_python": null,
"size": 30597,
"upload_time": "2017-05-25T10:32:09",
"url": "https://files.pythonhosted.org/packages/7f/2e/41189000a515add213893a5f2f4be83cee842a41c94212cf4641b199ca6a/beautifultable-0.3.0-py3.6.egg"
},
{
"comment_text": "",
"digests": {
"md5": "9cb06dc730aa85c3d8669f74fd136c82",
"sha256": "3a5670fdd838307593216816e0e9123e8966dbfbf719180a891cf8b7e8cd0853"
},
"downloads": -1,
"filename": "beautifultable-0.3.0.tar.gz",
"has_sig": false,
"md5_digest": "9cb06dc730aa85c3d8669f74fd136c82",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 11886,
"upload_time": "2017-05-25T10:32:10",
"url": "https://files.pythonhosted.org/packages/74/a8/1b183b85dfe7434f4a99477b8c8a6b2bf6f2cdd6b4b113267d25a4ba036e/beautifultable-0.3.0.tar.gz"
}
],
"0.4.0": [
{
"comment_text": "",
"digests": {
"md5": "d7548c32add52e2b9f75fe29510cd34d",
"sha256": "d664f07b8431e6e1f93796fe6e2c2b5286aa8f880a07ef8bbadef716063aa3ec"
},
"downloads": -1,
"filename": "beautifultable-0.4.0-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "d7548c32add52e2b9f75fe29510cd34d",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 16963,
"upload_time": "2018-01-16T08:59:38",
"url": "https://files.pythonhosted.org/packages/4c/58/a5e44d239c71b4a94ba8c022610aba30d2c26d7307b0bb214a183aa04644/beautifultable-0.4.0-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "06eaa677860e0ce2962b068ff0dc4347",
"sha256": "f270a4dd39ede51c9a11c9fe84bef3cd381f2bbc58b5053f9aff1b5dac5c0ddf"
},
"downloads": -1,
"filename": "beautifultable-0.4.0.tar.gz",
"has_sig": false,
"md5_digest": "06eaa677860e0ce2962b068ff0dc4347",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 12638,
"upload_time": "2018-01-16T08:59:39",
"url": "https://files.pythonhosted.org/packages/5b/4f/b0e496789fc2089ed2ef897913bc5e1f7ac47622e9b121b792a98d99ef8f/beautifultable-0.4.0.tar.gz"
}
],
"0.5.0": [
{
"comment_text": "",
"digests": {
"md5": "b3c2f95bd56be2be8f6ff1f0498feea1",
"sha256": "d1195f75effb2358657fed8754aefc5f0e5916592e3f7ecc1384cc16eb56533b"
},
"downloads": -1,
"filename": "beautifultable-0.5.0-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "b3c2f95bd56be2be8f6ff1f0498feea1",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 17387,
"upload_time": "2018-03-16T17:43:59",
"url": "https://files.pythonhosted.org/packages/6e/2a/7cc10008789d79b3bf30a09c9598be211008b76002ad066d7bfbde98474a/beautifultable-0.5.0-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "e984afa80fec7c5037ee24adbab4e0a2",
"sha256": "90f7b1b838e730c27f63cd63af05a77655789ba8d500dac68fec71350c2c4168"
},
"downloads": -1,
"filename": "beautifultable-0.5.0.tar.gz",
"has_sig": false,
"md5_digest": "e984afa80fec7c5037ee24adbab4e0a2",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 13054,
"upload_time": "2018-03-16T17:44:00",
"url": "https://files.pythonhosted.org/packages/60/86/20247811db36773fc64273eaf05c900a075d4b812fb0264b73c0ed0a610d/beautifultable-0.5.0.tar.gz"
}
],
"0.5.1": [
{
"comment_text": "",
"digests": {
"md5": "2ffbceb4ae3bed7ce2e259b07d4fc6dd",
"sha256": "ac3b6737328004f69032bd03ab1a447ee437561e8248a6cceaa7f26f31632da2"
},
"downloads": -1,
"filename": "beautifultable-0.5.1-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "2ffbceb4ae3bed7ce2e259b07d4fc6dd",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 15315,
"upload_time": "2018-06-15T09:38:04",
"url": "https://files.pythonhosted.org/packages/41/29/43cc0f6f99c08f36bd0d0014591969032302385fc1d5bdf8ac1a21e1fcef/beautifultable-0.5.1-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "34a702aeba2785d34076deacb3b0e195",
"sha256": "10cc44a19f1ee0731de21a05783a3f0c0da8ea4b3e13e10ad5772d20e30e3ca8"
},
"downloads": -1,
"filename": "beautifultable-0.5.1.tar.gz",
"has_sig": false,
"md5_digest": "34a702aeba2785d34076deacb3b0e195",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 13175,
"upload_time": "2018-06-15T09:38:05",
"url": "https://files.pythonhosted.org/packages/de/f2/2caacdc00b0935da4c71018e9355ddd4beed6d2f7f0293c01de71e1d600d/beautifultable-0.5.1.tar.gz"
}
],
"0.5.2": [
{
"comment_text": "",
"digests": {
"md5": "a7ca47367a8e8b45e08ba4349837c8c5",
"sha256": "5d00456dcd47a4b022243a6ec463d90a4ce80dfd1af148ca7f698ee38780ceb5"
},
"downloads": -1,
"filename": "beautifultable-0.5.2-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "a7ca47367a8e8b45e08ba4349837c8c5",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 15564,
"upload_time": "2018-06-30T06:18:50",
"url": "https://files.pythonhosted.org/packages/90/ab/be823d97c60aefe967e1cc868618b37eae8ce5a04ba00e7eaceae6264667/beautifultable-0.5.2-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "4e8fc54348e7ab65d6caaf432899304a",
"sha256": "53f99029c02ef482bd5fe4244e01a3639751194725aa43db0b511dc6910ed654"
},
"downloads": -1,
"filename": "beautifultable-0.5.2.tar.gz",
"has_sig": false,
"md5_digest": "4e8fc54348e7ab65d6caaf432899304a",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 13392,
"upload_time": "2018-06-30T06:18:51",
"url": "https://files.pythonhosted.org/packages/99/58/74350cc244c4028f7e7c2e03ccc405ab86403a0888b135b94c9712d13204/beautifultable-0.5.2.tar.gz"
}
],
"0.5.3": [
{
"comment_text": "",
"digests": {
"md5": "6a40fbb9d3e2a8cf1669de4d86a4a529",
"sha256": "53ca7fff9fa8cf46e863cdc8540dde46079fefde7c8f45c3e5b56febef824a75"
},
"downloads": -1,
"filename": "beautifultable-0.5.3-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "6a40fbb9d3e2a8cf1669de4d86a4a529",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 16349,
"upload_time": "2018-09-05T13:49:58",
"url": "https://files.pythonhosted.org/packages/4a/22/6ca82099e8cdd356555e25c5550f7fc0c91ceccac36402617cc88f590b9b/beautifultable-0.5.3-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "142f8bbc3d61bc48f5b5fdfb22bc9373",
"sha256": "cc200937c107d4e272302e7c8b82dc735f0efea2195b342f6fb522c965893976"
},
"downloads": -1,
"filename": "beautifultable-0.5.3.tar.gz",
"has_sig": false,
"md5_digest": "142f8bbc3d61bc48f5b5fdfb22bc9373",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 14301,
"upload_time": "2018-09-05T13:50:00",
"url": "https://files.pythonhosted.org/packages/dc/b8/b647d50022bf82ec83fc853d5c6056088c55996684c92cf632b2c07aebb1/beautifultable-0.5.3.tar.gz"
}
],
"0.6.0": [
{
"comment_text": "",
"digests": {
"md5": "a014fb1ca298401fccecb1dfba160bab",
"sha256": "fda7ec83f34ab0c1d02b6aba3fdf28c0f69a1aec6ad7876571e1db0f915fa434"
},
"downloads": -1,
"filename": "beautifultable-0.6.0-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "a014fb1ca298401fccecb1dfba160bab",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 18880,
"upload_time": "2018-12-23T15:48:46",
"url": "https://files.pythonhosted.org/packages/b3/07/39e08234d4c18681dc59ce476dd4e8940940d6cd9698e856b26fcdd558c9/beautifultable-0.6.0-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "c75d7ebb532e6442501409dd43bcdb15",
"sha256": "a9f9967779f25cf5db9bc709ed8079df900ba1225b810d80442c28c909a91189"
},
"downloads": -1,
"filename": "beautifultable-0.6.0.tar.gz",
"has_sig": false,
"md5_digest": "c75d7ebb532e6442501409dd43bcdb15",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 16692,
"upload_time": "2018-12-23T15:48:47",
"url": "https://files.pythonhosted.org/packages/54/9d/a37e29adf700be42f6681474fb0c1d5cc1a577e9f570f9d74939c94ae6ef/beautifultable-0.6.0.tar.gz"
}
],
"0.7.0": [
{
"comment_text": "",
"digests": {
"md5": "0d11d944b5f8b6620917ee81a6b44e7f",
"sha256": "f1185c5bbb2d522a9c7dfe24cc55151f32379031d001c9731a2b55714b927089"
},
"downloads": -1,
"filename": "beautifultable-0.7.0-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "0d11d944b5f8b6620917ee81a6b44e7f",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 22176,
"upload_time": "2019-01-19T09:18:00",
"url": "https://files.pythonhosted.org/packages/40/0e/1ef87ba3851bae0c6e8dea2338f5d8952c87f3b4dcbdaaeedffeb3ab2139/beautifultable-0.7.0-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "4ddf644a6bf625cc77ba8d69fbfba00e",
"sha256": "8deee768c7939578412f930c95c2ac51307fb723a6368e9e233091cdad240537"
},
"downloads": -1,
"filename": "beautifultable-0.7.0.tar.gz",
"has_sig": false,
"md5_digest": "4ddf644a6bf625cc77ba8d69fbfba00e",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 20262,
"upload_time": "2019-01-19T09:18:02",
"url": "https://files.pythonhosted.org/packages/fa/60/c7274427e65f2beb3da102bf189effff6a34d5e958fa2c48544d6b384094/beautifultable-0.7.0.tar.gz"
}
],
"0.8.0": [
{
"comment_text": "",
"digests": {
"md5": "c7c386d9ad52d1de96099c763c649c70",
"sha256": "28e2e93d44a4e84511c4869da4b907345435a06728925e295790f24e1d57300c"
},
"downloads": -1,
"filename": "beautifultable-0.8.0-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "c7c386d9ad52d1de96099c763c649c70",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 22829,
"upload_time": "2019-08-25T06:38:40",
"url": "https://files.pythonhosted.org/packages/d9/56/eaf1b9f2b323e05dce573f88c72eaa0107610db709b8bee97b776903ac55/beautifultable-0.8.0-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "e1de1ea3c42efdfe0703d78e59fcc1d1",
"sha256": "d44d9551bbed7bfa88675324f84efb9aa857384d44e9fb21eb530f0a0badb815"
},
"downloads": -1,
"filename": "beautifultable-0.8.0.tar.gz",
"has_sig": false,
"md5_digest": "e1de1ea3c42efdfe0703d78e59fcc1d1",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 19203,
"upload_time": "2019-08-25T06:38:42",
"url": "https://files.pythonhosted.org/packages/94/3b/d69cd69840eeff02beb4f35009ca0da56e5dee0e265075b3154b41f23d14/beautifultable-0.8.0.tar.gz"
}
]
},
"urls": [
{
"comment_text": "",
"digests": {
"md5": "c7c386d9ad52d1de96099c763c649c70",
"sha256": "28e2e93d44a4e84511c4869da4b907345435a06728925e295790f24e1d57300c"
},
"downloads": -1,
"filename": "beautifultable-0.8.0-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "c7c386d9ad52d1de96099c763c649c70",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 22829,
"upload_time": "2019-08-25T06:38:40",
"url": "https://files.pythonhosted.org/packages/d9/56/eaf1b9f2b323e05dce573f88c72eaa0107610db709b8bee97b776903ac55/beautifultable-0.8.0-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "e1de1ea3c42efdfe0703d78e59fcc1d1",
"sha256": "d44d9551bbed7bfa88675324f84efb9aa857384d44e9fb21eb530f0a0badb815"
},
"downloads": -1,
"filename": "beautifultable-0.8.0.tar.gz",
"has_sig": false,
"md5_digest": "e1de1ea3c42efdfe0703d78e59fcc1d1",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 19203,
"upload_time": "2019-08-25T06:38:42",
"url": "https://files.pythonhosted.org/packages/94/3b/d69cd69840eeff02beb4f35009ca0da56e5dee0e265075b3154b41f23d14/beautifultable-0.8.0.tar.gz"
}
]
}