{ "info": { "author": "Jos Polfliet, Simon Brugman", "author_email": "pandasprofiling@gmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Environment :: Console", "Framework :: IPython", "Intended Audience :: Developers", "Intended Audience :: Financial and Insurance Industry", "Intended Audience :: Healthcare Industry", "Intended Audience :: Science/Research", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Topic :: Scientific/Engineering", "Topic :: Software Development :: Build Tools" ], "description": "# Pandas Profiling\n[![Build Status](https://travis-ci.com/pandas-profiling/pandas-profiling.svg?branch=master)](https://travis-ci.com/pandas-profiling/pandas-profiling)\n[![Code Coverage](https://codecov.io/gh/pandas-profiling/pandas-profiling/branch/master/graph/badge.svg?token=gMptB4YUnF)](https://codecov.io/gh/pandas-profiling/pandas-profiling)\n[![Release Version](https://img.shields.io/github/release/pandas-profiling/pandas-profiling.svg)](https://github.com/pandas-profiling/pandas-profiling/releases)\n[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/python/black)\n\nGenerates profile reports from a pandas `DataFrame`. \nThe pandas `df.describe()` function is great but a little basic for serious exploratory data analysis. \n`pandas_profiling` extends the pandas DataFrame with `df.profile_report()` for quick data analysis.\n\nFor each column the following statistics - if relevant for the column type - are presented in an interactive HTML report:\n\n* **Essentials**: type, unique values, missing values\n* **Quantile statistics** like minimum value, Q1, median, Q3, maximum, range, interquartile range\n* **Descriptive statistics** like mean, mode, standard deviation, sum, median absolute deviation, coefficient of variation, kurtosis, skewness\n* **Most frequent values**\n* **Histogram**\n* **Correlations** highlighting of highly correlated variables, Spearman, Pearson and Kendall matrices\n* **Missing values** matrix, count, heatmap and dendrogram of missing values\n\n## Examples\n\nThe following examples can give you an impression of what the package can do:\n\n* [Census Income](http://pandas-profiling.github.io/pandas-profiling/examples/census/census_report.html) (US Adult Census data relating income)\n* [NASA Meteorites](http://pandas-profiling.github.io/pandas-profiling/examples/meteorites/meteorites_report.html) (comprehensive set of meteorite landings)\n* [Titanic](http://pandas-profiling.github.io/pandas-profiling/examples/titanic/titanic_report.html) (the \"Wonderwall\" of datasets)\n* [NZA](http://pandas-profiling.github.io/pandas-profiling/examples/nza/nza_report.html) (open data from the Dutch Healthcare Authority)\n* [Stata Auto](http://pandas-profiling.github.io/pandas-profiling/examples/stata_auto/stata_auto_report.html) (1978 Automobile data)\n* [Website Inaccessibility](http://pandas-profiling.github.io/pandas-profiling/examples/website_inaccessibility/website_inaccessibility_report.html) (demonstrates the URL type)\n\n## Installation\n\n### Using pip\n\n[![PyPi Downloads](https://pepy.tech/badge/pandas-profiling)](https://pepy.tech/project/pandas-profiling)\n[![PyPi Monthly Downloads](https://pepy.tech/badge/pandas-profiling/month)](https://pepy.tech/project/pandas-profiling/month)\n[![PyPi Version](https://badge.fury.io/py/pandas-profiling.svg)](https://pypi.org/project/pandas-profiling/)\n\nYou can install using the pip package manager by running\n\n pip install pandas-profiling\n \nAlternatively, you could install directly from Github:\n\n pip install https://github.com/pandas-profiling/pandas-profiling/archive/master.zip\n\n \n### Using conda\n\n[![Conda Downloads](https://img.shields.io/conda/dn/conda-forge/pandas-profiling.svg)](https://anaconda.org/conda-forge/pandas-profiling)\n[![Conda Version](https://img.shields.io/conda/vn/conda-forge/pandas-profiling.svg)](https://anaconda.org/conda-forge/pandas-profiling) \n \nYou can install using the conda package manager by running\n\n conda install -c conda-forge pandas-profiling\n\n### From source\n\nDownload the source code by cloning the repository or by pressing ['Download ZIP'](https://github.com/pandas-profiling/pandas-profiling/archive/master.zip) on this page. \nInstall by navigating to the proper directory and running\n\n python setup.py install\n \n## Usage\n\nThe profile report is written in HTML5 and CSS3, which means pandas-profiling requires a modern browser. \n\n## Documentation\n\nThe documentation for `pandas_profiling` can be found [here](https://pandas-profiling.github.io/pandas-profiling/docs/).\nThe documentation is generated using [`pdoc3`](https://github.com/pdoc3/pdoc). \nIf you are contributing to this project, you can rebuild the documentation using:\n```\nmake docs\n```\nor on Windows:\n```\nmake.bat docs\n```\n\n### Jupyter Notebook\n\nWe recommend generating reports interactively by using the Jupyter notebook. \n\nStart by loading in your pandas DataFrame, e.g. by using\n```python\nimport numpy as np\nimport pandas as pd\nimport pandas_profiling\n\ndf = pd.DataFrame(\n np.random.rand(100, 5),\n columns=['a', 'b', 'c', 'd', 'e']\n)\n```\nTo display the report in a Jupyter notebook, run:\n```python\ndf.profile_report(style={'full_width':True})\n```\nTo retrieve the list of variables which are rejected due to high correlation:\n```python\nprofile = df.profile_report()\nrejected_variables = profile.get_rejected_variables(threshold=0.9)\n```\nIf you want to generate a HTML report file, save the `ProfileReport` to an object and use the `to_file()` function:\n```python\nprofile = df.profile_report(title='Pandas Profiling Report')\nprofile.to_file(output_file=\"output.html\")\n```\n### Command line usage\n\nFor standard formatted CSV files that can be read immediately by pandas, you can use the `pandas_profiling` executable. Run\n\n\tpandas_profiling -h\n\nfor information about options and arguments.\n\n### Advanced usage\n\nA set of options is available in order to adapt the report generated.\n\n* `title` (`str`): Title for the report ('Pandas Profiling Report' by default).\n* `pool_size` (`int`): Number of workers in thread pool. When set to zero, it is set to the number of CPUs available (0 by default).\n* `minify_html` (`boolean`): Whether to minify the output HTML.\n\nMore settings can be found in the [default configuration file](https://github.com/pandas-profiling/pandas-profiling/blob/master/pandas_profiling/config_default.yaml).\n\n__Example__\n```python\nprofile = df.profile_report(title='Pandas Profiling Report', plot={'histogram': {'bins': 8}})\nprofile.to_file(output_file=\"output.html\")\n```\n\n## How to contribute\n\nThe package is actively maintained and developed as open-source software. \nIf `pandas-profiling` was helpful or interesting to you, you might want to get involved. \nThere are several ways of contributing and helping our thousands of users.\nIf you would like to be a industry partner or sponsor, please [drop us a line](mailto:pandasprofiling@gmail.com).\n\nRead more on getting involved in the [Contribution Guide](https://github.com/pandas-profiling/pandas-profiling/blob/master/CONTRIBUTING.md).\n\n\n## Editor integration\n### PyCharm integration \n1. Install `pandas-profiling` via the instructions above\n2. Locate your `pandas-profiling` executable.\n\n\t On macOS / Linux / BSD:\n\t\n\t```console\n\t$ which pandas_profiling\n\t(example) /usr/local/bin/pandas_profiling\n\t```\n\t\n\t On Windows:\n\t\n\t```console\n\t$ where pandas_profiling\n\t(example) C:\\ProgramData\\Anaconda3\\Scripts\\pandas_profiling.exe\n\t```\n\n2. In Pycharm, go to _Settings_ (or _Preferences_ on macOS) > _Tools_ > _External tools_\n3. Click the _+_ icon to add a new external tool\n4. Insert the following values\n\t- Name: Pandas Profiling\n - Program: *__The location obtained in step 2__*\n - Arguments: \"$FilePath$\" \"$FileDir$/$FileNameWithoutAllExtensions$_report.html\"\n - Working Directory: $ProjectFileDir$\n \n![PyCharm Integration](http://pandas-profiling.github.io/pandas-profiling/docs/assets/pycharm-integration.png)\n \nTo use the PyCharm Integration, right click on any dataset file:\n_External Tools_ > _Pandas Profiling_.\n\n### Other integrations\n\nOther editor integrations may be contributed via pull requests.\n\n## Dependencies\n\nYou need [Python 3](https://python3statement.org/) to run this package. Other dependencies can be found in the requirements files:\n\n| Filename | Requirements|\n|----------|-------------|\n| [requirements.txt](https://github.com/pandas-profiling/pandas-profiling/blob/master/requirements.txt) | Package requirements|\n| [requirements-dev.txt](https://github.com/pandas-profiling/pandas-profiling/blob/master/requirements-dev.txt) | Requirements for development|\n| [requirements-test.txt](https://github.com/pandas-profiling/pandas-profiling/blob/master/requirements-test.txt) | Requirements for testing|", "description_content_type": "text/markdown", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/pandas-profiling/pandas-profiling", "keywords": "pandas data-science data-analysis python jupyter ipython", "license": "MIT", "maintainer": "", "maintainer_email": "", "name": "pandas-profiling", "package_url": "https://pypi.org/project/pandas-profiling/", "platform": "", "project_url": "https://pypi.org/project/pandas-profiling/", "project_urls": { "Homepage": "https://github.com/pandas-profiling/pandas-profiling" }, "release_url": "https://pypi.org/project/pandas-profiling/2.3.0/", "requires_dist": null, "requires_python": "", "summary": "Generate profile report for pandas DataFrame", "version": "2.3.0" }, "last_serial": 5592822, "releases": { "1.0.0a1": [ { "comment_text": "", "digests": { "md5": "2bd914937422e53f87ce573347105877", "sha256": "a09e4e0d5c48496245b5ab75c56e340f5ab32e4f2279f5e0c5af2a76fca78f7c" }, "downloads": -1, "filename": "pandas_profiling-1.0.0a1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "2bd914937422e53f87ce573347105877", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 15623, "upload_time": "2016-01-24T19:59:59", "url": "https://files.pythonhosted.org/packages/81/be/b1905cc2b940b1d3b8f96d6bebf2247d04ac9046e4157cf30e620ea2ae71/pandas_profiling-1.0.0a1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "8fd8498f5f01e849b2e163a4f081a51d", "sha256": "5fd64ab02db55522f3416f414efe0ea2e7cf2cfe39b03281560c6187734ea5b9" }, "downloads": -1, "filename": "pandas-profiling-1.0.0a1.tar.gz", "has_sig": false, "md5_digest": "8fd8498f5f01e849b2e163a4f081a51d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12942, "upload_time": "2016-01-24T19:59:53", "url": "https://files.pythonhosted.org/packages/e5/fb/e24fa62339f1a6c88eaca7b85db39987ae808fb5ab9f2f67b5ae10b7ed2c/pandas-profiling-1.0.0a1.tar.gz" } ], "1.0.0a2": [ { "comment_text": "", "digests": { "md5": "ac4746f53ecb849950e0be841dbdec15", "sha256": "51df3416de9ff0eb4806d21904806fc81a524af9d07d4700bb3fadd5cdc838f9" }, "downloads": -1, "filename": "pandas_profiling-1.0.0a2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "ac4746f53ecb849950e0be841dbdec15", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 15612, "upload_time": "2016-01-29T03:36:25", "url": "https://files.pythonhosted.org/packages/6f/69/7bbffb9ab05dddf6f202f6be7760b9b75f0380402adb1bb7334abf4ece79/pandas_profiling-1.0.0a2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ce6013c2600d6d0063ed773bf9e2a299", "sha256": "85fbb04e0dedb777b2bc9f3410fee78076d10305a086a6042a2b72094573ebc7" }, "downloads": -1, "filename": "pandas-profiling-1.0.0a2.tar.gz", "has_sig": false, "md5_digest": "ce6013c2600d6d0063ed773bf9e2a299", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12903, "upload_time": "2016-01-29T03:36:20", "url": "https://files.pythonhosted.org/packages/8c/a2/4d2acf89644f0020b325b3179edf05d3ef59e1da17edb7725a24ea7ddd6d/pandas-profiling-1.0.0a2.tar.gz" } ], "1.1.0": [ { "comment_text": "", "digests": { "md5": "7cb17962b76cf5ce0fe5e9c5e4dc16c8", "sha256": "3640bb86166eb53f92bd1d4f0ee07f2bb4716ea5b94fa6175a777a5c166b2455" }, "downloads": -1, "filename": "pandas_profiling-1.1.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "7cb17962b76cf5ce0fe5e9c5e4dc16c8", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 16105, "upload_time": "2016-05-15T12:45:58", "url": "https://files.pythonhosted.org/packages/70/96/d5e7e32a8f0d4e70eba8f72914f28b5886959bfb6ba20d39e7ca6d9a579f/pandas_profiling-1.1.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "22f1c22418b5c07f371735e74440e631", "sha256": "6afac3bc48debcd9be74cab716eb54dde9630c9adbbbdabce051a8600d5193a6" }, "downloads": -1, "filename": "pandas-profiling-1.1.0.tar.gz", "has_sig": false, "md5_digest": "22f1c22418b5c07f371735e74440e631", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13357, "upload_time": "2016-05-15T12:45:53", "url": "https://files.pythonhosted.org/packages/f6/31/5a71889a5b79a611a52e7d0a69109e269741515eeb4d53728a2d5b527ecc/pandas-profiling-1.1.0.tar.gz" } ], "1.2.0": [ { "comment_text": "built for Linux-4.4.0-22-generic-x86_64-with-glibc2.7", "digests": { "md5": "26e7b9410e87c4f5827fa861d2c89e0e", "sha256": "f1907706261b06382105dffb314679fca4ccb42de0a341ce7d70cf4a6ce93898" }, "downloads": -1, "filename": "pandas-profiling-1.2.0.linux-x86_64.tar.gz", "has_sig": false, "md5_digest": "26e7b9410e87c4f5827fa861d2c89e0e", "packagetype": "bdist_dumb", "python_version": "any", "requires_python": null, "size": 27960, "upload_time": "2016-08-03T00:48:30", "url": "https://files.pythonhosted.org/packages/58/90/fea59ccb4f69d23ef2650785c82872e45da828d650a7821382956a7cf5c0/pandas-profiling-1.2.0.linux-x86_64.tar.gz" }, { "comment_text": "", "digests": { "md5": "8b87215fe8c3df5b875d1deb154f66bf", "sha256": "a72bc483491e14c099b0b20b65bc0a5c29d13ec44f1ad22bb5eea1b641ff5aea" }, "downloads": -1, "filename": "pandas-profiling-1.2.0.tar.gz", "has_sig": false, "md5_digest": "8b87215fe8c3df5b875d1deb154f66bf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15142, "upload_time": "2016-08-03T00:48:27", "url": "https://files.pythonhosted.org/packages/20/58/027261601c6a15c88fd80161d291f621fb42a8e2545a889a6725d2cc67ba/pandas-profiling-1.2.0.tar.gz" } ], "1.3.0": [ { "comment_text": "", "digests": { "md5": "804a7a021a1e92f559e04a8c84454c94", "sha256": "53244ffc5e924fe702d599fba13988268257207e45b104ccbb2f922458c9591e" }, "downloads": -1, "filename": "pandas-profiling-1.3.0.tar.gz", "has_sig": false, "md5_digest": "804a7a021a1e92f559e04a8c84454c94", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18117, "upload_time": "2016-09-04T15:08:19", "url": "https://files.pythonhosted.org/packages/31/ff/b8c1558c87b089003ccf92c01bdc888d7f7fd7c41ef3f33eb03797de89de/pandas-profiling-1.3.0.tar.gz" } ], "1.4.0": [ { "comment_text": "", "digests": { "md5": "385ecbed4990c7df9510de631e903214", "sha256": "7bf82f37ca5cc9c84afb2eadb0e78badcdf729c17ba2ac8ce58a2f440cb08b07" }, "downloads": -1, "filename": "pandas_profiling-1.4.0-py3.6.egg", "has_sig": false, "md5_digest": "385ecbed4990c7df9510de631e903214", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": null, "size": 53780, "upload_time": "2018-01-06T10:58:22", "url": "https://files.pythonhosted.org/packages/7f/13/dfa8478d17132414e71173522db9095b7f8d78cad573c9f7ce7f0c625dc7/pandas_profiling-1.4.0-py3.6.egg" }, { "comment_text": "", "digests": { "md5": "f6cd816607a2627ddb586466f55d1b95", "sha256": "ef49c4bb1f07d2e5d48f8e5b52b13159fbcb8fa0acf9d2acd5aa6067c9eb6b04" }, "downloads": -1, "filename": "pandas-profiling-1.4.0.tar.gz", "has_sig": false, "md5_digest": "f6cd816607a2627ddb586466f55d1b95", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18073, "upload_time": "2017-02-05T17:22:03", "url": "https://files.pythonhosted.org/packages/b8/91/62dfcd13b3cd773b4a319babd62d5931af6e9931bed142367e71ff0c5f9b/pandas-profiling-1.4.0.tar.gz" } ], "1.4.1": [ { "comment_text": "", "digests": { "md5": "28b98ee54b6b67c15e12f4f69c8d6c11", "sha256": "a1b16842b944dd9104b4b0df3a453d44d9722bf186d4da67c0c6521854d8aaf5" }, "downloads": -1, "filename": "pandas_profiling-1.4.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "28b98ee54b6b67c15e12f4f69c8d6c11", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 36782, "upload_time": "2018-01-10T15:12:26", "url": "https://files.pythonhosted.org/packages/a7/7c/84f15ee705793a3cdd43bc65e6166d65d36f743b815ea517b02582989533/pandas_profiling-1.4.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "6b5b0f759dca4f0ebdf6972cf4475b3b", "sha256": "5014d8f160e44b6f56321d45fcf9670f8ad647587b545ab43d203c600217f307" }, "downloads": -1, "filename": "pandas-profiling-1.4.1.tar.gz", "has_sig": false, "md5_digest": "6b5b0f759dca4f0ebdf6972cf4475b3b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 23961, "upload_time": "2018-01-10T15:12:30", "url": "https://files.pythonhosted.org/packages/a5/38/87508d659f6f2d228548754b205facb7d174812f86e7bcb53078ca89b18b/pandas-profiling-1.4.1.tar.gz" } ], "1.4.2": [ { "comment_text": "", "digests": { "md5": "7eb1d0d2bf7fa5c8ff6d26b22f1a49d5", "sha256": "d5acc03204c4c1b92c8b6dc3f766dfcce65feec5219eb979d9509a0522f064f8" }, "downloads": -1, "filename": "pandas-profiling-1.4.2.tar.gz", "has_sig": false, "md5_digest": "7eb1d0d2bf7fa5c8ff6d26b22f1a49d5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25980, "upload_time": "2019-04-27T08:58:48", "url": "https://files.pythonhosted.org/packages/3b/98/e4cae9f4485be5ff589227af4e97dd7ebe60c1372bf6f8d9ccbeb0f90667/pandas-profiling-1.4.2.tar.gz" } ], "1.4.3": [ { "comment_text": "", "digests": { "md5": "b6f3ad351f3923b7cd169a626730e457", "sha256": "550677485a4dd7fc6db6d813a54701324c955c336a627305fb1a82f2eec385ca" }, "downloads": -1, "filename": "pandas-profiling-1.4.3.tar.gz", "has_sig": false, "md5_digest": "b6f3ad351f3923b7cd169a626730e457", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25793, "upload_time": "2019-06-23T09:42:05", "url": "https://files.pythonhosted.org/packages/b2/58/b221b34a79d8b62a09e5d22b2007c43e0132e52f4fd385fb66608ddbda76/pandas-profiling-1.4.3.tar.gz" } ], "2.0.3": [ { "comment_text": "", "digests": { "md5": "636b4fa6871ef6028c4cbc96aab5f925", "sha256": "258d849d7bd398cc4180ddfe9f484077562d1cb7945ef37f1c140d514050ef8c" }, "downloads": -1, "filename": "pandas-profiling-2.0.3.tar.gz", "has_sig": false, "md5_digest": "636b4fa6871ef6028c4cbc96aab5f925", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 99270, "upload_time": "2019-06-23T13:23:22", "url": "https://files.pythonhosted.org/packages/01/c4/8b583814c4a0b9abf86cefeac522fde88412256fd769b2e4adc9b2197b6d/pandas-profiling-2.0.3.tar.gz" } ], "2.1.0": [ { "comment_text": "", "digests": { "md5": "1af32638320eab66e8749d7cd37475c3", "sha256": "3ac260ffa0513bf9c13c95ae247e73e4256c519b5ea15467e783fc571664c72e" }, "downloads": -1, "filename": "pandas-profiling-2.1.0.tar.gz", "has_sig": false, "md5_digest": "1af32638320eab66e8749d7cd37475c3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 122665, "upload_time": "2019-07-06T15:06:57", "url": "https://files.pythonhosted.org/packages/8a/d9/00e0f3b0ceab60b32d565befa884cd088fc8cc00d09604e856937bef6cdf/pandas-profiling-2.1.0.tar.gz" } ], "2.1.2": [ { "comment_text": "", "digests": { "md5": "29acf7c878a6a9cbaa5fe33701c76e65", "sha256": "148c4aade34440f78d2e2b1b926071e1b7441a3729f9ad36025238e66503aa76" }, "downloads": -1, "filename": "pandas-profiling-2.1.2.tar.gz", "has_sig": false, "md5_digest": "29acf7c878a6a9cbaa5fe33701c76e65", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 123316, "upload_time": "2019-07-11T23:43:59", "url": "https://files.pythonhosted.org/packages/eb/e6/873da339e5077824552b752d5e297d66fb42fba0ab698b9d8f66b35fe7d8/pandas-profiling-2.1.2.tar.gz" } ], "2.2.0": [ { "comment_text": "", "digests": { "md5": "80c1066887058bdc9f69fdac2ead5029", "sha256": "33ddcc25b39eb4aa025a93f8ed4515a489caab50b374dad54de2439189800007" }, "downloads": -1, "filename": "pandas-profiling-2.2.0.tar.gz", "has_sig": false, "md5_digest": "80c1066887058bdc9f69fdac2ead5029", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 126192, "upload_time": "2019-07-22T09:21:36", "url": "https://files.pythonhosted.org/packages/5d/17/3159aff8690f095ae5e21d779a405cca89234fa17b245ddebd8411a08b2a/pandas-profiling-2.2.0.tar.gz" } ], "2.3.0": [ { "comment_text": "", "digests": { "md5": "f1012a28e8373ab4beaa05db71f72d5f", "sha256": "e3d286dca878834f14a84e82140f5185d29217d7693a78528481049bbdc67606" }, "downloads": -1, "filename": "pandas-profiling-2.3.0.tar.gz", "has_sig": false, "md5_digest": "f1012a28e8373ab4beaa05db71f72d5f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 127435, "upload_time": "2019-07-27T12:20:22", "url": "https://files.pythonhosted.org/packages/2c/2f/aae19e2173c10a9bb7fee5f5cad35dbe53a393960fc91abc477dcc4661e8/pandas-profiling-2.3.0.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "f1012a28e8373ab4beaa05db71f72d5f", "sha256": "e3d286dca878834f14a84e82140f5185d29217d7693a78528481049bbdc67606" }, "downloads": -1, "filename": "pandas-profiling-2.3.0.tar.gz", "has_sig": false, "md5_digest": "f1012a28e8373ab4beaa05db71f72d5f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 127435, "upload_time": "2019-07-27T12:20:22", "url": "https://files.pythonhosted.org/packages/2c/2f/aae19e2173c10a9bb7fee5f5cad35dbe53a393960fc91abc477dcc4661e8/pandas-profiling-2.3.0.tar.gz" } ] }