{ "info": { "author": "Qiusheng Wu", "author_email": "giswqs@gmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 2 - Pre-Alpha", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Natural Language :: English", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6" ], "description": "===============\nwhitebox-python\n===============\n\n.. image:: https://mybinder.org/badge_logo.svg \n :target: https://gishub.org/whitebox-cloud\n\n.. image:: https://img.shields.io/pypi/v/whitebox.svg\n :target: https://pypi.python.org/pypi/whitebox\n\n.. image:: https://pepy.tech/badge/whitebox\n :target: https://pepy.tech/project/whitebox\n\n.. image:: https://anaconda.org/conda-forge/whitebox/badges/version.svg\n :target: https://anaconda.org/conda-forge/whitebox\n\n.. image:: https://img.shields.io/travis/giswqs/whitebox-python.svg\n :target: https://travis-ci.org/giswqs/whitebox-python\n\n.. image:: https://ci.appveyor.com/api/projects/status/a7r1hna30kjbsmk3?svg=true\n :target: https://ci.appveyor.com/project/giswqs/whitebox-python\n\n.. image:: https://readthedocs.org/projects/whitebox/badge/?version=latest\n :target: https://whitebox.readthedocs.io/en/latest/?badge=latest\n :alt: Documentation Status\n\n.. image:: https://img.shields.io/badge/License-MIT-yellow.svg\n :target: https://opensource.org/licenses/MIT\n\n.. image:: https://img.shields.io/twitter/follow/giswqs?style=social \n :target: https://twitter.com/giswqs\n\n.. image:: https://img.shields.io/badge/Donate-Buy%20me%20a%20coffee-yellowgreen.svg\n :target: https://www.buymeacoffee.com/giswqs\n\n\nImportant Note\n--------------\n.. image:: https://i.imgur.com/Ic8BA7C.png\n\nThis repository is related to the WhiteboxTools Python Frontend only. You can report issues to this repo if you have problems installing this Python package. If you encounter any tool functioning specific errors, please `open an issue`_ on Dr. John Lindsay's WhiteboxTools_ repo. \n\n**Links**\n\n* Authors: Dr. John Lindsay (https://jblindsay.github.io/ghrg/index.html)\n* Contributors: Dr. Qiusheng Wu (https://wetlands.io)\n* GitHub repo: https://github.com/giswqs/whitebox-python\n* WhiteboxTools: https://github.com/jblindsay/whitebox-tools\n* User Manual: https://www.whiteboxgeo.com/manual/wbt_book/intro.html\n* PyPI: https://pypi.org/project/whitebox/\n* conda-forge: https://anaconda.org/conda-forge/whitebox\n* Documentation: https://whitebox.readthedocs.io\n* Binder: https://gishub.org/whitebox-cloud\n* Free software: `MIT license`_\n\n\n**Contents**\n\n- `Description`_\n- `Installation`_\n- `whitebox Tutorials`_\n- `whitebox GUI`_\n- `Available Tools`_\n- `Supported Data Formats`_\n- `Contributing`_\n- `License`_\n- `Reporting Bugs`_\n- `Credits`_\n\n\n\nDescription\n-----------\nThe **whitebox** Python package is built on **WhiteboxTools**, an advanced geospatial data analysis platform developed by Prof. John Lindsay (webpage_; jblindsay_) at the University of Guelph's `Geomorphometry and Hydrogeomatics Research Group`_. *WhiteboxTools* can be used to perform common geographical information systems (GIS) analysis operations, such as cost-distance analysis, distance buffering, and raster reclassification. Remote sensing and image processing tasks include image enhancement (e.g. panchromatic sharpening, contrast adjustments), image mosaicing, numerous filtering operations, simple classification (k-means), and common image transformations. *WhiteboxTools* also contains advanced tooling for spatial hydrological analysis (e.g. flow-accumulation, watershed delineation, stream network analysis, sink removal), terrain analysis (e.g. common terrain indices such as slope, curvatures, wetness index, hillshading; hypsometric analysis; multi-scale topographic position analysis), and LiDAR data processing. LiDAR point clouds can be interrogated (LidarInfo, LidarHistogram), segmented, tiled and joined, analyized for outliers, interpolated to rasters (DEMs, intensity images), and ground-points can be classified or filtered. *WhiteboxTools* is not a cartographic or spatial data visualization package; instead it is meant to serve as an analytical backend for other data visualization software, mainly GIS.\n\n\nInstallation\n------------\n**whitebox** supports a variety of platforms, including Microsoft Windows, macOS, and Linux operating systems. Note that you will need to have Python 3.x installed. Python 2.x is not supported. The **whitebox** Python package can be installed using the following command: \n\n.. code:: python\n\n pip install whitebox\n\n\nIf you have installed **whitebox** Python package before and want to upgrade to the latest version, you can use the following command:\n\n.. code:: python\n\n pip install whitebox -U\n\n\nIt is recommended that you use a Python virtual environment (e.g., conda) to test the whitebox package. Please follow the `conda user guide`_ to install conda if necessary. Once you have conda installed, you can use Terminal or an Anaconda Prompt to create a Python virtual environment. Check `managing Python environment`_ for more information.\n\n.. code:: python\n\n conda create -n wbt python\n source activate wbt\n conda install whitebox -c conda-forge\n\n\nwhitebox Tutorials\n------------------\n\nLaunch the whitebox tutorial notebook directly with **mybinder.org** or **binder.pangeo.io** now:\n\n.. image:: https://mybinder.org/badge_logo.svg \n :target: https://gishub.org/whitebox-cloud\n\n.. image:: https://binder.pangeo.io/badge.svg \n :target: https://binder.pangeo.io/v2/gh/giswqs/whitebox/master?filepath=examples%2Fwhitebox.ipynb\n\n\nQuick Example\n=============\n\nTool names in the **whitebox** Python package can be called either using the snake_case or CamelCase convention (e.g. *lidar_info* or *LidarInfo*). See below for an example Python script (example.py_). If you are interested in using the *WhiteboxTools* command-line program, check `WhiteboxTools Usage`_.\n\n.. code:: python\n\n import os\n import pkg_resources\n import whitebox\n\n wbt = whitebox.WhiteboxTools()\n print(wbt.version())\n print(wbt.help())\n\n # identify the sample data directory of the package\n data_dir = os.path.dirname(pkg_resources.resource_filename(\"whitebox\", 'testdata/'))\n\n wbt.set_working_dir(data_dir)\n wbt.verbose = False\n wbt.feature_preserving_smoothing(\"DEM.tif\", \"smoothed.tif\", filter=9)\n wbt.breach_depressions(\"smoothed.tif\", \"breached.tif\")\n wbt.d_inf_flow_accumulation(\"breached.tif\", \"flow_accum.tif\")\n\n\nA Jupyter Notebook Tutorial for whitebox\n========================================\n\nThis tutorial can be accessed in three ways:\n\n- HTML version: https://gishub.org/whitebox-html\n- Viewable Notebook: https://gishub.org/whitebox-notebook\n- Interactive Notebook: https://gishub.org/whitebox-cloud\n\nLaunch this tutorial as an interactive Jupyter Notebook on the cloud - https://gishub.org/whitebox-cloud.\n\n.. image:: https://i.imgur.com/LF4UE1j.gif\n\n\nwhitebox GUI\n------------\n\nWhiteboxTools also provides a Graphical User Interface (GUI) - **WhiteboxTools Runner**, which can be invoked using the following Python script:\n\n.. code:: python\n\n import whitebox\n whitebox.Runner()\n\n.. image:: https://wetlands.io/file/images/whitebox.png\n\n\n\n\n\nTroubleshooting\n---------------\n\nLinux\n=====\nWhen using ``import whitebox``, if you get an error that says ``No module named '_tkinter', please install the python3-tk package``, you can try the following solution:\n\n- For Ubuntu, Linux Mint, etc: ``sudo apt-get install python3-tk``\n- For Manjaro, Arch Linux: ``sudo pacman -S tk``\n\n\n\n\nAvailable Tools\n---------------\nThe library currently contains **518** tools, which are each grouped based on their main function into one of the following categories: Data Tools, GIS Analysis, Hydrological Analysis, Image Analysis, LiDAR Analysis, Mathematical and Statistical Analysis, Stream Network Analysis, and Terrain Analysis. For a listing of available tools, complete with documentation and usage details, please see the `WhiteboxTools User Manual`_.\n\n\nSupported Data Formats\n----------------------\n\nThe WhiteboxTools library currently supports read/writing raster data in Whitebox GAT, GeoTIFF, ESRI (ArcGIS) ASCII and binary (.flt & .hdr), GRASS GIS, Idrisi, SAGA GIS (binary and ASCII), and Surfer 7 data formats. At present, there is limited ability in WhiteboxTools to read vector geospatial data. Support for Shapefile (and other common vector formats) will be enhanced within the library soon. \n\nContributing\n------------\n\nIf you would like to contribute to the project as a developer, follow these instructions to get started:\n\n1. Fork the whitebox project (https://github.com/giswqs/whitebox-python)\n2. Create your feature branch (git checkout -b my-new-feature)\n3. Commit your changes (git commit -am 'Add some feature')\n4. Push to the branch (git push origin my-new-feature)\n5. Create a new Pull Request\n\nLicense\n-------\n\nThe **whitebox** package is distributed under the `MIT license`_, a permissive open-source (free software) license.\n\n\nReporting Bugs\n--------------\nReport bugs at https://github.com/giswqs/whitebox-python/issues.\n\nIf you are reporting a bug, please include:\n\n* Your operating system name and version.\n* Any details about your local setup that might be helpful in troubleshooting.\n* Detailed steps to reproduce the bug.\n\nCredits\n-------\n\nThis package was created with Cookiecutter_ and the `audreyr/cookiecutter-pypackage`_ project template.\n\n.. _Cookiecutter: https://github.com/audreyr/cookiecutter\n.. _`audreyr/cookiecutter-pypackage`: https://github.com/audreyr/cookiecutter-pypackage\n.. _example.py: https://github.com/giswqs/whitebox/blob/master/whitebox/example.py\n.. _WhiteboxTools: https://github.com/jblindsay/whitebox-tools\n.. _webpage: https://jblindsay.github.io/ghrg/index.html\n.. _jblindsay: https://github.com/jblindsay\n.. _`Geomorphometry and Hydrogeomatics Research Group`: https://jblindsay.github.io/ghrg/index.html\n.. _`conda user guide`: https://conda.io/docs/user-guide/install/index.html\n.. _`managing Python environment`: https://conda.io/docs/user-guide/tasks/manage-environments.html\n.. _`WhiteboxTools Usage`: https://github.com/jblindsay/whitebox-tools#3-usage\n.. _`MIT license`: https://opensource.org/licenses/MIT\n.. _`open an issue`: https://github.com/jblindsay/whitebox-tools/issues\n.. _`WhiteboxTools User Manual`: https://www.whiteboxgeo.com/manual/wbt_book/intro.html\n\n\n=======\nHistory\n=======\n0.2.0 (2018-06-08)\n------------------\n0.1.0 (2018-06-06)\n------------------\n\n* First release on PyPI.\n\n\n", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/giswqs/whitebox", "keywords": "whitebox", "license": "MIT license", "maintainer": "", "maintainer_email": "", "name": "whitebox", "package_url": "https://pypi.org/project/whitebox/", "platform": "", "project_url": "https://pypi.org/project/whitebox/", "project_urls": { "Homepage": "https://github.com/giswqs/whitebox" }, "release_url": "https://pypi.org/project/whitebox/2.1.2/", "requires_dist": [ "Click (>=6.0)" ], "requires_python": "", "summary": "An advanced geospatial data analysis platform", "version": "2.1.2", "yanked": false, "yanked_reason": null }, "last_serial": 12971996, "releases": { "0.1.0": [ { "comment_text": "", "digests": { "md5": "dd0523b33201ccd8bcc00d2da0b75e8c", "sha256": "011ca1ad8e943703669d7dbd3a54f9adb7554549528998c2cbb688f7aa21fb76" }, "downloads": -1, "filename": "whitebox-0.1.0.tar.gz", "has_sig": false, "md5_digest": "dd0523b33201ccd8bcc00d2da0b75e8c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8275, "upload_time": "2018-06-07T03:01:38", "upload_time_iso_8601": "2018-06-07T03:01:38.814066Z", "url": "https://files.pythonhosted.org/packages/6d/c2/8559ada07bf9dc7e35be1c5c11460c3cb03de5c81e60b0b31e0e40a45ba2/whitebox-0.1.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.1.1": [ { "comment_text": "", "digests": { "md5": "b4b2e707abfffa9f09cf82463e6b346f", "sha256": "26de8034d920640b6e4743e481e8b3c4f9c8b3cf61503db4819509a9eba5b93a" }, "downloads": -1, "filename": "whitebox-0.1.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "b4b2e707abfffa9f09cf82463e6b346f", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 40753, "upload_time": "2018-06-07T17:58:12", "upload_time_iso_8601": "2018-06-07T17:58:12.736377Z", "url": "https://files.pythonhosted.org/packages/f4/9f/d155a7b47f07b4c9b26a9d899a35af1c3976d3f81108fde75661ed7d4e71/whitebox-0.1.1-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "053ca3a51230340c0616de498a96d523", "sha256": "ab3daffb7cf0f54107a188459e398e418f69b27f4ea187c76d2e382f5f0ce600" }, "downloads": -1, "filename": "whitebox-0.1.1.tar.gz", "has_sig": false, "md5_digest": "053ca3a51230340c0616de498a96d523", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 45096, "upload_time": "2018-06-07T17:58:14", "upload_time_iso_8601": "2018-06-07T17:58:14.085285Z", "url": "https://files.pythonhosted.org/packages/00/e9/681298803737b8d63e15bf1c998f938d94aac306792fd581d2b82c7171d9/whitebox-0.1.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.1.2": [ { "comment_text": "", "digests": { "md5": "38bea40272ab7a66cd38aeb2ed0a6370", "sha256": "66504172adce6797e26870d5007ad14d29cdac27613418ab4d10e8c8c8960886" }, "downloads": -1, "filename": "whitebox-0.1.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "38bea40272ab7a66cd38aeb2ed0a6370", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 40759, "upload_time": "2018-06-07T19:57:07", "upload_time_iso_8601": "2018-06-07T19:57:07.015017Z", "url": "https://files.pythonhosted.org/packages/5a/ed/aa2e949c134eaf2b21d90aa76c79e200d54fd3936988c63960e6161c76bb/whitebox-0.1.2-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "bf8807b26a4a0702c9ff586c148d78a2", "sha256": "243ffdefe12cd2482a9d947d6f236289dac9997876cc3a4b3942247a9899fb0f" }, "downloads": -1, "filename": "whitebox-0.1.2.tar.gz", "has_sig": false, "md5_digest": "bf8807b26a4a0702c9ff586c148d78a2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 45109, "upload_time": "2018-06-07T19:57:08", "upload_time_iso_8601": "2018-06-07T19:57:08.172255Z", "url": "https://files.pythonhosted.org/packages/7c/7b/2201474f5f6dd40a3d523d5d71aad045d9c7d7c47d1a7147c9d410a502d2/whitebox-0.1.2.tar.gz", "yanked": false, "yanked_reason": null } ], "0.2.0": [ { "comment_text": "", "digests": { "md5": "20ef4f54e143b7b7af3d83079b3b8e34", "sha256": "e6d9093b1e44f20f43174290e2a986fed9dffb55064a2b347fcaac7ac1282442" }, "downloads": -1, "filename": "whitebox-0.2.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "20ef4f54e143b7b7af3d83079b3b8e34", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 51199, "upload_time": "2018-06-08T14:01:06", "upload_time_iso_8601": "2018-06-08T14:01:06.871790Z", "url": "https://files.pythonhosted.org/packages/c2/37/6f5b2a11e6777b6e4a94710e79a5496ca7d1876d0b2aae62ed59089e866f/whitebox-0.2.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3393002b68278819bea23a166d0bb6f7", "sha256": "2431a45452289b0b96dc10b08ad44de7a290c8268df0c0f21e05cfffb1e93694" }, "downloads": -1, "filename": "whitebox-0.2.0.tar.gz", "has_sig": false, "md5_digest": "3393002b68278819bea23a166d0bb6f7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 77158, "upload_time": "2018-06-08T14:01:07", "upload_time_iso_8601": "2018-06-08T14:01:07.826552Z", "url": "https://files.pythonhosted.org/packages/7b/3c/7a225eb551e6b8fe195ecf601e3404aa4473829f66221b48eccc92452e65/whitebox-0.2.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.2.1": [ { "comment_text": "", "digests": { "md5": "87d7870065dccd2663df843a429b9dfa", "sha256": "c8892330f32597ca7310bf033921a1495ae90a1fd7e8d980ff634c86fb55dc7a" }, "downloads": -1, "filename": "whitebox-0.2.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "87d7870065dccd2663df843a429b9dfa", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 52261, "upload_time": "2018-09-01T23:30:17", "upload_time_iso_8601": "2018-09-01T23:30:17.231925Z", "url": "https://files.pythonhosted.org/packages/90/18/f1ee00060cc23308eb692fb8ba7b4785eb4a4fbc31c7f4bcec6bcfc56210/whitebox-0.2.1-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e0c22331f31f5ddfc677b3dfa833b674", "sha256": "06ffd4f228b6563cb41c06e28e19e1057a165be4581329dbd2deb4668b7f770c" }, "downloads": -1, "filename": "whitebox-0.2.1.tar.gz", "has_sig": false, "md5_digest": "e0c22331f31f5ddfc677b3dfa833b674", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 78119, "upload_time": "2018-09-01T23:30:18", "upload_time_iso_8601": "2018-09-01T23:30:18.624483Z", "url": "https://files.pythonhosted.org/packages/49/8c/de6b57c89290fbf274d565b389316f4e15e533e8afb9d60ed2788f68311c/whitebox-0.2.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.3.0": [ { "comment_text": "", "digests": { "md5": "42529cd63db1342c3252c38f8c3f5b5a", "sha256": "6c5553f05fda7d4fedf85673795ddbc1d4bbf4852a85f4f678927f7be2b22905" }, "downloads": -1, "filename": "whitebox-0.3.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "42529cd63db1342c3252c38f8c3f5b5a", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 52262, "upload_time": "2018-09-02T02:14:13", "upload_time_iso_8601": "2018-09-02T02:14:13.441064Z", "url": "https://files.pythonhosted.org/packages/7e/cd/86ffc6e98a69d22dee342c4237e3b8bbb89b0e39bf6a936eae1ef114652d/whitebox-0.3.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2590224e93055121cc9fef4390708495", "sha256": "ee61069181b3ec9bd60565ee33c1cf12b3e879ae932dc34e65be8fa4e9a99dd1" }, "downloads": -1, "filename": "whitebox-0.3.0.tar.gz", "has_sig": false, "md5_digest": "2590224e93055121cc9fef4390708495", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 78126, "upload_time": "2018-09-02T02:14:14", "upload_time_iso_8601": "2018-09-02T02:14:14.900602Z", "url": "https://files.pythonhosted.org/packages/ba/da/98121d80d03fe7cae2e8eb38c24627d1ba5707e34d8924aec0809d64a1bc/whitebox-0.3.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.3.1": [ { "comment_text": "", "digests": { "md5": "e02b8af7a5148f87526b27fa7e741b43", "sha256": "c657678e377906cdaa38119f5a6c7ea8613e22e4d722b90de204303208e6b7ff" }, "downloads": -1, "filename": "whitebox-0.3.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "e02b8af7a5148f87526b27fa7e741b43", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 56403, "upload_time": "2018-11-03T22:36:43", "upload_time_iso_8601": "2018-11-03T22:36:43.631678Z", "url": "https://files.pythonhosted.org/packages/02/7c/24dcbfc188796f71b0b1eea1e503252d78b10f8bf96e8a1cfc7b1a2eba8c/whitebox-0.3.1-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d60bb4b1737f27665fc655d86173ea6f", "sha256": "a0a13e239d39267e7964aad0f95b01d411348ea1bdda10e6cc1386a98998850e" }, "downloads": -1, "filename": "whitebox-0.3.1.tar.gz", "has_sig": false, "md5_digest": "d60bb4b1737f27665fc655d86173ea6f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 82414, "upload_time": "2018-11-03T22:36:45", "upload_time_iso_8601": "2018-11-03T22:36:45.396517Z", "url": "https://files.pythonhosted.org/packages/4b/df/b9a43d83f3f2c871e86f86f6903d95e1641bd017d5bd693e970b3ee043ad/whitebox-0.3.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.4.0": [ { "comment_text": "", "digests": { "md5": "6f8eabcc125f8dde0274a0964c4fdda4", "sha256": "91bd231e6325b19066cd99f46109f8e8621878e0ae316dee8d43d55746998637" }, "downloads": -1, "filename": "whitebox-0.4.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "6f8eabcc125f8dde0274a0964c4fdda4", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 56402, "upload_time": "2018-11-04T00:19:58", "upload_time_iso_8601": "2018-11-04T00:19:58.046652Z", "url": "https://files.pythonhosted.org/packages/dc/9c/1c47c2a52b5934a7e32af0d4f0dbf5049415367298df7bb096f8460be259/whitebox-0.4.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "88838a935504df295f37fe84cf4a2fe2", "sha256": "d34dcac1af94dc38dd63150f09b04a709d2ed197978715f32d8ff02f8c16f949" }, "downloads": -1, "filename": "whitebox-0.4.0.tar.gz", "has_sig": false, "md5_digest": "88838a935504df295f37fe84cf4a2fe2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 82427, "upload_time": "2018-11-04T00:19:59", "upload_time_iso_8601": "2018-11-04T00:19:59.413535Z", "url": "https://files.pythonhosted.org/packages/aa/67/5ee6390797acff7bd70e5742da687476c313d4f083adf81148055bff0e91/whitebox-0.4.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.5.0": [ { "comment_text": "", "digests": { "md5": "617932a661feabc5fa860be0756fc5c9", "sha256": "ad430ebc95783a2176445c248ca2a7f926dafdc44b60fa98ec3ebab239c80b2c" }, "downloads": -1, "filename": "whitebox-0.5.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "617932a661feabc5fa860be0756fc5c9", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 59980, "upload_time": "2018-11-22T21:19:35", "upload_time_iso_8601": "2018-11-22T21:19:35.997061Z", "url": "https://files.pythonhosted.org/packages/f8/58/4085198c3dfc560a42970a1211292eca26cf7c43ae691c160bb4245b9094/whitebox-0.5.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e0fb177e90b6e1166cc56e824694a6c8", "sha256": "3eb38d3c1c29b9123cfe5a56014065e0ac8537b2200c807e6a55782326aa19df" }, "downloads": -1, "filename": "whitebox-0.5.0.tar.gz", "has_sig": false, "md5_digest": "e0fb177e90b6e1166cc56e824694a6c8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 90192, "upload_time": "2018-11-22T21:19:37", "upload_time_iso_8601": "2018-11-22T21:19:37.723382Z", "url": "https://files.pythonhosted.org/packages/07/a8/b7591b580dd9c343d91816739332360fcef19f1d310abe723a6eb90420f1/whitebox-0.5.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.5.1": [ { "comment_text": "", "digests": { "md5": "27bdee870119fe41debd59145c99ca2c", "sha256": "fa51fafec4a06d6e37afe31babc62926fc30727418eb1fb895474e6f97dba5eb" }, "downloads": -1, "filename": "whitebox-0.5.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "27bdee870119fe41debd59145c99ca2c", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 60031, "upload_time": "2018-11-25T15:36:23", "upload_time_iso_8601": "2018-11-25T15:36:23.667752Z", "url": "https://files.pythonhosted.org/packages/28/99/b0090d4e3b6be32d476acaf48c2d9c8aacc9e70980e0f8f188b1aa4fb0ec/whitebox-0.5.1-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "27a017f44d725a375324bd91fef90eea", "sha256": "aa40c7044c550e9ec2ef99a7b1c3461442cc927b081a780d122ecbe8de792cff" }, "downloads": -1, "filename": "whitebox-0.5.1.tar.gz", "has_sig": false, "md5_digest": "27a017f44d725a375324bd91fef90eea", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 90350, "upload_time": "2018-11-25T15:36:25", "upload_time_iso_8601": "2018-11-25T15:36:25.166018Z", "url": "https://files.pythonhosted.org/packages/71/29/52806272ac24f398cfbef25dc56fa75234e8c3e87d86dcd4cb9f2761d76c/whitebox-0.5.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.6.0": [ { "comment_text": "", "digests": { "md5": "d8edc247cd41736c997f2b819eb9c38c", "sha256": "6b1325812df4a0ca8671960ccc6bd7c235f42419b90006d9fc37b391f08344bb" }, "downloads": -1, "filename": "whitebox-0.6.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "d8edc247cd41736c997f2b819eb9c38c", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 60303, "upload_time": "2019-01-09T02:55:41", "upload_time_iso_8601": "2019-01-09T02:55:41.696572Z", "url": "https://files.pythonhosted.org/packages/33/76/dff6bde85d4a527deca45a5447047a05a0e38726d065010d954e9de7f202/whitebox-0.6.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a32641c8cef5d66bb3987937854d94f8", "sha256": "2bfac3a11b0cf3e77f87d99fc6a430fe598d7df27426615f8700b0926fc3b87a" }, "downloads": -1, "filename": "whitebox-0.6.0.tar.gz", "has_sig": false, "md5_digest": "a32641c8cef5d66bb3987937854d94f8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 90663, "upload_time": "2019-01-09T02:55:43", "upload_time_iso_8601": "2019-01-09T02:55:43.486802Z", "url": "https://files.pythonhosted.org/packages/41/6f/f1b81c502f82b37daeba032d717eb2d51e39880cf08fbd7d3040f436cc24/whitebox-0.6.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.7.0": [ { "comment_text": "", "digests": { "md5": "ba58bd4d3fea47e3a4bdab03becfd1cd", "sha256": "279d52436b9f487079a17edabaaaea665f02e85a47c64bbf0cda1a9c4934a09a" }, "downloads": -1, "filename": "whitebox-0.7.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "ba58bd4d3fea47e3a4bdab03becfd1cd", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 62785, "upload_time": "2019-01-28T04:49:38", "upload_time_iso_8601": "2019-01-28T04:49:38.508149Z", "url": "https://files.pythonhosted.org/packages/c0/0d/5c58af6011773237d139193823c7fb149022dc8f5c9449c5a4cacae8239a/whitebox-0.7.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "49e1203c954a732365a385258ec03ba7", "sha256": "42b49298407f6c4360f6aa4958b302a83dfee095eb4eb494fc7280659d0d478b" }, "downloads": -1, "filename": "whitebox-0.7.0.tar.gz", "has_sig": false, "md5_digest": "49e1203c954a732365a385258ec03ba7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 92781, "upload_time": "2019-01-28T04:49:40", "upload_time_iso_8601": "2019-01-28T04:49:40.074507Z", "url": "https://files.pythonhosted.org/packages/c2/67/d7c9c00b63c21bb5b5725b0cd8a05937ca032ed19f5f5a86136b4e432269/whitebox-0.7.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.7.1": [ { "comment_text": "", "digests": { "md5": "8a4f7656247dac84b0d7f1cdc34a91e9", "sha256": "bbdb127cecc784b806b2e72953b9a47d87323dbeb9f4c3b20b6efa07ccd016cd" }, "downloads": -1, "filename": "whitebox-0.7.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "8a4f7656247dac84b0d7f1cdc34a91e9", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 63044, "upload_time": "2019-02-11T21:48:41", "upload_time_iso_8601": "2019-02-11T21:48:41.985162Z", "url": "https://files.pythonhosted.org/packages/dc/73/3043d2d038682679429b577b1c1fab356781b9aaa85e4c0d61023e3a8f3c/whitebox-0.7.1-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4c8a2d3723dee0dcb40e50f3d88ced09", "sha256": "58a61d17171b93eb52d54d8d2d10cebe5a8104c48a29489fbabb76d88a72fe63" }, "downloads": -1, "filename": "whitebox-0.7.1.tar.gz", "has_sig": false, "md5_digest": "4c8a2d3723dee0dcb40e50f3d88ced09", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 93143, "upload_time": "2019-02-11T21:48:43", "upload_time_iso_8601": "2019-02-11T21:48:43.891186Z", "url": "https://files.pythonhosted.org/packages/a4/8f/81f9e8912e7a91d164fc0a39fd67806f0632636eb9ba728c04eb6774993e/whitebox-0.7.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.8.0": [ { "comment_text": "", "digests": { "md5": "d0cfbdffb5cc10876476d55622a8f41b", "sha256": "0aa8dc2be75b011b56303f81dd87625a48db048c67c493c3017f5092e5b8b917" }, "downloads": -1, "filename": "whitebox-0.8.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "d0cfbdffb5cc10876476d55622a8f41b", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 64124, "upload_time": "2019-03-17T13:07:42", "upload_time_iso_8601": "2019-03-17T13:07:42.377386Z", "url": "https://files.pythonhosted.org/packages/13/35/d4f90522643c087230cf36963f64fc8fa89ea410a102128310b3b619c4a2/whitebox-0.8.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "357099dfdfe1b090177cde22af99ccb5", "sha256": "80904711ec7f7a060d6ef669faf3c6893726f580d0edfa1527a942175ad2c131" }, "downloads": -1, "filename": "whitebox-0.8.0.tar.gz", "has_sig": false, "md5_digest": "357099dfdfe1b090177cde22af99ccb5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 93207, "upload_time": "2019-03-17T13:07:44", "upload_time_iso_8601": "2019-03-17T13:07:44.027256Z", "url": "https://files.pythonhosted.org/packages/f9/45/37966d27357156037a75a75b020233dda7b5e4d40157d7c12d423be79dd8/whitebox-0.8.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.9.0": [ { "comment_text": "", "digests": { "md5": "3f63d1f3865740fd506456dcbcc27576", "sha256": "588ef1ea240a9f3726c8d848abac81efe32b6aa233270ebd071e4ca6d45c6a28" }, "downloads": -1, "filename": "whitebox-0.9.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "3f63d1f3865740fd506456dcbcc27576", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 64297, "upload_time": "2019-05-25T04:46:52", "upload_time_iso_8601": "2019-05-25T04:46:52.822191Z", "url": "https://files.pythonhosted.org/packages/b0/61/e9daa972cf0ff47788b9b0d6517efbedcca9ec281ee7012d290b0b21affe/whitebox-0.9.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8387fa15fc915fa73bbf10ac27927fa4", "sha256": "d5b02f77e1348d7158b4c79a753e9fa4ba39e4429145552fffe6ab78662e3e22" }, "downloads": -1, "filename": "whitebox-0.9.0.tar.gz", "has_sig": false, "md5_digest": "8387fa15fc915fa73bbf10ac27927fa4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 93450, "upload_time": "2019-05-25T04:46:55", "upload_time_iso_8601": "2019-05-25T04:46:55.147134Z", "url": "https://files.pythonhosted.org/packages/f4/99/3ff62b2495f2820c8383a69fc0fc1076d8759ceea86261a64cde817b9d2a/whitebox-0.9.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.0": [ { "comment_text": "", "digests": { "md5": "b9ea03162d818aa93a3b2f67e7fe151a", "sha256": "226fd11a401677e263cc63f605a2290396897c22fe10730ef78b0db0cd96b7f4" }, "downloads": -1, "filename": "whitebox-1.0.0.tar.gz", "has_sig": false, "md5_digest": "b9ea03162d818aa93a3b2f67e7fe151a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 60770, "upload_time": "2019-09-29T22:43:14", "upload_time_iso_8601": "2019-09-29T22:43:14.410387Z", "url": "https://files.pythonhosted.org/packages/3d/86/b41bc45375ce66c098750f9faeb228c662d688d28c174b16281ac9d16657/whitebox-1.0.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.1": [ { "comment_text": "", "digests": { "md5": "c2318b0b12055c06d7b74b2a2ad74a08", "sha256": "5c1469d0742ca06c6c4a45be27cbb31a8a4b817a27ed95b64d1ad6edbf1257eb" }, "downloads": -1, "filename": "whitebox-1.0.1.tar.gz", "has_sig": false, "md5_digest": "c2318b0b12055c06d7b74b2a2ad74a08", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 60791, "upload_time": "2019-10-21T12:55:35", "upload_time_iso_8601": "2019-10-21T12:55:35.122802Z", "url": "https://files.pythonhosted.org/packages/ed/1e/f116678073360ee9eb9d969a607257d2f028f5f3350631118087b48111e5/whitebox-1.0.1.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.2": [ { "comment_text": "", "digests": { "md5": "c80e799ba7f73ca86f80e45eb6147b95", "sha256": "3cb37af3021aa7477e71d5c6984b687caf46a975594bb03e23517f5349608408" }, "downloads": -1, "filename": "whitebox-1.0.2.tar.gz", "has_sig": false, "md5_digest": "c80e799ba7f73ca86f80e45eb6147b95", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 61181, "upload_time": "2019-11-01T19:20:34", "upload_time_iso_8601": "2019-11-01T19:20:34.627589Z", "url": "https://files.pythonhosted.org/packages/7d/5c/350b30b9bf472a1662980788cdbfe0f536065ed427f0ca5db549319013e6/whitebox-1.0.2.tar.gz", "yanked": false, "yanked_reason": null } ], "1.1.0": [ { "comment_text": "", "digests": { "md5": "68a466ff971a5b6324d0967d7d81853f", "sha256": "d0d1153561b4198ec80d8b3345b148a122122948d3b1377c1b39bf54eb6c8c0a" }, "downloads": -1, "filename": "whitebox-1.1.0.tar.gz", "has_sig": false, "md5_digest": "68a466ff971a5b6324d0967d7d81853f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 65112, "upload_time": "2019-12-10T23:31:37", "upload_time_iso_8601": "2019-12-10T23:31:37.319537Z", "url": "https://files.pythonhosted.org/packages/8f/40/64cbc0c37e1c1cddfa797c0685b607681c0d9d7571ce94bd93a4e988e678/whitebox-1.1.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.2.0": [ { "comment_text": "", "digests": { "md5": "634a8e0438236cf4e839ab9479001a32", "sha256": "7d2c62abbb7e8f29b7c21b2d817c3c09c8cf5fafa17b1794834597277aa8a9da" }, "downloads": -1, "filename": "whitebox-1.2.0.tar.gz", "has_sig": false, "md5_digest": "634a8e0438236cf4e839ab9479001a32", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 67898, "upload_time": "2020-02-22T02:23:49", "upload_time_iso_8601": "2020-02-22T02:23:49.214672Z", "url": "https://files.pythonhosted.org/packages/d0/00/20a13399e121d91aec1344c36757253a36ad4ba396eb6fd16d9d8344657d/whitebox-1.2.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.3.0": [ { "comment_text": "", "digests": { "md5": "6d79691f099fa60b420fabe9e4707f0c", "sha256": "1514cfeaef2d3c1018f26bb184d453f4917d3c5521e95abf56eacc237d9a206c" }, "downloads": -1, "filename": "whitebox-1.3.0.tar.gz", "has_sig": false, "md5_digest": "6d79691f099fa60b420fabe9e4707f0c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 69314, "upload_time": "2020-06-08T02:27:15", "upload_time_iso_8601": "2020-06-08T02:27:15.612753Z", "url": "https://files.pythonhosted.org/packages/aa/be/3493b42d6b430dbef2699d5e5e9c37c9f7281aacc14c94eee7998e16977a/whitebox-1.3.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.3.1": [ { "comment_text": "", "digests": { "md5": "b754c2df6a0442f8293f371024071996", "sha256": "7df1ed1a3debd1637ef8ac61d47278ed4e62a58439131868bc6c31b812785f53" }, "downloads": -1, "filename": "whitebox-1.3.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "b754c2df6a0442f8293f371024071996", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 62776, "upload_time": "2020-07-23T14:16:52", "upload_time_iso_8601": "2020-07-23T14:16:52.864075Z", "url": "https://files.pythonhosted.org/packages/83/36/910d4e175dd2ab66f8fc1dd315400e0e2fdef0d1408f9cea164649032070/whitebox-1.3.1-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "60974a802d2e12e9abe37fefe12f1c76", "sha256": "014f310da070c015ae55cab72b6f39e54509ca2762b7e2e373d6e1314b41820e" }, "downloads": -1, "filename": "whitebox-1.3.1.tar.gz", "has_sig": false, "md5_digest": "60974a802d2e12e9abe37fefe12f1c76", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 69751, "upload_time": "2020-07-23T14:16:54", "upload_time_iso_8601": "2020-07-23T14:16:54.137118Z", "url": "https://files.pythonhosted.org/packages/9a/21/f9f860417645f4b7c0eeb958533978e53bd38d55597c2994aeb540999515/whitebox-1.3.1.tar.gz", "yanked": false, "yanked_reason": null } ], "1.4.0": [ { "comment_text": "", "digests": { "md5": "ec22410fd68e86c3cf67cb236b117128", "sha256": "b7fdda65a6019eafc9348ca05ac02a59cd129fdddc271b35653d0b20cd0478d1" }, "downloads": -1, "filename": "whitebox-1.4.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "ec22410fd68e86c3cf67cb236b117128", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 63717, "upload_time": "2020-09-04T20:12:53", "upload_time_iso_8601": "2020-09-04T20:12:53.283419Z", "url": "https://files.pythonhosted.org/packages/9e/80/72ddfe55b9fad2909c3befb6360c38b6bf5fb131197c390d01109aaaa6f8/whitebox-1.4.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0aa533ceb3d411214b4a9c4f7ac0bd57", "sha256": "99912976a1cbc578ea3ddb61095e8605dd74964cba6ec3fe8d46cdfb341b2196" }, "downloads": -1, "filename": "whitebox-1.4.0.tar.gz", "has_sig": false, "md5_digest": "0aa533ceb3d411214b4a9c4f7ac0bd57", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 70653, "upload_time": "2020-09-04T20:12:54", "upload_time_iso_8601": "2020-09-04T20:12:54.522209Z", "url": "https://files.pythonhosted.org/packages/1b/07/8ccb042dbeb96a155b2e35d1cede9d55cfd48084ca40ed22d918602655eb/whitebox-1.4.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.4.1": [ { "comment_text": "", "digests": { "md5": "3e38650e347d9650abaa51bbb34514ed", "sha256": "3c19d8aae264082651474da070ca2f5b3a3f34f237156e07c7d4e159e2ad2765" }, "downloads": -1, "filename": "whitebox-1.4.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "3e38650e347d9650abaa51bbb34514ed", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 63725, "upload_time": "2021-04-21T01:28:56", "upload_time_iso_8601": "2021-04-21T01:28:56.451872Z", "url": "https://files.pythonhosted.org/packages/67/c7/1487e5f98f3528d56a29bdd44601b3b65c24022680eca10c9bfc7b64237d/whitebox-1.4.1-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5fa9708d84e806b7d56495aad9992058", "sha256": "bf0d3cc8e2ea7f3cc7ecbd6435c4f1728d40fd22ffaad104e464848c60a5bda8" }, "downloads": -1, "filename": "whitebox-1.4.1.tar.gz", "has_sig": false, "md5_digest": "5fa9708d84e806b7d56495aad9992058", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 70668, "upload_time": "2021-04-21T01:28:57", "upload_time_iso_8601": "2021-04-21T01:28:57.725711Z", "url": "https://files.pythonhosted.org/packages/86/9f/fe95242b8db6eae91a96ed3756aa88646859cde06a82861e74907bed6b42/whitebox-1.4.1.tar.gz", "yanked": false, "yanked_reason": null } ], "1.5.0": [ { "comment_text": "", "digests": { "md5": "85d96ca3acf091b7f6ebbee8078517be", "sha256": "2a2479f02093ca453c34837949612d8cdca71f02e71c248ee1fff942480f9e92" }, "downloads": -1, "filename": "whitebox-1.5.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "85d96ca3acf091b7f6ebbee8078517be", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 67528, "upload_time": "2021-06-06T20:16:30", "upload_time_iso_8601": "2021-06-06T20:16:30.318808Z", "url": "https://files.pythonhosted.org/packages/c8/ff/e6be757f2341db6adeab20fa949865297f68818d78dd493ca5a38d83b7d2/whitebox-1.5.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0582d21a1191c3b880f954079238af37", "sha256": "712b1e18ce12cda425f40b0e974693f021be7056fdcd383da5b993f9e39f42ad" }, "downloads": -1, "filename": "whitebox-1.5.0.tar.gz", "has_sig": false, "md5_digest": "0582d21a1191c3b880f954079238af37", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 74445, "upload_time": "2021-06-06T20:16:31", "upload_time_iso_8601": "2021-06-06T20:16:31.786458Z", "url": "https://files.pythonhosted.org/packages/76/44/dfea0887569269f8564ec6934f7661bf94e35f3cbec4ea2758881c5033ed/whitebox-1.5.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.5.1": [ { "comment_text": "", "digests": { "md5": "c8f0be8b492247eb742534f8188cddbb", "sha256": "e2d9a777a5687f407f21b117111cbea0524078f3c748a77fd014a02d30a518b7" }, "downloads": -1, "filename": "whitebox-1.5.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "c8f0be8b492247eb742534f8188cddbb", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 67487, "upload_time": "2021-06-10T03:20:40", "upload_time_iso_8601": "2021-06-10T03:20:40.932719Z", "url": "https://files.pythonhosted.org/packages/75/ac/fc5d97776e2f1401ee99fd86815c14ae927f7966b69f358d8356aa513579/whitebox-1.5.1-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "75772467ab4fc3352ac961e07e634f67", "sha256": "125b50b8a1dc6b359064f2f82ee0bd7ec0b6ca165c3eedc191e2863e5036ccb0" }, "downloads": -1, "filename": "whitebox-1.5.1.tar.gz", "has_sig": false, "md5_digest": "75772467ab4fc3352ac961e07e634f67", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 74424, "upload_time": "2021-06-10T03:20:42", "upload_time_iso_8601": "2021-06-10T03:20:42.469143Z", "url": "https://files.pythonhosted.org/packages/78/ac/473578e02562439874f6b141a4484143c6a1e3344a4794b5f8ec0686ef8c/whitebox-1.5.1.tar.gz", "yanked": false, "yanked_reason": null } ], "1.5.2": [ { "comment_text": "", "digests": { "md5": "b32039c91472816311a68d4c3dd4ba18", "sha256": "256955642324a10cf664588be5ddfef4c8442cc795f2c2a1294d6cf8fbba7280" }, "downloads": -1, "filename": "whitebox-1.5.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "b32039c91472816311a68d4c3dd4ba18", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 67571, "upload_time": "2021-08-19T04:13:40", "upload_time_iso_8601": "2021-08-19T04:13:40.418657Z", "url": "https://files.pythonhosted.org/packages/26/9e/a9c27099c51fd3b74c01ae5b521fccb9e8c6b7e8a709784d1e057070590f/whitebox-1.5.2-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5f990c1b7ba881b51e48631cf8576426", "sha256": "b66a4f0bce62529adca70cfa96a81fe7ba6b000e5bf20f807f22616441c258a2" }, "downloads": -1, "filename": "whitebox-1.5.2.tar.gz", "has_sig": false, "md5_digest": "5f990c1b7ba881b51e48631cf8576426", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 74480, "upload_time": "2021-08-19T04:13:41", "upload_time_iso_8601": "2021-08-19T04:13:41.435266Z", "url": "https://files.pythonhosted.org/packages/7a/01/58ec05064883a6b6305bd4bae12ed1116f67566a3a836ef5789a31d0e4fb/whitebox-1.5.2.tar.gz", "yanked": false, "yanked_reason": null } ], "2.0.0": [ { "comment_text": "", "digests": { "md5": "62220adc8c47c174ea6087b1ea7cdea9", "sha256": "906c4abc74ac91575b1f69254853f94b5ba7e7182f88a04717c69f9571c977eb" }, "downloads": -1, "filename": "whitebox-2.0.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "62220adc8c47c174ea6087b1ea7cdea9", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 70424, "upload_time": "2021-08-31T18:27:28", "upload_time_iso_8601": "2021-08-31T18:27:28.710877Z", "url": "https://files.pythonhosted.org/packages/7c/da/1bb419fe233dfedca063ee265890c9e177e29e675a2c0907d1bd4c070fee/whitebox-2.0.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5347a7508dc50078db2a89c68dc489f0", "sha256": "9e13d3a17a31ffdbed7d0908c5490c4ff12e1672fe3d056a803daec6193e6229" }, "downloads": -1, "filename": "whitebox-2.0.0.tar.gz", "has_sig": false, "md5_digest": "5347a7508dc50078db2a89c68dc489f0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 77254, "upload_time": "2021-08-31T18:27:29", "upload_time_iso_8601": "2021-08-31T18:27:29.768986Z", "url": "https://files.pythonhosted.org/packages/e7/5b/f06cd7bab3c5158778cd6cbdbd36c3dc63556fdf15e93484f8256c32af3c/whitebox-2.0.0.tar.gz", "yanked": false, "yanked_reason": null } ], "2.0.1": [ { "comment_text": "", "digests": { "md5": "cefd43293556746bafb39549d115d128", "sha256": "4624772464387dafed4eb125ed35ceee05ea6f86745522b971d20c0f9e432e0d" }, "downloads": -1, "filename": "whitebox-2.0.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "cefd43293556746bafb39549d115d128", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 70445, "upload_time": "2021-08-31T19:46:16", "upload_time_iso_8601": "2021-08-31T19:46:16.965622Z", "url": "https://files.pythonhosted.org/packages/6d/68/72548999ec1f547a72809bf2fd5c43d91e73a7c0cc2106d31e4f273b33fe/whitebox-2.0.1-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "332c0ccb34c742056b45a19c478a956d", "sha256": "ee5e870f0fc9cf6ed2ec4c5245859e28b770dda640e6ebf8e6c7e0b32ca41047" }, "downloads": -1, "filename": "whitebox-2.0.1.tar.gz", "has_sig": false, "md5_digest": "332c0ccb34c742056b45a19c478a956d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 77224, "upload_time": "2021-08-31T19:46:18", "upload_time_iso_8601": "2021-08-31T19:46:18.211739Z", "url": "https://files.pythonhosted.org/packages/79/09/40d44acae42ede2937fc78f2a468b874b4bae58cf4b1b83dd05affeb6ef7/whitebox-2.0.1.tar.gz", "yanked": false, "yanked_reason": null } ], "2.0.2": [ { "comment_text": "", "digests": { "md5": "d7b5e38414604aaf8dbd7b3edf9b301d", "sha256": "5ff5edd51ac13be291b8b360c8635c01c4e50887f23eed2c02b3f481bdd41bd1" }, "downloads": -1, "filename": "whitebox-2.0.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "d7b5e38414604aaf8dbd7b3edf9b301d", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 70536, "upload_time": "2021-09-05T17:38:11", "upload_time_iso_8601": "2021-09-05T17:38:11.506351Z", "url": "https://files.pythonhosted.org/packages/bb/14/875e9a8b71ec7a2835d65fc205a2c87bce7fd316ad4e6a023b47d7fd05f7/whitebox-2.0.2-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e548412a254a9f55ebaf701fbd6507f9", "sha256": "d7d07d5603c91b87726b798441962efaafe706331bf1fea4a4227faf335f1683" }, "downloads": -1, "filename": "whitebox-2.0.2.tar.gz", "has_sig": false, "md5_digest": "e548412a254a9f55ebaf701fbd6507f9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 77357, "upload_time": "2021-09-05T17:38:13", "upload_time_iso_8601": "2021-09-05T17:38:13.074265Z", "url": "https://files.pythonhosted.org/packages/02/2a/3a1e3090f8b275d5b095061a499efd212a983a627d97ca61d019a3cd4e77/whitebox-2.0.2.tar.gz", "yanked": false, "yanked_reason": null } ], "2.0.3": [ { "comment_text": "", "digests": { "md5": "b899555baab38a1619b497045e164f3f", "sha256": "44438df315d0e590dbdf4f917287ec9d620004c154e4452ce05f98e350179255" }, "downloads": -1, "filename": "whitebox-2.0.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "b899555baab38a1619b497045e164f3f", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 70942, "upload_time": "2021-09-11T02:40:12", "upload_time_iso_8601": "2021-09-11T02:40:12.255475Z", "url": "https://files.pythonhosted.org/packages/2f/1e/9177ae756a23b6386d42b4b1202e3fb7718e4a28f5f1c1aa2277baa5f6b0/whitebox-2.0.3-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c2ec16ac1061009dee17a3812e372925", "sha256": "2699779e3ef3c9feaba70a1c723d1fb1c212c1a858bf6ac6cbfa07fd30fda942" }, "downloads": -1, "filename": "whitebox-2.0.3.tar.gz", "has_sig": false, "md5_digest": "c2ec16ac1061009dee17a3812e372925", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 77728, "upload_time": "2021-09-11T02:40:13", "upload_time_iso_8601": "2021-09-11T02:40:13.386284Z", "url": "https://files.pythonhosted.org/packages/bb/a1/b8154ca25665a22a352e9418ad95bad7a410fd7ffc1ec6e763d10d0a7ff6/whitebox-2.0.3.tar.gz", "yanked": false, "yanked_reason": null } ], "2.1.0": [ { "comment_text": "", "digests": { "md5": "396678332a81abbbad17324f5ff5bac6", "sha256": "09d7d14bbdb0434ce3e0fff6d9994425f71c1e54be4ed8af1426ab7d5d5bddac" }, "downloads": -1, "filename": "whitebox-2.1.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "396678332a81abbbad17324f5ff5bac6", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 75353, "upload_time": "2022-02-02T02:54:27", "upload_time_iso_8601": "2022-02-02T02:54:27.930296Z", "url": "https://files.pythonhosted.org/packages/f3/eb/66081023fb8b9ec2bd09dc98661cda3dac3ce030902180749ec80b5b977b/whitebox-2.1.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ca2fbaf5b6ab7f079055e97521ba67b4", "sha256": "c25c756cee687c340be676271cbe7dffb5ecac35cacda1751a1908c786901d3a" }, "downloads": -1, "filename": "whitebox-2.1.0.tar.gz", "has_sig": false, "md5_digest": "ca2fbaf5b6ab7f079055e97521ba67b4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 81476, "upload_time": "2022-02-02T02:54:29", "upload_time_iso_8601": "2022-02-02T02:54:29.494276Z", "url": "https://files.pythonhosted.org/packages/14/20/00178076a5c8e746070d43f317a3fdd600442c5211d766dd0928d290092e/whitebox-2.1.0.tar.gz", "yanked": false, "yanked_reason": null } ], "2.1.1": [ { "comment_text": "", "digests": { "md5": "0ae60d6368504581895670b49cc26073", "sha256": "e1d96ff5301b434126e58163af3a9c411540d69358e2edf17be315bbc3d58dc7" }, "downloads": -1, "filename": "whitebox-2.1.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "0ae60d6368504581895670b49cc26073", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 75771, "upload_time": "2022-02-03T02:38:04", "upload_time_iso_8601": "2022-02-03T02:38:04.069413Z", "url": "https://files.pythonhosted.org/packages/b3/85/1e4a0d7df90a04492ed5c9e9d6a65209c53f11006636b1b6e222ce3b2cbe/whitebox-2.1.1-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d9bad180bf2e20c652abd550373d0b98", "sha256": "da8e7d1adba627fa14776c7ca7a440cfbf6ab0435cf40f99c2365b78288ebb66" }, "downloads": -1, "filename": "whitebox-2.1.1.tar.gz", "has_sig": false, "md5_digest": "d9bad180bf2e20c652abd550373d0b98", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 81878, "upload_time": "2022-02-03T02:38:06", "upload_time_iso_8601": "2022-02-03T02:38:06.579697Z", "url": "https://files.pythonhosted.org/packages/8f/cc/ba93c987de85830f8f032fb50a520d1b152619304246dc1f66fc79a8a32f/whitebox-2.1.1.tar.gz", "yanked": false, "yanked_reason": null } ], "2.1.2": [ { "comment_text": "", "digests": { "md5": "d86859f67ea1a56ba07e76d6f085d431", "sha256": "60c12e643597d034a257b35f685347736d2b68c5ad8c544ebaab6bcb2a547021" }, "downloads": -1, "filename": "whitebox-2.1.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "d86859f67ea1a56ba07e76d6f085d431", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 75936, "upload_time": "2022-02-22T14:22:40", "upload_time_iso_8601": "2022-02-22T14:22:40.114181Z", "url": "https://files.pythonhosted.org/packages/ac/8f/e0ad71cd80ca771066b837134da714100f267f8f6d0a6dd9481d9b0ff147/whitebox-2.1.2-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "234df5c46660cac0966e8a2dc040e78e", "sha256": "4060d546371e5041627913d894497d1f0cbacc9992de60175a9cb8836724472f" }, "downloads": -1, "filename": "whitebox-2.1.2.tar.gz", "has_sig": false, "md5_digest": "234df5c46660cac0966e8a2dc040e78e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 81994, "upload_time": "2022-02-22T14:22:41", "upload_time_iso_8601": "2022-02-22T14:22:41.860150Z", "url": "https://files.pythonhosted.org/packages/bc/d8/bbd021d37c860ecdd4ee7c7efdfb3994cdfcb95f4800fec82092abd0170d/whitebox-2.1.2.tar.gz", "yanked": false, "yanked_reason": null } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "d86859f67ea1a56ba07e76d6f085d431", "sha256": "60c12e643597d034a257b35f685347736d2b68c5ad8c544ebaab6bcb2a547021" }, "downloads": -1, "filename": "whitebox-2.1.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "d86859f67ea1a56ba07e76d6f085d431", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 75936, "upload_time": "2022-02-22T14:22:40", "upload_time_iso_8601": "2022-02-22T14:22:40.114181Z", "url": "https://files.pythonhosted.org/packages/ac/8f/e0ad71cd80ca771066b837134da714100f267f8f6d0a6dd9481d9b0ff147/whitebox-2.1.2-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "234df5c46660cac0966e8a2dc040e78e", "sha256": "4060d546371e5041627913d894497d1f0cbacc9992de60175a9cb8836724472f" }, "downloads": -1, "filename": "whitebox-2.1.2.tar.gz", "has_sig": false, "md5_digest": "234df5c46660cac0966e8a2dc040e78e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 81994, "upload_time": "2022-02-22T14:22:41", "upload_time_iso_8601": "2022-02-22T14:22:41.860150Z", "url": "https://files.pythonhosted.org/packages/bc/d8/bbd021d37c860ecdd4ee7c7efdfb3994cdfcb95f4800fec82092abd0170d/whitebox-2.1.2.tar.gz", "yanked": false, "yanked_reason": null } ], "vulnerabilities": [] }