{ "info": { "author": "Alex Prengere", "author_email": "alexprengere@amadeus.com", "bugtrack_url": null, "classifiers": [], "description": "GraphDash\n=========\n\n``GraphDash`` is a web-based dashboard built on graphs and their\nmetadata. For example, if you have two graphs in a directory:\n\n.. code:: bash\n\n $ cd default_graph_dir\n $ ls\n graph.svg graph2.svg\n\nThen you can create two metadata files using YAML format, where you can\nconfigure how the graphs will be displayed:\n\n.. code:: bash\n\n $ cat graph.yaml\n name: graph.svg\n family: 'Category 1'\n title: '*Real serious* graph'\n text: |\n The description\n\n $ cat graph2.yaml\n name: graph2.svg\n family: 'Category 2'\n title: 'Another important graph'\n\nYou may then start the graph dashboard. You will get a nice web\ninterface displaying your graphs, and a search box with autocompletion.\nYou can easily navigate and share your graphs.\n\n.. code:: bash\n\n $ GraphDash --root .\n * Running on http://0.0.0.0:5555/ (Press CTRL+C to quit)\n\n.. figure:: https://raw.githubusercontent.com/AmadeusITGroup/GraphDash/master/docs/example.gif\n :alt: \n\nInstallation\n------------\n\nClone and install (in user space):\n\n.. code:: bash\n\n git clone https://github.com/AmadeusITGroup/graphdash.git\n cd graphdash\n pip install --user .\n\nOr use the Python package:\n\n.. code:: bash\n\n pip install --user graphdash\n\nLaunch the webapp\n-----------------\n\nFor user-space installation, make sure your ``$PATH`` includes\n``~/.local/bin``.\n\n.. code:: bash\n\n $ GraphDash -r default_graph_dir\n * Running on http://0.0.0.0:5555/ (Press CTRL+C to quit)\n\nThe dashboard can be configured with a YAML config file and the\n``-c/--conf`` option:\n\n.. code:: bash\n\n $ cat docs/graphdash.yaml\n root: ../default_graph_dir\n title: \"Example of title ;)\"\n subtitle: \"Example of subtitle\"\n\n $ GraphDash -c docs/graphdash.yaml\n * Running on http://0.0.0.0:5555/ (Press CTRL+C to quit)\n\nYou can generate a template of configuration file:\n\n.. code:: bash\n\n $ GraphDash -C template.yaml\n\nServe with Gunicorn\n-------------------\n\nIf not already installed on your machine, install ``Gunicorn``:\n\n.. code:: bash\n\n pip install --user gunicorn setproctitle # on Fedora you may need to install libffi-devel before\n\nSince you can import the webapp through ``graphdash:app``, you can serve\nit with ``Gunicorn``:\n\n.. code:: bash\n\n gunicorn -b 0.0.0.0:8888 --pid server.pid graphdash:app\n\nThe configuration file of the webapp can be set with the ``CONF``\nenvironment variable. With ``Gunicorn``, you can pass environment\nvariables to the workers with ``--env``:\n\n.. code:: bash\n\n gunicorn -b 0.0.0.0:8888 --pid server.pid --env CONF=docs/graphdash.yaml graphdash:app\n\nBut you should *not* use these commands yourself, that is what\n``GraphDashManage`` is for!\n\nGraphDashManage\n---------------\n\n``GraphDashManage`` is used to ``start``, ``stop``, ``restart`` the\ninstances of ``Gunicorn`` serving ``graphdash:app``. It needs a\nconfiguration file in the current directory:\n\n.. code:: bash\n\n $ cat settings.sh\n ALL_MODES=(\n ['prod']=\"docs/graphdash.yaml\"\n ['test']=\"docs/graphdash.yaml\"\n )\n ALL_PORTS=(\n ['prod']=1234\n ['test']=5678\n )\n WORKERS=3\n\nThen you can manage multiple instances of ``GraphDash`` using\n``Gunicorn`` with:\n\n.. code:: bash\n\n $ GraphDashManage start prod\n [INFO] Listening at: http://0.0.0.0:1234\n [INFO] Booting worker with pid: 30403\n [INFO] Booting worker with pid: 30404\n [INFO] Booting worker with pid: 30405\n\n $ GraphDashManage start test\n [INFO] Listening at: http://0.0.0.0:5678\n ...\n\nYou can generate a template of settings:\n\n.. code:: bash\n\n $ GraphDashManage template > template.sh # to be moved to settings.sh\n\nWebapp configuration file\n-------------------------\n\nPossible entries (everything is optional):\n\n- ``root``: the root directory of the graphs\n- ``families``: path to the families metadata file (optional)\n- ``title``: the title of the webapp\n- ``subtitle``: the subtitle of the webapp\n- ``placeholder``: the default text in the search field\n- ``header``: an optional message at the top (markdown syntax)\n- ``footer``: an optional message at the bottom (markdown syntax)\n- ``showfamilynumbers``: a boolean to toggle family numbering (default\n is true)\n- ``showgraphnumbers``: a boolean to toggle graph numbering (default is\n true)\n- ``theme``: change css theme (default is dark)\n- ``keep``: the proportion of common words kept for autocompletion\n- ``logfile``: change default log file of the webapp\n- ``raw``: when loading, look for all graphs and ignore metadata\n- ``verbose``: a boolean indicating verbosity when loading application\n- ``debug``: debug mode (enable Grunt livereload, enable Flask debug\n mode)\n- ``headless``: headless mode (only search is available, no page is\n rendered)\n- ``port``: when launched with Flask development server only, port\n\nGraph metadata\n--------------\n\nSeveral attributes are supported:\n\n- ``name``: the path to the graph\n- ``title``: title of the graph, recommended for display purposes\n (markdown syntax)\n- ``family``: the subsection in which the graph is\n- ``index``: an optional list of keywords describing the graph (useful\n for search feature)\n- ``text``: an optional description of the graph (markdown syntax)\n- ``pretext``: an optional message appearing before the graph (markdown\n syntax)\n- ``file``: optional path to the raw data\n- ``export``: optional path to the exportable graph (for example, a PNG\n file)\n- ``rank``: integer, optional value used to change graphs order\n (default uses titles)\n- ``showtitle``: a boolean to toggle title display for the graph\n (default is false)\n- ``labels``: a list of labels (like ``'new'``) which will be rendered\n in the UI as colored circles\n- ``other``: other metadata not used by ``GraphDash``, but may be\n needed by other things reading the metadata\n\nNote that if the ``name`` attribute is missing, the graph will not be\nshown and the text will be displayed anyway, like a blog entry.\n\nFamily metadata\n---------------\n\nYou may put a ``.FAMILIES.yaml`` file at the root of the graph\ndirectory. This file may contain metadata for families. It should be a\nYAML list:\n\n.. code:: yaml\n\n - family: chairs\n rank : 0\n - family: tables\n rank : 1\n text: This is a description\n alias: This text will appear instead of \"tables\"\n labels: new\n\nEach element of the list should be a dict containing:\n\n- ``family``: the family considered\n- ``rank``: integer, optional value used to change families order\n (default uses family name)\n- ``text``: an optional description of the family (markdown syntax)\n- ``alias``: an optional name who may be longer than the one in the url\n (useful to build nice urls)\n- ``labels``: a list of labels (like ``new``) which will be rendered in\n the UI as colored circles\n\nAvailable labels are ``new``, ``update``, ``bugfix``, ``warning``,\n``error``, ``ongoing``, ``obsolete``. You may give other labels which\nwill be rendered with defaults colors. For customization, you may\nspecify your own labels with a dict syntax:\n\n.. code:: yaml\n\n labels:\n - name: newlabel\n color: white\n text_color: black\n text: \"NEW LABEL\"\n tooltip: null\n\nDevelopment\n-----------\n\nIf you wish to contribute, you need ``Grunt`` to generate new css/js\nfiles from sass/coffee source files.\n\n.. code:: bash\n\n npm install --no-bin-links # may need to repeat\n grunt\n\nDebugging can be made with source map files for browser supporting them\nin their debugging tools. If not, the ``Gruntfile.js`` enables an option\nto generate non-minified assets.\n\n.. code:: bash\n\n grunt --dev\n\nWith the ``debug`` mode enabled, Grunt will use the livereload mechanism\nto reload the browser if any file has changed (and Flask debug mode will\nreload the server as well).\n\n.. code:: bash\n\n GraphDash --debug & # or python -m graphdash\n grunt watch\n\nIf you used ``Gunicorn`` with a PID file, Grunt will automatically\nreload it if any Python files change.\n\n.. code:: bash\n\n gunicorn -b 0.0.0.0:8888 --pid server.pid graphdash:app &\n grunt watch\n\nYou can use ``tox`` build packages and run tests.\n\n.. code:: bash\n\n tox\n", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/AmadeusITGroup/graphdash", "keywords": "", "license": "Copyright (c) 2016 Amadeus s.a.s.\n\n Apache License\n Version 2.0, January 2004\n http://www.apache.org/licenses/\n\n TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n 1. Definitions.\n\n \"License\" shall mean the terms and conditions for use, reproduction,\n and distribution as defined by Sections 1 through 9 of this document.\n\n \"Licensor\" shall mean the copyright owner or entity authorized by\n the copyright owner that is granting the License.\n\n \"Legal Entity\" shall mean the union of the acting entity and all\n other entities that control, are controlled by, or are under common\n control with that entity. For the purposes of this definition,\n \"control\" means (i) the power, direct or indirect, to cause the\n direction or management of such entity, whether by contract or\n otherwise, or (ii) ownership of fifty percent (50%) or more of the\n outstanding shares, or (iii) beneficial ownership of such entity.\n\n \"You\" (or \"Your\") shall mean an individual or Legal Entity\n exercising permissions granted by this License.\n\n \"Source\" form shall mean the preferred form for making modifications,\n including but not limited to software source code, documentation\n source, and configuration files.\n\n \"Object\" form shall mean any form resulting from mechanical\n transformation or translation of a Source form, including but\n not limited to compiled object code, generated documentation,\n and conversions to other media types.\n\n \"Work\" shall mean the work of authorship, whether in Source or\n Object form, made available under the License, as indicated by a\n copyright notice that is included in or attached to the work\n (an example is provided in the Appendix below).\n\n \"Derivative Works\" shall mean any work, whether in Source or Object\n form, that is based on (or derived from) the Work and for which the\n editorial revisions, annotations, elaborations, or other modifications\n represent, as a whole, an original work of authorship. For the purposes\n of this License, Derivative Works shall not include works that remain\n separable from, or merely link (or bind by name) to the interfaces of,\n the Work and Derivative Works thereof.\n\n \"Contribution\" shall mean any work of authorship, including\n the original version of the Work and any modifications or additions\n to that Work or Derivative Works thereof, that is intentionally\n submitted to Licensor for inclusion in the Work by the copyright owner\n or by an individual or Legal Entity authorized to submit on behalf of\n the copyright owner. For the purposes of this definition, \"submitted\"\n means any form of electronic, verbal, or written communication sent\n to the Licensor or its representatives, including but not limited to\n communication on electronic mailing lists, source code control systems,\n and issue tracking systems that are managed by, or on behalf of, the\n Licensor for the purpose of discussing and improving the Work, but\n excluding communication that is conspicuously marked or otherwise\n designated in writing by the copyright owner as \"Not a Contribution.\"\n\n \"Contributor\" shall mean Licensor and any individual or Legal Entity\n on behalf of whom a Contribution has been received by Licensor and\n subsequently incorporated within the Work.\n\n 2. Grant of Copyright License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n copyright license to reproduce, prepare Derivative Works of,\n publicly display, publicly perform, sublicense, and distribute the\n Work and such Derivative Works in Source or Object form.\n\n 3. Grant of Patent License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n (except as stated in this section) patent license to make, have made,\n use, offer to sell, sell, import, and otherwise transfer the Work,\n where such license applies only to those patent claims licensable\n by such Contributor that are necessarily infringed by their\n Contribution(s) alone or by combination of their Contribution(s)\n with the Work to which such Contribution(s) was submitted. If You\n institute patent litigation against any entity (including a\n cross-claim or counterclaim in a lawsuit) alleging that the Work\n or a Contribution incorporated within the Work constitutes direct\n or contributory patent infringement, then any patent licenses\n granted to You under this License for that Work shall terminate\n as of the date such litigation is filed.\n\n 4. Redistribution. You may reproduce and distribute copies of the\n Work or Derivative Works thereof in any medium, with or without\n modifications, and in Source or Object form, provided that You\n meet the following conditions:\n\n (a) You must give any other recipients of the Work or\n Derivative Works a copy of this License; and\n\n (b) You must cause any modified files to carry prominent notices\n stating that You changed the files; and\n\n (c) You must retain, in the Source form of any Derivative Works\n that You distribute, all copyright, patent, trademark, and\n attribution notices from the Source form of the Work,\n excluding those notices that do not pertain to any part of\n the Derivative Works; and\n\n (d) If the Work includes a \"NOTICE\" text file as part of its\n distribution, then any Derivative Works that You distribute must\n include a readable copy of the attribution notices contained\n within such NOTICE file, excluding those notices that do not\n pertain to any part of the Derivative Works, in at least one\n of the following places: within a NOTICE text file distributed\n as part of the Derivative Works; within the Source form or\n documentation, if provided along with the Derivative Works; or,\n within a display generated by the Derivative Works, if and\n wherever such third-party notices normally appear. The contents\n of the NOTICE file are for informational purposes only and\n do not modify the License. You may add Your own attribution\n notices within Derivative Works that You distribute, alongside\n or as an addendum to the NOTICE text from the Work, provided\n that such additional attribution notices cannot be construed\n as modifying the License.\n\n You may add Your own copyright statement to Your modifications and\n may provide additional or different license terms and conditions\n for use, reproduction, or distribution of Your modifications, or\n for any such Derivative Works as a whole, provided Your use,\n reproduction, and distribution of the Work otherwise complies with\n the conditions stated in this License.\n\n 5. Submission of Contributions. Unless You explicitly state otherwise,\n any Contribution intentionally submitted for inclusion in the Work\n by You to the Licensor shall be under the terms and conditions of\n this License, without any additional terms or conditions.\n Notwithstanding the above, nothing herein shall supersede or modify\n the terms of any separate license agreement you may have executed\n with Licensor regarding such Contributions.\n\n 6. Trademarks. This License does not grant permission to use the trade\n names, trademarks, service marks, or product names of the Licensor,\n except as required for reasonable and customary use in describing the\n origin of the Work and reproducing the content of the NOTICE file.\n\n 7. Disclaimer of Warranty. Unless required by applicable law or\n agreed to in writing, Licensor provides the Work (and each\n Contributor provides its Contributions) on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n implied, including, without limitation, any warranties or conditions\n of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n PARTICULAR PURPOSE. You are solely responsible for determining the\n appropriateness of using or redistributing the Work and assume any\n risks associated with Your exercise of permissions under this License.\n\n 8. Limitation of Liability. In no event and under no legal theory,\n whether in tort (including negligence), contract, or otherwise,\n unless required by applicable law (such as deliberate and grossly\n negligent acts) or agreed to in writing, shall any Contributor be\n liable to You for damages, including any direct, indirect, special,\n incidental, or consequential damages of any character arising as a\n result of this License or out of the use or inability to use the\n Work (including but not limited to damages for loss of goodwill,\n work stoppage, computer failure or malfunction, or any and all\n other commercial damages or losses), even if such Contributor\n has been advised of the possibility of such damages.\n\n 9. Accepting Warranty or Additional Liability. While redistributing\n the Work or Derivative Works thereof, You may choose to offer,\n and charge a fee for, acceptance of support, warranty, indemnity,\n or other liability obligations and/or rights consistent with this\n License. However, in accepting such obligations, You may act only\n on Your own behalf and on Your sole responsibility, not on behalf\n of any other Contributor, and only if You agree to indemnify,\n defend, and hold each Contributor harmless for any liability\n incurred by, or claims asserted against, such Contributor by reason\n of your accepting any such warranty or additional liability.\n\n END OF TERMS AND CONDITIONS\n\n APPENDIX: How to apply the Apache License to your work.\n\n To apply the Apache License to your work, attach the following\n boilerplate notice, with the fields enclosed by brackets \"{}\"\n replaced with your own identifying information. (Don't include\n the brackets!) The text should be enclosed in the appropriate\n comment syntax for the file format. We also recommend that a\n file or class name and description of purpose be included on the\n same \"printed page\" as the copyright notice for easier\n identification within third-party archives.\n\n Copyright {yyyy} {name of copyright owner}\n\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n", "maintainer": "", "maintainer_email": "", "name": "GraphDash", "package_url": "https://pypi.org/project/GraphDash/", "platform": "", "project_url": "https://pypi.org/project/GraphDash/", "project_urls": { "Homepage": "https://github.com/AmadeusITGroup/graphdash" }, "release_url": "https://pypi.org/project/GraphDash/0.10.3/", "requires_dist": null, "requires_python": "", "summary": "A web-based dashboard built on graphs and their metadata.", "version": "0.10.3" }, "last_serial": 5814606, "releases": { "0.10": [ { "comment_text": "", "digests": { "md5": "63196cbeeb246608a5bebde4c90190c6", "sha256": "9f4adeffc8db35fc9d23c3b39bde460af21433c1d91ffc296cf34a8393be97f1" }, "downloads": -1, "filename": "GraphDash-0.10.tar.gz", "has_sig": false, "md5_digest": "63196cbeeb246608a5bebde4c90190c6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1681349, "upload_time": "2019-01-17T16:36:38", "url": "https://files.pythonhosted.org/packages/e1/1c/4b9936a26295784836cfd3f5c57f75520ea70f053220fd946100c2ee6acb/GraphDash-0.10.tar.gz" } ], "0.10.1": [ { "comment_text": "", "digests": { "md5": "823d3114c642b30bd9a4ba79eb21fa73", "sha256": "3408c6beed781c2384b93f9c848a19a5ff9be2a746c20fba01896ae584738454" }, "downloads": -1, "filename": "GraphDash-0.10.1.tar.gz", "has_sig": false, "md5_digest": "823d3114c642b30bd9a4ba79eb21fa73", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1681356, "upload_time": "2019-01-23T16:06:40", "url": "https://files.pythonhosted.org/packages/10/1f/568d8f8ce6afa51c12a4c36b3c55befb4be2aec6720a1b6df14184373796/GraphDash-0.10.1.tar.gz" } ], "0.10.2": [ { "comment_text": "", "digests": { "md5": "e65e1598906c3a4cfe94281c22991149", "sha256": "f9d41c3ce27c8b359a8485c65af32915809fe58b38fe1690314092b639825b19" }, "downloads": -1, "filename": "GraphDash-0.10.2.tar.gz", "has_sig": false, "md5_digest": "e65e1598906c3a4cfe94281c22991149", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1676973, "upload_time": "2019-04-29T12:48:05", "url": "https://files.pythonhosted.org/packages/ad/76/c3879ce48b19e1db45e1afd75f26dc509225b7a7228c4024f33df8ca3a99/GraphDash-0.10.2.tar.gz" } ], "0.10.3": [ { "comment_text": "", "digests": { "md5": "e67bd59c971402e2420a8a32535fcf16", "sha256": "9d0da9d889095e84feb5470aa7c650c75c5b9d25512f5b1ffcdc5635ef416021" }, "downloads": -1, "filename": "GraphDash-0.10.3.tar.gz", "has_sig": false, "md5_digest": "e67bd59c971402e2420a8a32535fcf16", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1677065, "upload_time": "2019-09-11T12:20:43", "url": "https://files.pythonhosted.org/packages/db/e3/0884dabf3458f3b29e2aae90876b47fa516e0c574f600f297de4258adeaf/GraphDash-0.10.3.tar.gz" } ], "0.8": [ { "comment_text": "", "digests": { "md5": "f90cd5bb1cc6518a1a5436c3aa9d9e9b", "sha256": "7c1bff32f4c108339b59e655d0b8838743a9257b33e8f4b952d4659b13811b29" }, "downloads": -1, "filename": "GraphDash-0.8.tar.gz", "has_sig": false, "md5_digest": "f90cd5bb1cc6518a1a5436c3aa9d9e9b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1681811, "upload_time": "2016-06-28T07:24:52", "url": "https://files.pythonhosted.org/packages/36/ca/e4016f73fd2cd40f1d82273bade0259b387078e17001bd1328e44f497d51/GraphDash-0.8.tar.gz" } ], "0.9": [ { "comment_text": "", "digests": { "md5": "89ef0ebbea35eea7c5be0db108bd7d46", "sha256": "6cd9574d6336d2d1a4fb71ea0dfce07a8898a1651b68ddcd63564253196eb64c" }, "downloads": -1, "filename": "GraphDash-0.9.tar.gz", "has_sig": false, "md5_digest": "89ef0ebbea35eea7c5be0db108bd7d46", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1692399, "upload_time": "2016-07-04T10:59:45", "url": "https://files.pythonhosted.org/packages/0c/e1/5d457c3343cfa5d8f6b52220a5cff308a6a7c381f324cfa461d87cfd0778/GraphDash-0.9.tar.gz" } ], "0.9.1": [ { "comment_text": "", "digests": { "md5": "bcce6acc835c5df1358e2b7ebc243c27", "sha256": "0035d359251edacdab9acf2601b4bc155ce4111358bc08c12679a9b0746db8f6" }, "downloads": -1, "filename": "GraphDash-0.9.1.tar.gz", "has_sig": false, "md5_digest": "bcce6acc835c5df1358e2b7ebc243c27", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1698416, "upload_time": "2016-07-05T06:55:52", "url": "https://files.pythonhosted.org/packages/ef/69/607acc34530126e3975d885eb58371b92b848c44693213f6bdb4a6fdedc0/GraphDash-0.9.1.tar.gz" } ], "0.9.2": [ { "comment_text": "", "digests": { "md5": "d971a370776795ab8478c759d858d9d8", "sha256": "29181dfb975aa8ab83bfa43d863f6ddd3e1d46a0305f345c178fe5782ddd214d" }, "downloads": -1, "filename": "GraphDash-0.9.2.tar.gz", "has_sig": false, "md5_digest": "d971a370776795ab8478c759d858d9d8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1698519, "upload_time": "2016-07-05T07:25:08", "url": "https://files.pythonhosted.org/packages/32/63/0f77056641fe86a22bef44d899eef0b762acf81d510b008302b60f9e76ef/GraphDash-0.9.2.tar.gz" } ], "0.9.3": [ { "comment_text": "", "digests": { "md5": "caed7cfbdb9cf75008f45f4ac1ec2217", "sha256": "69799894bec52fd680a4e95354567f63779cec7006ca56158a597ec58af3c4a2" }, "downloads": -1, "filename": "GraphDash-0.9.3.tar.gz", "has_sig": false, "md5_digest": "caed7cfbdb9cf75008f45f4ac1ec2217", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1668408, "upload_time": "2016-07-09T08:12:46", "url": "https://files.pythonhosted.org/packages/5a/46/dca7cefc435af244ff3a85332a2bc42875c1f76e49275f56075a967b7a29/GraphDash-0.9.3.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "e67bd59c971402e2420a8a32535fcf16", "sha256": "9d0da9d889095e84feb5470aa7c650c75c5b9d25512f5b1ffcdc5635ef416021" }, "downloads": -1, "filename": "GraphDash-0.10.3.tar.gz", "has_sig": false, "md5_digest": "e67bd59c971402e2420a8a32535fcf16", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1677065, "upload_time": "2019-09-11T12:20:43", "url": "https://files.pythonhosted.org/packages/db/e3/0884dabf3458f3b29e2aae90876b47fa516e0c574f600f297de4258adeaf/GraphDash-0.10.3.tar.gz" } ] }