{ "info": { "author": "PaddlePaddle and Echarts team", "author_email": "", "bugtrack_url": null, "classifiers": [], "description": "[![Build Status](https://travis-ci.org/PaddlePaddle/VisualDL.svg?branch=develop)](https://travis-ci.org/PaddlePaddle/VisualDL)\n[![Documentation Status](https://img.shields.io/badge/docs-latest-brightgreen.svg?style=flat)](https://github.com/PaddlePaddle/VisualDL/tree/develop/docs)\n[![Release](https://img.shields.io/github/release/PaddlePaddle/VisualDL.svg)](https://github.com/PaddlePaddle/VisualDL/releases)\n[![License](https://img.shields.io/badge/license-Apache%202-blue.svg)](LICENSE)\n\n

\n \n

\n\n## Introduction\nVisualDL is a deep learning visualization tool that can help design deep learning jobs.\nIt includes features such as scalar, parameter distribution, model structure and image visualization.\nCurrently it is being developed at a high pace.\nNew features will be continuously added.\n\nAt present, most DNN frameworks use Python as their primary language. VisualDL supports Python by nature.\nUsers can get plentiful visualization results by simply add a few lines of Python code into their model before training.\n\nBesides Python SDK, VisualDL was writen in C++ on the low level. It also provides C++ SDK that\ncan be integrated into other platforms. \n\n\n## Component\nVisualDL provides following components:\n\n- scalar\n- histogram\n- image\n- audio\n- graph\n- high dimensional\n\n### Scalar\nScalar can be used to show the trends of error during training.\n\n

\n\n

\n\n### Histogram\nHistogram can be used to visualize parameter distribution and trends for any tensor.\n\n

\n\n

\n\n### Image\nImage can be used to visualize any tensor or intermediate generated image.\n\n

\n\n

\n\n### Audio\nAudio can be used to play input audio samples or generated audio samples.\n\n### Graph\nGraph is compatible with ONNX ([Open Neural Network Exchange](https://github.com/onnx/onnx)),\nCooperated with Python SDK, VisualDL can be compatible with most major DNN frameworks, including\nPaddlePaddle, PyTorch and MXNet.\n\n

\n \n

\n\n### High Dimensional\nHigh Dimensional can be used to visualize data embeddings by projecting high-dimensional data into 2D / 3D.\n\n

\n\n

\n\n## Quick Start\nTo give the VisualDL a quick test, please use the following commands.\n\n```\n# Install the VisualDL. Preferably under a virtual environment or anaconda.\npip install --upgrade visualdl\n\n# run a demo, vdl_create_scratch_log will create logs for testing.\nvdl_create_scratch_log\nvisualdl --logdir=scratch_log --port=8080\n\n# visit http://127.0.0.1:8080\n```\n\nIf you encounter the error `TypeError: __init__() got an unexpected keyword argument 'file'`, that is due to protobuf version is not 3.5+\uff0csimply run `pip install --upgrade protobuf` will fix the issue.\n\nIf you run into any other issues in above steps, it could be error caused by environmental issues by different python or pip versions.\nFollowing installation methods might fix the issues.\n\n## Install with Virtualenv\n\n[Virtualenv](https://virtualenv.pypa.io/en/stable/) creates isolated Python environment that prevents interfering\nby other Python programs on the same machine and make sure Python and pip are located properly.\n\nOn macOS, install pip and virtualenv by:\n```\nsudo easy_install pip\npip install --upgrade virtualenv\n```\n\nOn Linux, install pip and virtualenv by:\n```\nsudo apt-get install python3-pip python3-dev python-virtualenv\n```\n\nThen create a Virtualenv environment by one of following command:\n```\nvirtualenv ~/vdl # for Python2.7\nvirtualenv -p python3 ~/vdl for Python 3.x\n```\n\n```~/vdl``` will be your Virtualenv directory, you may choose to install anywhere.\n\nActivate your Virtualenv environment by:\n```\nsource ~/vdl/bin/activate\n```\n\nNow you should be able to install VisualDL and run our demo:\n\n```\npip install --upgrade visualdl\n\n# run a demo, vdl_create_scratch_log will create logs for testing.\nvdl_create_scratch_log\nvisualdl --logdir=scratch_log --port=8080\n\n# visit http://127.0.0.1:8080\n```\n\nIf you still have issues installing VisualDL from Virtualenv, try following installation method.\n\n\n## Install with Anaconda\n\nAnaconda is a python distribution, with installation and package management tools. Also it is an environment manager,\nwhich provides the facility to create different python environments, each with their own settings.\n\nFollow the instructions on the [Anaconda download site](https://www.anaconda.com/download) to download and install Anaconda.\nDownload Python 3.6 version command-Line installer.\n\nCreate a conda environment named ```vdl``` or anything you want by:\n```\nconda create -n vdl pip python=2.7 # or python=3.3, etc.\n```\n\nActivate the conda environment by:\n```\nsource activate vdl\n```\n\nNow you should be able to install VisualDL and run our demo:\n\n```\npip install --upgrade visualdl\n\n# run a demo, vdl_create_scratch_log will create logs for testing.\nvdl_create_scratch_log\nvisualdl --logdir=scratch_log --port=8080\n\n# visit http://127.0.0.1:8080\n```\n\nIf you still have issues installing VisualDL, try installing from sources as in following section.\n\n\n### Install from source\n```\n#Preferably under a virtualenv or anaconda.\ngit clone https://github.com/PaddlePaddle/VisualDL.git\ncd VisualDL\n\npython setup.py bdist_wheel\npip install --upgrade dist/visualdl-*.whl\n```\n\nIf there are still issues regarding the ```pip install```, you can still start Visual DL by starting the dev server\n[here](https://github.com/PaddlePaddle/VisualDL/blob/develop/docs/how_to_dev_frontend_en.md)\n\n\n## SDK\nVisualDL provides both Python SDK and C++ SDK in order to fit more use cases.\n\n\n### Python SDK\nVisualDL now supports both Python 2 and Python 3.\nBelow is an example of creating a simple Scalar component and inserting data from different timestamps:\n\n```python\nimport random\nfrom visualdl import LogWriter\n\nlogdir = \"./tmp\"\nlogger = LogWriter(logdir, sync_cycle=10000)\n\n# mark the components with 'train' label.\nwith logger.mode(\"train\"):\n # create a scalar component called 'scalars/scalar0'\n scalar0 = logger.scalar(\"scalars/scalar0\")\n\n# add some records during DL model running.\nfor step in range(100):\n scalar0.add_record(step, random.random())\n```\n\n### C++ SDK\nHere is the C++ SDK identical to the Python SDK example above:\n\n```c++\n#include \n#include \n#include \"visualdl/logic/sdk.h\"\n\nnamespace vs = visualdl;\nnamespace cp = visualdl::components;\n\nint main() {\n const std::string dir = \"./tmp\";\n vs::LogWriter logger(dir, 10000);\n\n logger.SetMode(\"train\");\n auto tablet = logger.AddTablet(\"scalars/scalar0\");\n\n cp::Scalar scalar0(tablet);\n\n for (int step = 0; step < 1000; step++) {\n float v = (float)std::rand() / RAND_MAX;\n scalar0.AddRecord(step, v);\n }\n\n return 0;\n}\n```\n\n## Launch Visual DL\nAfter some logs have been generated during training, users can launch Visual DL application to see real-time data visualization by:\n\n\n```\nvisualdl --logdir \n```\n\nvisualDL also supports following optional parameters:\n\n- `--host` set IP\n- `--port` set port\n- `-m / --model_pb` specify ONNX format for model file to view graph\n\n\n### Contribute\n\nVisualDL is initially created by [PaddlePaddle](http://www.paddlepaddle.org/) and\n[ECharts](http://echarts.baidu.com/).\nWe welcome everyone to use, comment and contribute to Visual DL :)\n\n\n", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "", "keywords": "visualization deeplearning", "license": "Apache License", "maintainer": "", "maintainer_email": "", "name": "visualdl", "package_url": "https://pypi.org/project/visualdl/", "platform": "", "project_url": "https://pypi.org/project/visualdl/", "project_urls": null, "release_url": "https://pypi.org/project/visualdl/1.3.0/", "requires_dist": [ "Flask", "numpy", "Pillow", "protobuf (>=3.1.0)", "scipy" ], "requires_python": "", "summary": "Visualize Deep Learning", "version": "1.3.0" }, "last_serial": 5160431, "releases": { "0.0.1a0": [ { "comment_text": "", "digests": { "md5": "a84978c9a8b072532b174f3cb681ed5a", "sha256": "7f3d8b28d20dc2730c1e3357c8e8b88fdd5d51cc1175bf8b385922e96a13bc54" }, "downloads": -1, "filename": "visualdl-0.0.1a0-cp27-cp27m-macosx_10_12_x86_64.whl", "has_sig": false, "md5_digest": "a84978c9a8b072532b174f3cb681ed5a", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 4030059, "upload_time": "2018-01-16T04:50:35", "url": "https://files.pythonhosted.org/packages/24/5e/1b622f5ffd3cd6a3a88ea2803295c089bb66dab7b0e47aa36c0b939f11b4/visualdl-0.0.1a0-cp27-cp27m-macosx_10_12_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "f9deca9a4a6f0a75f37a4abd915ecc53", "sha256": "48723da125394aa2194b1ab9f69b1b801faff7b40ad85b43a872243d9041694a" }, "downloads": -1, "filename": "visualdl-0.0.1a0-cp27-cp27m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "f9deca9a4a6f0a75f37a4abd915ecc53", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 4932834, "upload_time": "2018-01-16T03:39:44", "url": "https://files.pythonhosted.org/packages/ea/47/91f556d06c1a95e39b8b2f09970930ebb4c7894229faca25fb7bce50bc92/visualdl-0.0.1a0-cp27-cp27m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "aa9d21b513110c9b70d11ec045846d82", "sha256": "516b62e89d443573f80d0e95173b812a93427a664e8e3c08e2404413eac1e5e2" }, "downloads": -1, "filename": "visualdl-0.0.1a0-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "aa9d21b513110c9b70d11ec045846d82", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 4933092, "upload_time": "2018-01-16T03:40:19", "url": "https://files.pythonhosted.org/packages/6f/14/dbb28a62224b3cb53d06a3c0d69492b95aeff94e17b3000e7ab6116ed54d/visualdl-0.0.1a0-cp27-cp27mu-manylinux1_x86_64.whl" } ], "0.0.1a1": [ { "comment_text": "", "digests": { "md5": "f864d6bfa5f15492ca73d755f120484a", "sha256": "f87b3833f9163be0c7a6946915b6321ecdd1535122464bd147371840523d3480" }, "downloads": -1, "filename": "visualdl-0.0.1a1-cp27-cp27m-macosx_10_12_x86_64.whl", "has_sig": false, "md5_digest": "f864d6bfa5f15492ca73d755f120484a", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 4031453, "upload_time": "2018-01-17T07:34:03", "url": "https://files.pythonhosted.org/packages/f9/e8/221797196f6831fddb8a51924b2c0ea244d82850ad399eed7fab566138af/visualdl-0.0.1a1-cp27-cp27m-macosx_10_12_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "7125e3accfa77be4dd948b8638647bb5", "sha256": "7b50faedd0b31aa29812ee213ccabf4a5421a7088d1b4c79c7b69039e494d8b9" }, "downloads": -1, "filename": "visualdl-0.0.1a1-cp27-cp27m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "7125e3accfa77be4dd948b8638647bb5", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 4934210, "upload_time": "2018-01-16T09:11:22", "url": "https://files.pythonhosted.org/packages/b1/a3/5885c1aa3027ff0508e3ce1bd90d5278c84f5ea69cea76329f506909b3cd/visualdl-0.0.1a1-cp27-cp27m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "95625d627fea8f49eb308e7f71b9ea3d", "sha256": "3c46eb7cd03ae3a3257e82b24d8eabc23f0ce49c0a53cebbf0a7dfba2578d77c" }, "downloads": -1, "filename": "visualdl-0.0.1a1-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "95625d627fea8f49eb308e7f71b9ea3d", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 4934471, "upload_time": "2018-01-16T09:11:48", "url": "https://files.pythonhosted.org/packages/1c/8b/73fbfa28a0bc06315ba81ba69b032393db2231de92bbdf7284d8c22f4f25/visualdl-0.0.1a1-cp27-cp27mu-manylinux1_x86_64.whl" } ], "0.0.1a2": [ { "comment_text": "", "digests": { "md5": "caf3d6e925b12c64ec383c1094f21a8e", "sha256": "b8090f1bc759085806489118cdf8f36dd106a51ff665b325ac99c5118532081e" }, "downloads": -1, "filename": "visualdl-0.0.1a2-cp27-cp27m-macosx_10_12_x86_64.whl", "has_sig": false, "md5_digest": "caf3d6e925b12c64ec383c1094f21a8e", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 4064434, "upload_time": "2018-01-18T09:55:23", "url": "https://files.pythonhosted.org/packages/5c/2c/62cdf52baaa86e16749b1aaf58af8b2187061fbef22e5137d9e8c46daae6/visualdl-0.0.1a2-cp27-cp27m-macosx_10_12_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "08805b83546b7b0ead5313574683cb92", "sha256": "77970d1926467ba5383c6cc96b8210c0133bcc19f08f1b0ab75e60cc474bcd04" }, "downloads": -1, "filename": "visualdl-0.0.1a2-cp27-cp27m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "08805b83546b7b0ead5313574683cb92", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 4967128, "upload_time": "2018-01-18T10:50:26", "url": "https://files.pythonhosted.org/packages/35/bc/e3094b944afdb2f469bc662121356ef451a8fbde1444bcdb11051317caeb/visualdl-0.0.1a2-cp27-cp27m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "1362477215f3d39e55908c4c48903146", "sha256": "3d25d62aa8d37614a8add8c7dca60aa5bfa1cf8fcc1e5ed3e3c337682d8072d9" }, "downloads": -1, "filename": "visualdl-0.0.1a2-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "1362477215f3d39e55908c4c48903146", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 4967222, "upload_time": "2018-01-18T10:51:19", "url": "https://files.pythonhosted.org/packages/2e/39/abffb0398dc07ba9f3bb569824844d0882335e92d1ac4b516c3ce03558ad/visualdl-0.0.1a2-cp27-cp27mu-manylinux1_x86_64.whl" } ], "0.0.2": [ { "comment_text": "", "digests": { "md5": "efe190f830de24e4a2cbad3231528b6f", "sha256": "23e1e01e23cd379ee034ef727db7df87afc2ef286fc173da045a43fe0766df45" }, "downloads": -1, "filename": "visualdl-0.0.2-cp27-cp27m-macosx_10_12_intel.whl", "has_sig": false, "md5_digest": "efe190f830de24e4a2cbad3231528b6f", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 3996389, "upload_time": "2018-03-14T20:59:11", "url": "https://files.pythonhosted.org/packages/97/1d/6b96ab76c840989e000cd3c670d7f28c20893622436967af9bbf20159822/visualdl-0.0.2-cp27-cp27m-macosx_10_12_intel.whl" }, { "comment_text": "", "digests": { "md5": "f8a32044a0a19d29353a6da2333bda1c", "sha256": "1be0abf4d611336d8960a4a150e248ba0374d61a77cf25d9cad9360c711c3e8e" }, "downloads": -1, "filename": "visualdl-0.0.2-cp27-cp27m-macosx_10_13_intel.whl", "has_sig": false, "md5_digest": "f8a32044a0a19d29353a6da2333bda1c", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 3996533, "upload_time": "2018-03-14T02:28:59", "url": "https://files.pythonhosted.org/packages/75/21/08067f32c32a7ede3deff3a21ed75f753f08e655888e996f8463a9ad53c5/visualdl-0.0.2-cp27-cp27m-macosx_10_13_intel.whl" }, { "comment_text": "", "digests": { "md5": "dc7b106af0cf66c7817be669393f584a", "sha256": "99470e9e7570b5cba41cc90a19958185555a7632118c22f2f1ec29f8a41c37e4" }, "downloads": -1, "filename": "visualdl-0.0.2-cp27-cp27m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "dc7b106af0cf66c7817be669393f584a", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 4701312, "upload_time": "2018-03-14T02:30:06", "url": "https://files.pythonhosted.org/packages/03/57/0d41a452642910b2a1bed927d42446850ce4d5c1ad2b311cc2ac3099a211/visualdl-0.0.2-cp27-cp27m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "8de33a8994035bddddcdfea057592635", "sha256": "df3a3b4934608f9a1940bbd0b64a9dbf54cf46bbde88e241d18c419bc1f9c782" }, "downloads": -1, "filename": "visualdl-0.0.2-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "8de33a8994035bddddcdfea057592635", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 4701316, "upload_time": "2018-03-14T02:30:28", "url": "https://files.pythonhosted.org/packages/e0/e2/0e1e6f7a96f4b8b591add82eac790e8e9d5112c17a6a44e366cab1a901d3/visualdl-0.0.2-cp27-cp27mu-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "dc367bfeba2e8f1aa148b422c91a6c12", "sha256": "d706f65b730b963327ebe6077c76318ee45d105f467ab8bd0991967df1a35751" }, "downloads": -1, "filename": "visualdl-0.0.2-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "dc367bfeba2e8f1aa148b422c91a6c12", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 4701510, "upload_time": "2018-03-14T19:16:29", "url": "https://files.pythonhosted.org/packages/b5/e0/c177e04157803ba724e3d428ab61a1c40f4d2a7dd902f297ea952e10397f/visualdl-0.0.2-cp34-cp34m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "01cf5dbc4685cbefd7028276029c4523", "sha256": "3a291d01fbcc76afb3f49bbeb9043d7efbb048801113aff09251fe2c2cc554d6" }, "downloads": -1, "filename": "visualdl-0.0.2-cp36-cp36m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "01cf5dbc4685cbefd7028276029c4523", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 3995113, "upload_time": "2018-03-14T02:29:28", "url": "https://files.pythonhosted.org/packages/49/e1/689915c671621560fefb94b782e3416f5f15eed35455c5e53fa359e4a61c/visualdl-0.0.2-cp36-cp36m-macosx_10_6_intel.whl" }, { "comment_text": "", "digests": { "md5": "1e7c471444ea9734cbc641a2deba0706", "sha256": "11eebcc5d1cd83bbf637cbf2b32350cb8d301064da51d5f997ab4340968f19f9" }, "downloads": -1, "filename": "visualdl-0.0.2-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "1e7c471444ea9734cbc641a2deba0706", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 4701105, "upload_time": "2018-03-14T21:06:56", "url": "https://files.pythonhosted.org/packages/80/a9/78968634d8522e6e2e03ac7347cac6ca080a2b2c3b18aa3ea6693f3cc304/visualdl-0.0.2-cp36-cp36m-manylinux1_x86_64.whl" } ], "0.0.2.1": [ { "comment_text": "", "digests": { "md5": "9339870a12adf6c1e56d17edeb359735", "sha256": "bf3729259e20987893f413801e6503acd8bd7769584dcc452ec2d532e7478bd6" }, "downloads": -1, "filename": "visualdl-0.0.2.1-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "9339870a12adf6c1e56d17edeb359735", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 4701110, "upload_time": "2018-03-14T22:31:21", "url": "https://files.pythonhosted.org/packages/bd/f8/3a1dcc1594ff482069a78440227e1f11c0d4948ea244a6d2f439a26d63bd/visualdl-0.0.2.1-cp35-cp35m-manylinux1_x86_64.whl" } ], "1.0.0": [ { "comment_text": "", "digests": { "md5": "ef2f50c9fa2a3619163d901a1aab2e63", "sha256": "ed0531365a0c2d552256961f6e6c8c46ade0b997b9e9e181921e6f8ec29b4adc" }, "downloads": -1, "filename": "visualdl-1.0.0-cp27-cp27m-macosx_10_6_x86_64.whl", "has_sig": false, "md5_digest": "ef2f50c9fa2a3619163d901a1aab2e63", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 4423792, "upload_time": "2018-04-18T21:13:57", "url": "https://files.pythonhosted.org/packages/42/94/8b5a61a0dc4ca7fdb0193dad55fb6f9b59eac239f8cb982766781c52e00b/visualdl-1.0.0-cp27-cp27m-macosx_10_6_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "76846bbde2d4013d8ba7068591724365", "sha256": "af0396a177613298cee7ead7f3ad15a325e773210eb1184ce235d9cdcc2871c4" }, "downloads": -1, "filename": "visualdl-1.0.0-cp27-cp27m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "76846bbde2d4013d8ba7068591724365", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 5259062, "upload_time": "2018-04-17T00:18:21", "url": "https://files.pythonhosted.org/packages/ba/a3/20c3eabf8dfc892fb2ba2c753ee147261167abec64ade964922210ad8951/visualdl-1.0.0-cp27-cp27m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "2d786e39bc1a4ed99672f921bf6ca8fe", "sha256": "cc569732016039909f747923469d8e3d5c8892d238ff379b8be80ef73d6207c1" }, "downloads": -1, "filename": "visualdl-1.0.0-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "2d786e39bc1a4ed99672f921bf6ca8fe", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 5259190, "upload_time": "2018-04-17T00:18:25", "url": "https://files.pythonhosted.org/packages/ee/47/687fc1bcfdb809109c2c393a3f0965a3ba61ab78f9e9c502aa1e46edc1dc/visualdl-1.0.0-cp27-cp27mu-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "423a3d9c146442f672933280d8e5dd4b", "sha256": "8c402b003323ed38c8b32db2b6cf37a4e2f732370acf19dad449435b9cb58b40" }, "downloads": -1, "filename": "visualdl-1.0.0-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "423a3d9c146442f672933280d8e5dd4b", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 5256316, "upload_time": "2018-04-17T00:18:29", "url": "https://files.pythonhosted.org/packages/08/4f/6da977256ae1d59ea7a6b3cf503d6d1ab83b315accffe39272f824f8366d/visualdl-1.0.0-cp34-cp34m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "d88507e58fd3e13ff0d3545c230d336b", "sha256": "c12726b1ee4d9b7c3e4bff7a55ac4b8c411e90d180898aadfe474e1b3aa22e6b" }, "downloads": -1, "filename": "visualdl-1.0.0-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "d88507e58fd3e13ff0d3545c230d336b", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 5255806, "upload_time": "2018-04-17T00:18:32", "url": "https://files.pythonhosted.org/packages/8c/cf/51fdd216dfc1116d84c91fd3a2364165542db130b91ddd69a2556c7d597d/visualdl-1.0.0-cp35-cp35m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "52bfeb230c1617d70e95fbf2da651c42", "sha256": "75b773169256547b4e13c381ad3889defeaa03c674b914cc5ce54433e62c5bfc" }, "downloads": -1, "filename": "visualdl-1.0.0-cp36-cp36m-macosx_10_13_intel.whl", "has_sig": false, "md5_digest": "52bfeb230c1617d70e95fbf2da651c42", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 4431954, "upload_time": "2018-04-17T00:18:35", "url": "https://files.pythonhosted.org/packages/4d/9a/b4cdcd09542a9a1c92e0b0f41213a91cfde98b9edc2ce298083ecdb0529d/visualdl-1.0.0-cp36-cp36m-macosx_10_13_intel.whl" }, { "comment_text": "", "digests": { "md5": "0e3079ac8a8011570dcca7b6ef092224", "sha256": "d4da972bb97b8788f2bed019b62a59743d5f1b3b78a2af07e78a48ccaab8247f" }, "downloads": -1, "filename": "visualdl-1.0.0-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "0e3079ac8a8011570dcca7b6ef092224", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 5255822, "upload_time": "2018-04-17T00:18:38", "url": "https://files.pythonhosted.org/packages/c5/14/3adad1df6069d41b2f8e60c1cc7ba488115d2ae14ce213c58482be91ad70/visualdl-1.0.0-cp36-cp36m-manylinux1_x86_64.whl" } ], "1.1.0": [ { "comment_text": "", "digests": { "md5": "31dfcba4ca3e6b7e747be0885da1c3b2", "sha256": "5d320da0aebd8c2bb43a89a2a7ddb0eb4bfb621094e0049446054b2e1c7751e3" }, "downloads": -1, "filename": "visualdl-1.1.0-cp27-cp27m-macosx_10_6_x86_64.whl", "has_sig": false, "md5_digest": "31dfcba4ca3e6b7e747be0885da1c3b2", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 4443313, "upload_time": "2018-07-31T20:45:57", "url": "https://files.pythonhosted.org/packages/a9/b3/80eed0f5d6f7e79bfba8f654def9d7748adf29b19c087571b6f19aad49b5/visualdl-1.1.0-cp27-cp27m-macosx_10_6_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "1b2be8514f0acdd39de769564f4ee079", "sha256": "2969cc3cdc0310715a34c5e63e1245067193337ecaa1358852569263801086e9" }, "downloads": -1, "filename": "visualdl-1.1.0-cp27-cp27m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "1b2be8514f0acdd39de769564f4ee079", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 5284768, "upload_time": "2018-07-31T20:39:28", "url": "https://files.pythonhosted.org/packages/fa/99/ecfede6eb670ff55d4b9700284c694fdbfee26c5db51c78260d54f6afa3f/visualdl-1.1.0-cp27-cp27m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "b5e5db6411345487065af8b3a190f609", "sha256": "2e7969aedd7e03c3678c85d66f59428dfc94932eb819c9c45fa13ac49b0b970f" }, "downloads": -1, "filename": "visualdl-1.1.0-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "b5e5db6411345487065af8b3a190f609", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 5284709, "upload_time": "2018-07-31T20:40:36", "url": "https://files.pythonhosted.org/packages/b9/bb/111f2a29417398948347ea39cbd2ccfc7349a2afc6d2be28e69e10e01ea8/visualdl-1.1.0-cp27-cp27mu-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "b34b70cc5fb0e78da7ba36369454d882", "sha256": "983967166e51ce6c2b9ac67aa8f2fac4341c31ba331a801d1e0ac959af830c52" }, "downloads": -1, "filename": "visualdl-1.1.0-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "b34b70cc5fb0e78da7ba36369454d882", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 5284039, "upload_time": "2018-07-31T20:41:16", "url": "https://files.pythonhosted.org/packages/23/c2/d2bac04a3d60118410343721548d68d8063030f807fd9a044937f8d7b64f/visualdl-1.1.0-cp34-cp34m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "8710f88105451c87c356f8116812cba4", "sha256": "f7cdbe82aa704a2349108acabd8700009d20851750dffd3d5e2ff6cd5263a318" }, "downloads": -1, "filename": "visualdl-1.1.0-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "8710f88105451c87c356f8116812cba4", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 5283339, "upload_time": "2018-07-31T20:41:42", "url": "https://files.pythonhosted.org/packages/d0/a9/9f818834c4f419490efd35f003f36d956af822372d3aee7d8c9b94e74e1e/visualdl-1.1.0-cp35-cp35m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "51c7bf8a3cdfc839b714c3805a70fdd3", "sha256": "de60acc368f426ea73af945cef285a64f8906d0238f15f8849189940a9292590" }, "downloads": -1, "filename": "visualdl-1.1.0-cp36-cp36m-macosx_10_7_x86_64.whl", "has_sig": false, "md5_digest": "51c7bf8a3cdfc839b714c3805a70fdd3", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 4442475, "upload_time": "2018-07-31T20:47:29", "url": "https://files.pythonhosted.org/packages/25/c7/1fa1d99ca1176a2f40bd39ca0c5477304be1346f69016b009591107796ae/visualdl-1.1.0-cp36-cp36m-macosx_10_7_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "5ba065103adc73cb190cee2027c4e504", "sha256": "01ea9e08ca909f61ead3156a320b4a758550c2203a5e3698a92aa3687f3e3ff9" }, "downloads": -1, "filename": "visualdl-1.1.0-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "5ba065103adc73cb190cee2027c4e504", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 5283331, "upload_time": "2018-07-31T20:43:15", "url": "https://files.pythonhosted.org/packages/af/db/77e7baf6df44a4ff4e8b7ec5c49d3e23ffcb7394cc4bfab0113ef6f2002f/visualdl-1.1.0-cp36-cp36m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "5c597ef4141b24004f32b95a1e84c9b9", "sha256": "716abd37fa72e12a4a689200882082d5c6d39e46d2351ebd9630f05c3814faa3" }, "downloads": -1, "filename": "visualdl-1.1.0-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "5c597ef4141b24004f32b95a1e84c9b9", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 3081169, "upload_time": "2018-08-06T18:20:20", "url": "https://files.pythonhosted.org/packages/5b/09/ce29187c06ec8bf8b47293e39aea6aa06213e218d389f58c18798e623e05/visualdl-1.1.0-cp36-cp36m-win_amd64.whl" } ], "1.2.0": [ { "comment_text": "", "digests": { "md5": "d9e729406abc01d39523dfac8dfb3f4f", "sha256": "2e2840662c926b173ab5d27a729816592f80c4f7335ce139fd590b09de051156" }, "downloads": -1, "filename": "visualdl-1.2.0-cp27-cp27m-macosx_10_6_x86_64.whl", "has_sig": false, "md5_digest": "d9e729406abc01d39523dfac8dfb3f4f", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 4443621, "upload_time": "2018-09-27T22:03:04", "url": "https://files.pythonhosted.org/packages/38/12/8e4b3e88bfbebd575d910f1875aa81f22d368a385e5333f3b0476d6ddf97/visualdl-1.2.0-cp27-cp27m-macosx_10_6_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "49ace181cbf556ab53060915d03aed0b", "sha256": "dd3ebdedf0a21015d72c664463800110e4a399ea4561421d3c838a94e6f4fd48" }, "downloads": -1, "filename": "visualdl-1.2.0-cp27-cp27m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "49ace181cbf556ab53060915d03aed0b", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 5285181, "upload_time": "2018-09-27T22:07:00", "url": "https://files.pythonhosted.org/packages/ca/28/a81e12cdb2004ffd37ded1722f3168435f118bdbc7ad42f9b4b1344381e4/visualdl-1.2.0-cp27-cp27m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "b58d1e80b39a4506e506163ef7f122ac", "sha256": "d1f8efe6eb0a6933c5a85ec6d30f06f02f8c8816af823f86ace38c04810b7206" }, "downloads": -1, "filename": "visualdl-1.2.0-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "b58d1e80b39a4506e506163ef7f122ac", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 5285123, "upload_time": "2018-09-27T22:08:03", "url": "https://files.pythonhosted.org/packages/bc/0d/d97706fef88a9a742fd3c0c9998a55875c8536ddc2d7e9dd17a60a74c4f4/visualdl-1.2.0-cp27-cp27mu-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "70092ce745aec500724c51fdc0603cfb", "sha256": "bed1cb7b848ba9b4d0b3d78203f03c2485f5ff36239f388c39140565165fae77" }, "downloads": -1, "filename": "visualdl-1.2.0-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "70092ce745aec500724c51fdc0603cfb", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 5284351, "upload_time": "2018-09-27T22:09:21", "url": "https://files.pythonhosted.org/packages/7f/c1/fb3fc9a8b8a0eda6b1215924115dba3128ba0ebe6534ace76fbb5da1f395/visualdl-1.2.0-cp34-cp34m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "391266eae922b0d88e191893f2101426", "sha256": "0e943087d2b6b47c954bc4b9ef848feb352d28dbbf4cbe5f6a7b093b36378767" }, "downloads": -1, "filename": "visualdl-1.2.0-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "391266eae922b0d88e191893f2101426", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 5283651, "upload_time": "2018-09-27T22:10:00", "url": "https://files.pythonhosted.org/packages/57/d0/3f2f5ee454f173024aaca8795a489381e599424ae3ef6e8694f4daf7d80e/visualdl-1.2.0-cp35-cp35m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "e420198f15406347fea17f4ae0448472", "sha256": "0022376ca32b7cad1087e1630d607467a4c9765fc5474aa53d67eb4269f7e7f2" }, "downloads": -1, "filename": "visualdl-1.2.0-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "e420198f15406347fea17f4ae0448472", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 3040197, "upload_time": "2018-09-28T06:26:01", "url": "https://files.pythonhosted.org/packages/2f/bb/c0d7f52971c1fd7625d0f9f5d9435cc47ce7acd7424c89f25f1403f9f0be/visualdl-1.2.0-cp35-cp35m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "0e4baedb0b8e9e21c6985991a40851f1", "sha256": "4f5e7c7e277c6ae558496837fc8603e19932d11b5bad5e8e034525b06bf46272" }, "downloads": -1, "filename": "visualdl-1.2.0-cp36-cp36m-macosx_10_7_x86_64.whl", "has_sig": false, "md5_digest": "0e4baedb0b8e9e21c6985991a40851f1", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 4442785, "upload_time": "2018-09-27T22:04:06", "url": "https://files.pythonhosted.org/packages/f0/ab/9137dc482fae0e30c334db34cf06b1c334794e187d5611fcf0d1406fb726/visualdl-1.2.0-cp36-cp36m-macosx_10_7_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "b968c1ff91ed685136cb63c7fa635c86", "sha256": "c4f53b9dd29769b8b8c02c719822b0e25fd06a83fb0054abdeebc7f1c937edb9" }, "downloads": -1, "filename": "visualdl-1.2.0-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "b968c1ff91ed685136cb63c7fa635c86", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 5283642, "upload_time": "2018-09-27T22:20:26", "url": "https://files.pythonhosted.org/packages/4b/0e/ecc33ac03fbd0fe2b1dfea6ff7842cb8218b6d4cbe57e94e77930bd5cfde/visualdl-1.2.0-cp36-cp36m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "c55fa15171cdc872c28f49094ea5d9e1", "sha256": "45f60dda42b0c68143913775fd23c27b10e79b647fe10b210b4f89ca86445fb9" }, "downloads": -1, "filename": "visualdl-1.2.0-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "c55fa15171cdc872c28f49094ea5d9e1", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 3040086, "upload_time": "2018-09-28T06:26:23", "url": "https://files.pythonhosted.org/packages/be/0a/9bafedf2e2139ac7421d102ebb7d6448e1ef1dbb366d142b2fbe01a71a88/visualdl-1.2.0-cp36-cp36m-win_amd64.whl" } ], "1.2.1": [ { "comment_text": "", "digests": { "md5": "9f970c68cd13c0b966df6a1e7c229d02", "sha256": "89b3150665f9789113a5a3598055e342bd7aa2c76833452218ddb951a34802c7" }, "downloads": -1, "filename": "visualdl-1.2.1-cp27-cp27m-macosx_10_6_x86_64.whl", "has_sig": false, "md5_digest": "9f970c68cd13c0b966df6a1e7c229d02", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 4460784, "upload_time": "2018-12-10T02:00:51", "url": "https://files.pythonhosted.org/packages/6a/cf/1057cfd53b2a70393c0e7e0214b5f79ce889ad78792a085b16e985daae89/visualdl-1.2.1-cp27-cp27m-macosx_10_6_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "be6be263bacf5e23a702a94ab94b0ee6", "sha256": "f7e349e64b21e897e61382417799068d4c979edb49dc9e897aeae421b87cf160" }, "downloads": -1, "filename": "visualdl-1.2.1-cp27-cp27m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "be6be263bacf5e23a702a94ab94b0ee6", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 5287419, "upload_time": "2018-12-10T02:00:56", "url": "https://files.pythonhosted.org/packages/4c/70/4da7c3b7eb6c5a1c9f1a9bb2780d7b908774dfb720689976ea3c18bfe70e/visualdl-1.2.1-cp27-cp27m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "83abbc092e70cb901d34b6708bc3acfc", "sha256": "83bc430c7f593c0f72cbe9cf372f551831de0a03143cc37dddd54514d29a788d" }, "downloads": -1, "filename": "visualdl-1.2.1-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "83abbc092e70cb901d34b6708bc3acfc", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 5287293, "upload_time": "2018-12-10T02:01:00", "url": "https://files.pythonhosted.org/packages/68/3a/a5d5d883b7a9608c37cf47c8096ae211c20acc57a525ad90892153df936c/visualdl-1.2.1-cp27-cp27mu-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "2f4ec99782fdb8026f59f90ef03767b0", "sha256": "7adfd2eb82b90b2c61c4262ed0a861dc832f739b71b84cf34c963eb0f32ceec7" }, "downloads": -1, "filename": "visualdl-1.2.1-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "2f4ec99782fdb8026f59f90ef03767b0", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 5294270, "upload_time": "2018-12-10T02:01:03", "url": "https://files.pythonhosted.org/packages/c6/38/7dc00159f717949e8a9f35d85ca4dc75f2ef368d801e307233a9e9340185/visualdl-1.2.1-cp34-cp34m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "f13dd10b2b7dcaf8db2182ed58a738ee", "sha256": "8b4bd46c01ae9275dbc869c25211c91156c74c89eaebccfcc319d77ab9c9fe87" }, "downloads": -1, "filename": "visualdl-1.2.1-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "f13dd10b2b7dcaf8db2182ed58a738ee", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 5293616, "upload_time": "2018-12-10T02:01:06", "url": "https://files.pythonhosted.org/packages/ab/f7/71d09b9f3310671fae297726ebcb7f42ac2ef206f9406d8d678fd6ff98c8/visualdl-1.2.1-cp35-cp35m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "c8dde20db854c3b2e7f1d9d32192d000", "sha256": "f3e15f23b1d1b0aeeb723165f9bd03102972e39fd7915a4a045ee7076115c596" }, "downloads": -1, "filename": "visualdl-1.2.1-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "c8dde20db854c3b2e7f1d9d32192d000", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 3051649, "upload_time": "2018-12-10T02:01:09", "url": "https://files.pythonhosted.org/packages/7f/be/28544f674b985837df452199ba4c197df7f91f78cb14fb1e8b61132dca3d/visualdl-1.2.1-cp35-cp35m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "b313fcf984a5d0f8eac3780e5a361f79", "sha256": "769045e011af5a941db44493c4e36a2e91f9a77198c4e9801c956d42b67bfd2f" }, "downloads": -1, "filename": "visualdl-1.2.1-cp36-cp36m-macosx_10_7_x86_64.whl", "has_sig": false, "md5_digest": "b313fcf984a5d0f8eac3780e5a361f79", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 4459119, "upload_time": "2018-12-10T02:01:12", "url": "https://files.pythonhosted.org/packages/fb/3e/1620b75b8346fe87e5927ea5023010f66ea95229b962a829fa5b6cff300b/visualdl-1.2.1-cp36-cp36m-macosx_10_7_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "dddbc2aaddf77ce4b34a17ed5625f3da", "sha256": "620b9cb3f576607c1c965a21ab96978a67962d52d5b40a13f4716fca057efcce" }, "downloads": -1, "filename": "visualdl-1.2.1-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "dddbc2aaddf77ce4b34a17ed5625f3da", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 5293616, "upload_time": "2018-12-10T02:01:15", "url": "https://files.pythonhosted.org/packages/11/bf/ea5c5e5ddf401f1ffdb0d9353ee6f1a7684b0cf2e1d13b7137467d22f65b/visualdl-1.2.1-cp36-cp36m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "967c9444d0cd517d95fd1f1daa954daf", "sha256": "7a0b70989cdb44b292c1a177cf9c6ed74fd619f66af06747368dd3800ac5de26" }, "downloads": -1, "filename": "visualdl-1.2.1-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "967c9444d0cd517d95fd1f1daa954daf", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 3055768, "upload_time": "2018-12-10T02:01:17", "url": "https://files.pythonhosted.org/packages/c4/68/282423e5278604c183232cc90764895073024279e0c2370bc8947362e869/visualdl-1.2.1-cp36-cp36m-win_amd64.whl" } ], "1.3.0": [ { "comment_text": "", "digests": { "md5": "1fcf1d018dad30ed4186e071bed90274", "sha256": "eb4be1cfa5f8173f68bf8e8dfec9be338fa67b2e52ea93caed7075be2bf3685e" }, "downloads": -1, "filename": "visualdl-1.3.0-cp27-cp27m-macosx_10_6_x86_64.whl", "has_sig": false, "md5_digest": "1fcf1d018dad30ed4186e071bed90274", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 4353824, "upload_time": "2019-02-23T11:43:50", "url": "https://files.pythonhosted.org/packages/e1/3a/bfa4c1d77e3630b51826cb9659ddd92449513e167bc5264d923eb15e17e0/visualdl-1.3.0-cp27-cp27m-macosx_10_6_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "fd0ea3e52f53b740c2b697d50b4f6480", "sha256": "565c96ada245762b54a6938e12ec0f2610956ac52488fda9648754e19ad034fe" }, "downloads": -1, "filename": "visualdl-1.3.0-cp27-cp27m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "fd0ea3e52f53b740c2b697d50b4f6480", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 5084567, "upload_time": "2019-02-23T11:43:53", "url": "https://files.pythonhosted.org/packages/57/90/97cab163d115453c7fdd8be3741089b46de352d14b11a669187aab5f919f/visualdl-1.3.0-cp27-cp27m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "8327f6741b214a445d2c7078587802f2", "sha256": "ebf1f1bd6cfb01bbc49777050511c0fe66b253a1abf43d4130bd1b3d292dfaa2" }, "downloads": -1, "filename": "visualdl-1.3.0-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "8327f6741b214a445d2c7078587802f2", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 5084694, "upload_time": "2019-02-23T11:43:56", "url": "https://files.pythonhosted.org/packages/a1/74/93dd2896a11aacb9594d238a34bbe704ec6948abd8ec592fe7ec716102ac/visualdl-1.3.0-cp27-cp27mu-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "bdb64e9b1bb6adb5799593536769cbf6", "sha256": "b2a5945dbee47c29def02b7e80cdd8e0f03ab7b38f4c6d819f2943b8e8c8366f" }, "downloads": -1, "filename": "visualdl-1.3.0-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "bdb64e9b1bb6adb5799593536769cbf6", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 2921689, "upload_time": "2019-04-18T13:51:59", "url": "https://files.pythonhosted.org/packages/6a/21/56970ff90a8460a56487a240740ce0551940675ceffe578140160cc79850/visualdl-1.3.0-cp27-cp27m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "71998cec152acf01a64d48cd640c9a33", "sha256": "613646ed08ad4b82d808eada339d06f3ea6f55ecf93401d1e2d6141a9ddf66f9" }, "downloads": -1, "filename": "visualdl-1.3.0-cp34-cp34m-macosx_10_6_x86_64.whl", "has_sig": false, "md5_digest": "71998cec152acf01a64d48cd640c9a33", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 4352409, "upload_time": "2019-04-18T13:52:04", "url": "https://files.pythonhosted.org/packages/71/e4/c4639585680809e6e7a15617d2065f39aaf51276dc076026840f58eed932/visualdl-1.3.0-cp34-cp34m-macosx_10_6_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "3638ea99a901f03681dfb5eb89ac1b93", "sha256": "d6a8de55e18d3060b24b687d929817e8b69b0f2cc26df58e6ec1e400fb98a8c8" }, "downloads": -1, "filename": "visualdl-1.3.0-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "3638ea99a901f03681dfb5eb89ac1b93", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 5090662, "upload_time": "2019-02-23T11:43:59", "url": "https://files.pythonhosted.org/packages/ec/94/7dc15696987caf0f92e5d484b9782422b42cded7381df3ef8eba36f687e0/visualdl-1.3.0-cp34-cp34m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "b8d436dbc677fac3003eeca333b8044a", "sha256": "111a3497aa4b3991447328147d451fb7234ed3560b3edb089b45ead925f2a8ec" }, "downloads": -1, "filename": "visualdl-1.3.0-cp34-cp34m-win_amd64.whl", "has_sig": false, "md5_digest": "b8d436dbc677fac3003eeca333b8044a", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 2923911, "upload_time": "2019-04-18T13:52:10", "url": "https://files.pythonhosted.org/packages/7f/56/f133d791a44b92ee8599ae875690d585685a2d744f101bdad64c5143e000/visualdl-1.3.0-cp34-cp34m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "4a3a8c84ffe1ccf1cf0da2998327d960", "sha256": "70116d47c3eaa1c07c6d36d321f4298526ecc5e96b537dfc038ffeb44716a734" }, "downloads": -1, "filename": "visualdl-1.3.0-cp35-cp35m-macosx_10_6_x86_64.whl", "has_sig": false, "md5_digest": "4a3a8c84ffe1ccf1cf0da2998327d960", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 4347962, "upload_time": "2019-04-18T13:52:13", "url": "https://files.pythonhosted.org/packages/06/b0/18fe61908ab432a00a59bac408b21a36885ca6e005e4c38a50c61c2c6a0d/visualdl-1.3.0-cp35-cp35m-macosx_10_6_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "37036eaee6811bf9e6f862c027aee403", "sha256": "03036e0a3281ed2f4520a8cfde9d2ad044ba1ca10b476ed0f4794e101a2fa520" }, "downloads": -1, "filename": "visualdl-1.3.0-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "37036eaee6811bf9e6f862c027aee403", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 5089866, "upload_time": "2019-02-23T11:44:02", "url": "https://files.pythonhosted.org/packages/49/af/69101325727bcbdc03f7075efc0e9ffe9bfe4c9e1d8278d42a06a7aa8326/visualdl-1.3.0-cp35-cp35m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "b891097282a5be52a7ecd64948be15cc", "sha256": "4ed17e39e89328eacc6742cad2bc51f53947a3e7f255e856cb0b5eb07dd6d10e" }, "downloads": -1, "filename": "visualdl-1.3.0-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "b891097282a5be52a7ecd64948be15cc", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 2924189, "upload_time": "2019-02-23T11:44:05", "url": "https://files.pythonhosted.org/packages/ee/d5/9a9a0f32ff6c5d7a0b26b820d13c7e1d92c3e3d151b6b3e8f034b25f821d/visualdl-1.3.0-cp35-cp35m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "45801db74404f5fc5d96d6d0b097efe7", "sha256": "a113f76a3179f85ea416cc554260a3dad6a5e1c97af5bda6bd252225a946bde6" }, "downloads": -1, "filename": "visualdl-1.3.0-cp36-cp36m-macosx_10_7_x86_64.whl", "has_sig": false, "md5_digest": "45801db74404f5fc5d96d6d0b097efe7", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 4352094, "upload_time": "2019-02-23T11:44:08", "url": "https://files.pythonhosted.org/packages/db/2d/c5b9f1808560205c763fb6af7c829f58c944c25bb8e743edbdc4fedc14cc/visualdl-1.3.0-cp36-cp36m-macosx_10_7_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "c7c9f4ef2bad6cb450ef489d90543b3b", "sha256": "6eb6f881f9e8386b707269d631c7efa5c9b53c159d453115c6395e3efb5d93c9" }, "downloads": -1, "filename": "visualdl-1.3.0-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "c7c9f4ef2bad6cb450ef489d90543b3b", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 5089859, "upload_time": "2019-02-23T11:44:11", "url": "https://files.pythonhosted.org/packages/66/93/00054351e9f3447d8337f98412c5adb4b280278e9c530d83f8f6485b0642/visualdl-1.3.0-cp36-cp36m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "3b76dceec947089d2f5cc10fb85bb358", "sha256": "ff98316472f115efa32776dc45dc6242c803a7beaff33b5366e4545849aee312" }, "downloads": -1, "filename": "visualdl-1.3.0-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "3b76dceec947089d2f5cc10fb85bb358", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 2924068, "upload_time": "2019-02-23T11:44:14", "url": "https://files.pythonhosted.org/packages/96/3a/4885ec1b1acd19846df53ab68d5e2920b942b75666b3961946eecaa3c279/visualdl-1.3.0-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "be294f0891c19ac03217846aa05ad2a7", "sha256": "fa8cdfa079a7a4bb61b7ad75e6376c0383eafa6c929e2c7f5996afec2e3cb586" }, "downloads": -1, "filename": "visualdl-1.3.0-cp37-cp37m-macosx_10_7_x86_64.whl", "has_sig": false, "md5_digest": "be294f0891c19ac03217846aa05ad2a7", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 4352391, "upload_time": "2019-03-25T07:08:49", "url": "https://files.pythonhosted.org/packages/2f/96/55413a610c78c152d462478fc1f38ad09691cc5f8c1adda3fc50aab050d8/visualdl-1.3.0-cp37-cp37m-macosx_10_7_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "fbb37b36631a06b91640b4ffae11c9a3", "sha256": "6523266d356487cfa1701dd08866b8cdf59e41c69b3d20cf6e6765b9439c87f8" }, "downloads": -1, "filename": "visualdl-1.3.0-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "fbb37b36631a06b91640b4ffae11c9a3", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 5090425, "upload_time": "2019-03-25T07:08:53", "url": "https://files.pythonhosted.org/packages/3c/23/9a1239d1447165f181a11782c05fe98a8573d4d028edf226592051e310be/visualdl-1.3.0-cp37-cp37m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "7b57e165dc7702b204b02fc07ce4d534", "sha256": "5fb6b9893a9baad8b87e5e1503887aa0085feb2f54682be81024eba74f77c800" }, "downloads": -1, "filename": "visualdl-1.3.0-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "7b57e165dc7702b204b02fc07ce4d534", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 2924050, "upload_time": "2019-03-25T07:08:57", "url": "https://files.pythonhosted.org/packages/12/2d/0dd5ff6b1d00f12192a65a0ae8e93e220077667f975461de2bfd926cccc7/visualdl-1.3.0-cp37-cp37m-win_amd64.whl" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "1fcf1d018dad30ed4186e071bed90274", "sha256": "eb4be1cfa5f8173f68bf8e8dfec9be338fa67b2e52ea93caed7075be2bf3685e" }, "downloads": -1, "filename": "visualdl-1.3.0-cp27-cp27m-macosx_10_6_x86_64.whl", "has_sig": false, "md5_digest": "1fcf1d018dad30ed4186e071bed90274", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 4353824, "upload_time": "2019-02-23T11:43:50", "url": "https://files.pythonhosted.org/packages/e1/3a/bfa4c1d77e3630b51826cb9659ddd92449513e167bc5264d923eb15e17e0/visualdl-1.3.0-cp27-cp27m-macosx_10_6_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "fd0ea3e52f53b740c2b697d50b4f6480", "sha256": "565c96ada245762b54a6938e12ec0f2610956ac52488fda9648754e19ad034fe" }, "downloads": -1, "filename": "visualdl-1.3.0-cp27-cp27m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "fd0ea3e52f53b740c2b697d50b4f6480", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 5084567, "upload_time": "2019-02-23T11:43:53", "url": "https://files.pythonhosted.org/packages/57/90/97cab163d115453c7fdd8be3741089b46de352d14b11a669187aab5f919f/visualdl-1.3.0-cp27-cp27m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "8327f6741b214a445d2c7078587802f2", "sha256": "ebf1f1bd6cfb01bbc49777050511c0fe66b253a1abf43d4130bd1b3d292dfaa2" }, "downloads": -1, "filename": "visualdl-1.3.0-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "8327f6741b214a445d2c7078587802f2", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 5084694, "upload_time": "2019-02-23T11:43:56", "url": "https://files.pythonhosted.org/packages/a1/74/93dd2896a11aacb9594d238a34bbe704ec6948abd8ec592fe7ec716102ac/visualdl-1.3.0-cp27-cp27mu-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "bdb64e9b1bb6adb5799593536769cbf6", "sha256": "b2a5945dbee47c29def02b7e80cdd8e0f03ab7b38f4c6d819f2943b8e8c8366f" }, "downloads": -1, "filename": "visualdl-1.3.0-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "bdb64e9b1bb6adb5799593536769cbf6", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 2921689, "upload_time": "2019-04-18T13:51:59", "url": "https://files.pythonhosted.org/packages/6a/21/56970ff90a8460a56487a240740ce0551940675ceffe578140160cc79850/visualdl-1.3.0-cp27-cp27m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "71998cec152acf01a64d48cd640c9a33", "sha256": "613646ed08ad4b82d808eada339d06f3ea6f55ecf93401d1e2d6141a9ddf66f9" }, "downloads": -1, "filename": "visualdl-1.3.0-cp34-cp34m-macosx_10_6_x86_64.whl", "has_sig": false, "md5_digest": "71998cec152acf01a64d48cd640c9a33", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 4352409, "upload_time": "2019-04-18T13:52:04", "url": "https://files.pythonhosted.org/packages/71/e4/c4639585680809e6e7a15617d2065f39aaf51276dc076026840f58eed932/visualdl-1.3.0-cp34-cp34m-macosx_10_6_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "3638ea99a901f03681dfb5eb89ac1b93", "sha256": "d6a8de55e18d3060b24b687d929817e8b69b0f2cc26df58e6ec1e400fb98a8c8" }, "downloads": -1, "filename": "visualdl-1.3.0-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "3638ea99a901f03681dfb5eb89ac1b93", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 5090662, "upload_time": "2019-02-23T11:43:59", "url": "https://files.pythonhosted.org/packages/ec/94/7dc15696987caf0f92e5d484b9782422b42cded7381df3ef8eba36f687e0/visualdl-1.3.0-cp34-cp34m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "b8d436dbc677fac3003eeca333b8044a", "sha256": "111a3497aa4b3991447328147d451fb7234ed3560b3edb089b45ead925f2a8ec" }, "downloads": -1, "filename": "visualdl-1.3.0-cp34-cp34m-win_amd64.whl", "has_sig": false, "md5_digest": "b8d436dbc677fac3003eeca333b8044a", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 2923911, "upload_time": "2019-04-18T13:52:10", "url": "https://files.pythonhosted.org/packages/7f/56/f133d791a44b92ee8599ae875690d585685a2d744f101bdad64c5143e000/visualdl-1.3.0-cp34-cp34m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "4a3a8c84ffe1ccf1cf0da2998327d960", "sha256": "70116d47c3eaa1c07c6d36d321f4298526ecc5e96b537dfc038ffeb44716a734" }, "downloads": -1, "filename": "visualdl-1.3.0-cp35-cp35m-macosx_10_6_x86_64.whl", "has_sig": false, "md5_digest": "4a3a8c84ffe1ccf1cf0da2998327d960", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 4347962, "upload_time": "2019-04-18T13:52:13", "url": "https://files.pythonhosted.org/packages/06/b0/18fe61908ab432a00a59bac408b21a36885ca6e005e4c38a50c61c2c6a0d/visualdl-1.3.0-cp35-cp35m-macosx_10_6_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "37036eaee6811bf9e6f862c027aee403", "sha256": "03036e0a3281ed2f4520a8cfde9d2ad044ba1ca10b476ed0f4794e101a2fa520" }, "downloads": -1, "filename": "visualdl-1.3.0-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "37036eaee6811bf9e6f862c027aee403", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 5089866, "upload_time": "2019-02-23T11:44:02", "url": "https://files.pythonhosted.org/packages/49/af/69101325727bcbdc03f7075efc0e9ffe9bfe4c9e1d8278d42a06a7aa8326/visualdl-1.3.0-cp35-cp35m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "b891097282a5be52a7ecd64948be15cc", "sha256": "4ed17e39e89328eacc6742cad2bc51f53947a3e7f255e856cb0b5eb07dd6d10e" }, "downloads": -1, "filename": "visualdl-1.3.0-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "b891097282a5be52a7ecd64948be15cc", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 2924189, "upload_time": "2019-02-23T11:44:05", "url": "https://files.pythonhosted.org/packages/ee/d5/9a9a0f32ff6c5d7a0b26b820d13c7e1d92c3e3d151b6b3e8f034b25f821d/visualdl-1.3.0-cp35-cp35m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "45801db74404f5fc5d96d6d0b097efe7", "sha256": "a113f76a3179f85ea416cc554260a3dad6a5e1c97af5bda6bd252225a946bde6" }, "downloads": -1, "filename": "visualdl-1.3.0-cp36-cp36m-macosx_10_7_x86_64.whl", "has_sig": false, "md5_digest": "45801db74404f5fc5d96d6d0b097efe7", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 4352094, "upload_time": "2019-02-23T11:44:08", "url": "https://files.pythonhosted.org/packages/db/2d/c5b9f1808560205c763fb6af7c829f58c944c25bb8e743edbdc4fedc14cc/visualdl-1.3.0-cp36-cp36m-macosx_10_7_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "c7c9f4ef2bad6cb450ef489d90543b3b", "sha256": "6eb6f881f9e8386b707269d631c7efa5c9b53c159d453115c6395e3efb5d93c9" }, "downloads": -1, "filename": "visualdl-1.3.0-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "c7c9f4ef2bad6cb450ef489d90543b3b", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 5089859, "upload_time": "2019-02-23T11:44:11", "url": "https://files.pythonhosted.org/packages/66/93/00054351e9f3447d8337f98412c5adb4b280278e9c530d83f8f6485b0642/visualdl-1.3.0-cp36-cp36m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "3b76dceec947089d2f5cc10fb85bb358", "sha256": "ff98316472f115efa32776dc45dc6242c803a7beaff33b5366e4545849aee312" }, "downloads": -1, "filename": "visualdl-1.3.0-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "3b76dceec947089d2f5cc10fb85bb358", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 2924068, "upload_time": "2019-02-23T11:44:14", "url": "https://files.pythonhosted.org/packages/96/3a/4885ec1b1acd19846df53ab68d5e2920b942b75666b3961946eecaa3c279/visualdl-1.3.0-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "be294f0891c19ac03217846aa05ad2a7", "sha256": "fa8cdfa079a7a4bb61b7ad75e6376c0383eafa6c929e2c7f5996afec2e3cb586" }, "downloads": -1, "filename": "visualdl-1.3.0-cp37-cp37m-macosx_10_7_x86_64.whl", "has_sig": false, "md5_digest": "be294f0891c19ac03217846aa05ad2a7", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 4352391, "upload_time": "2019-03-25T07:08:49", "url": "https://files.pythonhosted.org/packages/2f/96/55413a610c78c152d462478fc1f38ad09691cc5f8c1adda3fc50aab050d8/visualdl-1.3.0-cp37-cp37m-macosx_10_7_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "fbb37b36631a06b91640b4ffae11c9a3", "sha256": "6523266d356487cfa1701dd08866b8cdf59e41c69b3d20cf6e6765b9439c87f8" }, "downloads": -1, "filename": "visualdl-1.3.0-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "fbb37b36631a06b91640b4ffae11c9a3", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 5090425, "upload_time": "2019-03-25T07:08:53", "url": "https://files.pythonhosted.org/packages/3c/23/9a1239d1447165f181a11782c05fe98a8573d4d028edf226592051e310be/visualdl-1.3.0-cp37-cp37m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "7b57e165dc7702b204b02fc07ce4d534", "sha256": "5fb6b9893a9baad8b87e5e1503887aa0085feb2f54682be81024eba74f77c800" }, "downloads": -1, "filename": "visualdl-1.3.0-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "7b57e165dc7702b204b02fc07ce4d534", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 2924050, "upload_time": "2019-03-25T07:08:57", "url": "https://files.pythonhosted.org/packages/12/2d/0dd5ff6b1d00f12192a65a0ae8e93e220077667f975461de2bfd926cccc7/visualdl-1.3.0-cp37-cp37m-win_amd64.whl" } ] }