{ "info": { "author": "Brainbot Labs Est.", "author_email": "contact@brainbot.li", "bugtrack_url": null, "classifiers": [ "Development Status :: 3 - Alpha", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Natural Language :: English" ], "description": "\n\n

\n
\n \n
\n Raiden WebUI\n
\n

\n\n

\n\n

\n\n

\n Getting Started \u2219\n Contact\n

\n\n

\n \n \"PyPI\"\n \n \n \"CircleCI\n \n \n \"Codecov\n \n \n \"code\n \n \n \"Gitter\n \n

\n\nRaiden WebUI is a simple web application that utilizes the Raiden REST API endpoints to\nallow the user to interact with token networks, make token payments, see the current status of open\nchannels along with closing and settling channels to name some of the functionality.\n\n## Table of Contents\n\n- [Table of Contents](#table-of-contents)\n- [About The Project](#about-the-project)\n- [Getting Started](#getting-started)\n - [Learn about Raiden](#learn-about-raiden)\n - [Using the WebUI](#using-the-webui)\n - [Prerequisites](#prerequisites)\n - [Development](#development)\n - [Configuration](#configuration)\n - [Running the WebUI](#running-the-webui)\n - [Python package](#python-package)\n- [Contributing](#contributing)\n- [License](#license)\n- [Contact](#contact)\n\n## About The Project\n\nThe [Raiden Network](https://raiden.network/) is an off-chain scaling solution, enabling near-instant,\nlow-fee and scalable payments. It\u2019s complementary to the Ethereum blockchain and works with any ERC20 compatible token.\n\nThe Raiden client code is available [here](https://github.com/raiden-network/raiden) and has been\n[released for mainnet](https://medium.com/raiden-network/alderaan-mainnet-release-announcement-7f701e58c236) for the Alderaan release of the Raiden Network in May 2020.\n\n![Raiden WebUI](webui.gif)\n\nRaiden WebUI is built using the following technologies:\n\n- [Angular](https://angular.io/)\n- [Angular Material](https://material.angular.io/)\n- [Angular Flex-Layout](https://github.com/angular/flex-layout)\n- [Web3.js](https://github.com/ethereum/web3.js/)\n\n## Getting Started\n\n### Learn about Raiden\n\nIf you haven't used Raiden before, you can:\n\n- Checkout the [developer portal](http://developer.raiden.network)\n- Look at the [documentation](https://docs.raiden.network)\n- Learn more by watching explanatory [videos](https://www.youtube.com/channel/UCoUP_hnjUddEvbxmtNCcApg)\n- Read the blog posts on [Medium](https://medium.com/@raiden_network)\n\n### Using the WebUI\n\nIf you want to learn how to use the Raiden WebUI an [updated tutorial](https://docs.raiden.network/the-raiden-web-interface) has been published in the new documentation for Raiden.\n\n### Prerequisites\n\nIf you just want to use the WebUI all you need to do is install and run Raiden. A version of the WebUI comes bundled with each Raiden release and is accessible from `http://127.0.0.1:5001`.\n\nFor details on how to easily install Raiden:\n\nRead the [Quick Start](https://docs.raiden.network/quick-start) section in the documentation.\n\nIf you want to work on the WebUI codebase you need:\n\n- Node >=10.13.0\n- A working [Raiden client](https://raiden-network.readthedocs.io/en/latest/overview_and_guide.html).\n- Git for version control.\n- Yarn v1 for package management.\n\n### Development\n\nBefore you start working on the WebUI you need to install the WebUI dependencies.\n\n```bash\nyarn install\n```\n\n#### Configuration\n\nBefore you begin to work on the WebUI you have to make sure that you have the proper configuration.\nCheck if the [proxy configuration](./proxy.config.json) corresponds to your actual environment configuration.\n\nSince you will not be running the WebUI embedded into Raiden you need to provide both the Ethereum RPC endpoint\nand the Raiden REST API endpoint to the `proxy.config.json`.\n\nBy default the configurations looks like this:\n\n```json\n{\n \"/api\": {\n \"target\": \"http://localhost:5001\",\n \"proxyTimeout\": 600000\n },\n \"/web3\": {\n \"target\": \"http://localhost:8545\",\n \"pathRewrite\": { \"^/web3\": \"\" },\n \"changeOrigin\": true,\n \"proxyTimeout\": 60000\n }\n}\n```\n\nThe configuration assumes that the Ethereum RPC endpoint listens on `http://localhost:8545`\nand the Raiden REST API is on `http://localhost:5001`. If you are using a different configuration make sure\nto update the corresponding fields in the configuration.\n\nFor example if you run Raiden on port `5002` and you use Infura as your RPC provider you would have to\nmodify the `proxy.config.json` to like like:\n\n```json\n{\n \"/api\": {\n \"target\": \"http://localhost:5002\",\n \"proxyTimeout\": 600000\n },\n \"/web3\": {\n \"target\": \"http://goerli.infura.io/v3/YOUR_API_KEY\",\n \"pathRewrite\": { \"^/web3\": \"\" },\n \"changeOrigin\": true,\n \"proxyTimeout\": 60000\n }\n}\n```\n\n> **Info**: On development mode there is no way to guarantee that raiden and the RPC provider run on the same chain.\n> You have to be careful, because if you start for example Raiden on Rinkeby and pass G\u00f6rli as the RPC endpoint, WebUI\n> will fail to work.\n\n> **Important**: Modifications on `proxy.config.json` make sure never be part of your PR.\n\n#### Running the WebUI\n\nAfter you are done with the configuration you can start the development server:\n\n```bash\nyarn run serve\n```\n\nAfter the development server starts you have to navigate to `http://localhost:4200/ui`, in order to use the WebUI.\n\n#### Python package\n\nThe WebUI is build as a python package and it's available on PyPI. This package is pinned as a dependency on Raiden.\nThe PyPI package provides a precompiled version of the WebUI that is bundled with Raiden and can be used out of the box.\n\nThe python package provides a static variable that points to the location of the WebUI static content root directory.\nThis can be imported by raiden to expose the bundled WebUI resources:\n\n```python\nfrom raiden_webui import RAIDEN_WEBUI_PATH\n```\n\nThe package can build the python package by calling:\n\n```bash\npython setup.py build sdist bdist_wheel\n```\n\nThe command calls `yarn build:prod` to build the static production version of the WebUI so\nthat it can get included in the python package.\n\nIf you need to install the package locally to your development virtual environment you can do\nso by running:\n\n```bash\npython setup.py build install\n```\n\nIn case you need to use the debug version of the WebUI within your virtual environment you can also\nrun:\n\n```bash\npython setup.py compile_webui -D install\n```\n\nThis will build the debug version of the WebUI to include in your package.\n\n## Contributing\n\nContributions are what make the open source community such an amazing place to learn, inspire, and create. Any contributions you make are **greatly appreciated**.\n\nAlso have a look at the [Raiden WebUI Development Guide](./CONTRIBUTING.md) for more info.\n\n## License\n\nDistributed under the [MIT License](./LICENSE).\n\n## Contact\n\nDev Chat: [Gitter](https://gitter.im/raiden-network/raiden)\n\nTwitter: [@raiden_network](https://twitter.com/raiden_network)\n\nWebsite: [Raiden Network](https://raiden.network/)\n\nMail: contact@raiden.network\n\nProject Link: [https://github.com/raiden-network/light-client](https://github.com/raiden-network/light-client)\n\n\n", "description_content_type": "text/markdown", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/raiden-network/webui", "keywords": "raiden webui", "license": "MIT", "maintainer": "", "maintainer_email": "", "name": "raiden-webui", "package_url": "https://pypi.org/project/raiden-webui/", "platform": "", "project_url": "https://pypi.org/project/raiden-webui/", "project_urls": { "Homepage": "https://github.com/raiden-network/webui" }, "release_url": "https://pypi.org/project/raiden-webui/1.2.1/", "requires_dist": null, "requires_python": ">=3.6", "summary": "Raiden webui", "version": "1.2.1", "yanked": false, "yanked_reason": null }, "last_serial": 10172981, "releases": { "0.10.0": [ { "comment_text": "", "digests": { "md5": "118bee9f040d33924b2c032301db96b2", "sha256": "c6fd9eea3b706d401f05e66bd52a04e944f586bd268a181801e3a2c496281da8" }, "downloads": -1, "filename": "raiden_webui-0.10.0-py3-none-any.whl", "has_sig": false, "md5_digest": "118bee9f040d33924b2c032301db96b2", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 899749, "upload_time": "2019-09-27T14:32:24", "upload_time_iso_8601": "2019-09-27T14:32:24.014777Z", "url": "https://files.pythonhosted.org/packages/34/a6/7190c02d5f8317ab2cfa844ea3059a359ec5b33dea9b1aa37a064348f7f9/raiden_webui-0.10.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8f4a121325e0eb134302a9d87e3beeb3", "sha256": "00532aeacf19c8874f3cb33f52acc288474485e6fb1adf51d0db55844442c693" }, "downloads": -1, "filename": "raiden-webui-0.10.0.tar.gz", "has_sig": false, "md5_digest": "8f4a121325e0eb134302a9d87e3beeb3", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 1024609, "upload_time": "2019-09-27T14:32:26", "upload_time_iso_8601": "2019-09-27T14:32:26.309160Z", "url": "https://files.pythonhosted.org/packages/33/3c/a7d7d4802f20cac36fb46eebac188ec8d3a3df8d79c6f5391b4610a2e061/raiden-webui-0.10.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.10.1": [ { "comment_text": "", "digests": { "md5": "b9e19755a2503ca0c0ff2f2f8da1da94", "sha256": "497d4aa15ab2dec213cf28269f0a7edad512536c1cec192613dacaec579325f2" }, "downloads": -1, "filename": "raiden_webui-0.10.1-py3-none-any.whl", "has_sig": false, "md5_digest": "b9e19755a2503ca0c0ff2f2f8da1da94", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 1561271, "upload_time": "2019-10-22T11:58:27", "upload_time_iso_8601": "2019-10-22T11:58:27.658784Z", "url": "https://files.pythonhosted.org/packages/74/27/10866773dc3d2b447f44171b9acf9791c62071432910ab0eda9af999d041/raiden_webui-0.10.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2cf4a095de2e9316ee688ddb9a52223f", "sha256": "66ee93d07ea4fffa965c5eecdf458264f4c715df8bfeb859a7108622ccb9e582" }, "downloads": -1, "filename": "raiden-webui-0.10.1.tar.gz", "has_sig": false, "md5_digest": "2cf4a095de2e9316ee688ddb9a52223f", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 1684746, "upload_time": "2019-10-22T11:58:54", "upload_time_iso_8601": "2019-10-22T11:58:54.445899Z", "url": "https://files.pythonhosted.org/packages/e5/f0/2194ef03adaccf299e88792bc12230a9d37ad24113f35118c5b3a79fdfa4/raiden-webui-0.10.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.10.2": [ { "comment_text": "", "digests": { "md5": "79d5d9ba47736f6284390e53c4c53428", "sha256": "a6cde25d85c5c0007e76e5a7d5cd47f0890a8575ac3cec6190fcd03286ed6362" }, "downloads": -1, "filename": "raiden_webui-0.10.2-py3-none-any.whl", "has_sig": false, "md5_digest": "79d5d9ba47736f6284390e53c4c53428", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 1561494, "upload_time": "2019-12-03T10:00:19", "upload_time_iso_8601": "2019-12-03T10:00:19.727679Z", "url": "https://files.pythonhosted.org/packages/15/34/832b79cc50972803549619dc1097fcf1941f4d9d58a94212b179fa022262/raiden_webui-0.10.2-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b54d47090a9f6c2366bf714a82a07106", "sha256": "cc6628dac9d1aaf122426672a56d79e149c433177ad7098289015f201678f2e7" }, "downloads": -1, "filename": "raiden-webui-0.10.2.tar.gz", "has_sig": false, "md5_digest": "b54d47090a9f6c2366bf714a82a07106", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 1685097, "upload_time": "2019-12-03T10:00:21", "upload_time_iso_8601": "2019-12-03T10:00:21.837590Z", "url": "https://files.pythonhosted.org/packages/53/b3/54294d23c2f95e212f97832837516be54c7c038e75b14d120f5c4edee9ab/raiden-webui-0.10.2.tar.gz", "yanked": false, "yanked_reason": null } ], "0.10.3": [ { "comment_text": "", "digests": { "md5": "e1178dda5f72520ca0e03d5c2f3c7924", "sha256": "f2674902475c98e5f57e127644d6b755c580fd98a8a4422c28bb0380a2d1306b" }, "downloads": -1, "filename": "raiden_webui-0.10.3-py3-none-any.whl", "has_sig": false, "md5_digest": "e1178dda5f72520ca0e03d5c2f3c7924", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 1556278, "upload_time": "2019-12-06T19:19:05", "upload_time_iso_8601": "2019-12-06T19:19:05.113591Z", "url": "https://files.pythonhosted.org/packages/5c/ce/346564f4f59cd8e4859c77b94afa311ccc0fd1426d4dfed74bb6617e3d9d/raiden_webui-0.10.3-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ebebe8221f44f995ecd4e0f007bbcad7", "sha256": "e4fe42cd758c36ae134219d9a1bb191bb3f9e10e3b3d794a12dd8b9b9b6fe16a" }, "downloads": -1, "filename": "raiden-webui-0.10.3.tar.gz", "has_sig": false, "md5_digest": "ebebe8221f44f995ecd4e0f007bbcad7", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 1679826, "upload_time": "2019-12-06T19:19:07", "upload_time_iso_8601": "2019-12-06T19:19:07.308295Z", "url": "https://files.pythonhosted.org/packages/07/7e/3d2e3b59272a7400626793c912113bb8a2509ac521a5d0eb5c0e3574d734/raiden-webui-0.10.3.tar.gz", "yanked": false, "yanked_reason": null } ], "0.10.4": [ { "comment_text": "", "digests": { "md5": "5fafebf00c09694023960ed3885e7a16", "sha256": "6fc00f39b972ff2955f03ed63df586cbf6b68e1f53062936baee3d19b24e40eb" }, "downloads": -1, "filename": "raiden_webui-0.10.4-py3-none-any.whl", "has_sig": false, "md5_digest": "5fafebf00c09694023960ed3885e7a16", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 1556311, "upload_time": "2019-12-10T10:37:16", "upload_time_iso_8601": "2019-12-10T10:37:16.067720Z", "url": "https://files.pythonhosted.org/packages/18/ae/d2266bf0ed7541aa2a66e34f4642ea4e1a36fb2b0c6621df0681e45bacf2/raiden_webui-0.10.4-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d642363e0e0db8e8d1f072d12f3d710e", "sha256": "f7e9ee5205045bd372412f40a30d19e9f20de1ffe312c8a82aee5157b0a74c05" }, "downloads": -1, "filename": "raiden-webui-0.10.4.tar.gz", "has_sig": false, "md5_digest": "d642363e0e0db8e8d1f072d12f3d710e", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 1679955, "upload_time": "2019-12-10T10:37:18", "upload_time_iso_8601": "2019-12-10T10:37:18.255452Z", "url": "https://files.pythonhosted.org/packages/27/49/2ab56ba4d294d4e1f1cf69b346f7d4a40a743e5642f6bda4ca11ef1d51b5/raiden-webui-0.10.4.tar.gz", "yanked": false, "yanked_reason": null } ], "0.11.0": [ { "comment_text": "", "digests": { "md5": "56ebe958abf7e43ab8146a3ef2c1f7c3", "sha256": "b95bdce355643e5865f7edb37903f26634d7c729555d2fb5661c633491f93bf3" }, "downloads": -1, "filename": "raiden_webui-0.11.0-py3-none-any.whl", "has_sig": false, "md5_digest": "56ebe958abf7e43ab8146a3ef2c1f7c3", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 1558486, "upload_time": "2019-12-20T18:28:52", "upload_time_iso_8601": "2019-12-20T18:28:52.766627Z", "url": "https://files.pythonhosted.org/packages/1e/d5/f9ec4c2e1cc0313eb220aa8c85bcbb2ceb9c36ad088826819074d53ec206/raiden_webui-0.11.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0124e075ce5906100ebcb3c336cc3e88", "sha256": "d1d9336f96666e524f17d8686d5b6dcecfb93895e4a189d78b2bb40f8929a520" }, "downloads": -1, "filename": "raiden-webui-0.11.0.tar.gz", "has_sig": false, "md5_digest": "0124e075ce5906100ebcb3c336cc3e88", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 1682523, "upload_time": "2019-12-20T18:28:54", "upload_time_iso_8601": "2019-12-20T18:28:54.652487Z", "url": "https://files.pythonhosted.org/packages/0f/e7/ecbf1c88fda85d1699b1a10a59d90a2f686898d6e4203f0d42727f33ec04/raiden-webui-0.11.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.11.1": [ { "comment_text": "", "digests": { "md5": "af8995cf02f6407a73dd12249dc076d6", "sha256": "5064e4454073ee03c588366adc71202c908e973c79e0a6dfef7b2519084e5ce8" }, "downloads": -1, "filename": "raiden_webui-0.11.1-py3-none-any.whl", "has_sig": false, "md5_digest": "af8995cf02f6407a73dd12249dc076d6", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 1559475, "upload_time": "2020-05-26T14:56:45", "upload_time_iso_8601": "2020-05-26T14:56:45.851670Z", "url": "https://files.pythonhosted.org/packages/93/bd/6699f6b15d35f43c55ee514dedf30bd5a7dbcbb929d97681db009c373760/raiden_webui-0.11.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a27acb4f2f92b708a4fa35ef08444032", "sha256": "be0067d1ea0412448a9af16fe71ae3294a8257b2af640a976dbd4b24fc23a361" }, "downloads": -1, "filename": "raiden-webui-0.11.1.tar.gz", "has_sig": false, "md5_digest": "a27acb4f2f92b708a4fa35ef08444032", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 1683588, "upload_time": "2020-05-26T14:56:47", "upload_time_iso_8601": "2020-05-26T14:56:47.510912Z", "url": "https://files.pythonhosted.org/packages/ec/6b/08f0073ca14037f110083a7f7cbb683ed46bcad32014e2664fc727f143f3/raiden-webui-0.11.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.20.0a1": [ { "comment_text": "", "digests": { "md5": "d1b861d753b2c30e488f9eded8ecd456", "sha256": "70dd157cd4da492097482a7a5eee207784d301f8a8e22bebd262821c649f4c46" }, "downloads": -1, "filename": "raiden_webui-0.20.0a1-py3-none-any.whl", "has_sig": false, "md5_digest": "d1b861d753b2c30e488f9eded8ecd456", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 2867900, "upload_time": "2020-01-23T13:05:06", "upload_time_iso_8601": "2020-01-23T13:05:06.085235Z", "url": "https://files.pythonhosted.org/packages/00/96/394f31d26ab1068bb61df5e1449908e8af61098f6af3cb2728a0e4b2b8aa/raiden_webui-0.20.0a1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ee0781dba0091b0eae53ce7b1a636529", "sha256": "0230fb11c34b702d3c94f80b697b9bf7b9458ebb1aaee9a35ebf4089929c3fe0" }, "downloads": -1, "filename": "raiden-webui-0.20.0a1.tar.gz", "has_sig": false, "md5_digest": "ee0781dba0091b0eae53ce7b1a636529", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 2450572, "upload_time": "2020-01-23T13:05:10", "upload_time_iso_8601": "2020-01-23T13:05:10.336614Z", "url": "https://files.pythonhosted.org/packages/47/7a/c160416d5f43242cc6902f0de822aab84a68d5fc73c67b57545fc0df6cd4/raiden-webui-0.20.0a1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.20.0a2": [ { "comment_text": "", "digests": { "md5": "be373b3c1fca9737324bb152035a590b", "sha256": "3639feab255e7723d24ca18889907d0fa3e7e0de88762e9e1f835123ce234771" }, "downloads": -1, "filename": "raiden_webui-0.20.0a2-py3-none-any.whl", "has_sig": false, "md5_digest": "be373b3c1fca9737324bb152035a590b", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 2261434, "upload_time": "2020-04-17T09:29:05", "upload_time_iso_8601": "2020-04-17T09:29:05.721118Z", "url": "https://files.pythonhosted.org/packages/00/b9/1a9d0f95dc2f40b14201519c8d3e750e33f5ad4315d6853f3f273ac7bd83/raiden_webui-0.20.0a2-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5d6b63b0630c9b9278a4c892e9711108", "sha256": "44699f1cfd4522233c24df9c2490dbe4ad7bc512143fd53e20579b0a582328b5" }, "downloads": -1, "filename": "raiden-webui-0.20.0a2.tar.gz", "has_sig": false, "md5_digest": "5d6b63b0630c9b9278a4c892e9711108", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 2388905, "upload_time": "2020-04-17T09:29:07", "upload_time_iso_8601": "2020-04-17T09:29:07.562863Z", "url": "https://files.pythonhosted.org/packages/91/8d/4f5d6722ac8fbe4004aa20843897abae93dc5ac1c5b6a35e0ef94a6baa0f/raiden-webui-0.20.0a2.tar.gz", "yanked": false, "yanked_reason": null } ], "0.20.0a3": [ { "comment_text": "", "digests": { "md5": "d7207019b7c8743c8341eaf11f67ac5b", "sha256": "849c9650881ea437049801f79b23b9ff6d8122105edced9d68937f4fa1c41eed" }, "downloads": -1, "filename": "raiden_webui-0.20.0a3-py3-none-any.whl", "has_sig": false, "md5_digest": "d7207019b7c8743c8341eaf11f67ac5b", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 2829972, "upload_time": "2020-05-26T10:37:57", "upload_time_iso_8601": "2020-05-26T10:37:57.874090Z", "url": "https://files.pythonhosted.org/packages/1a/0c/b9f056eeabd153e70ec9f2d348b402a0ad24489ba459b766db22958a7369/raiden_webui-0.20.0a3-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d53a67edb6af8ded382f09323ee91182", "sha256": "a526a997536be14da16fde6fc321e45cc53c55089bbb62c7bb98bd31a5ad00fc" }, "downloads": -1, "filename": "raiden-webui-0.20.0a3.tar.gz", "has_sig": false, "md5_digest": "d53a67edb6af8ded382f09323ee91182", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 2961642, "upload_time": "2020-05-26T10:37:59", "upload_time_iso_8601": "2020-05-26T10:37:59.499787Z", "url": "https://files.pythonhosted.org/packages/ef/25/6c81d291200f58045db434e66785b9a6dd18f6c3366ca4e5cea2dbc765c3/raiden-webui-0.20.0a3.tar.gz", "yanked": false, "yanked_reason": null } ], "0.20.0a4": [ { "comment_text": "", "digests": { "md5": "6563986b38edcad1875702219fcdb5d1", "sha256": "61e344c8c4f767fa85b800f19e51d6a2f3e61e925554616e6acda0bf66101b56" }, "downloads": -1, "filename": "raiden_webui-0.20.0a4-py3-none-any.whl", "has_sig": false, "md5_digest": "6563986b38edcad1875702219fcdb5d1", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 2833507, "upload_time": "2020-05-29T19:37:42", "upload_time_iso_8601": "2020-05-29T19:37:42.467249Z", "url": "https://files.pythonhosted.org/packages/c4/84/0c80b0ad6aad6c18787a26fc448692f52bbc54730c5e8683ffe670835daf/raiden_webui-0.20.0a4-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1df95f2b8640d24616f53b4776e03fca", "sha256": "c4df64f2d651cd7c8d575a6d066d36a2be31ef7ca132065723e9c583a1bb5bc9" }, "downloads": -1, "filename": "raiden-webui-0.20.0a4.tar.gz", "has_sig": false, "md5_digest": "1df95f2b8640d24616f53b4776e03fca", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 2964253, "upload_time": "2020-05-29T19:37:44", "upload_time_iso_8601": "2020-05-29T19:37:44.154133Z", "url": "https://files.pythonhosted.org/packages/61/f1/e8298afc21b37ce6a81c82453a240285720a3c22d4e302dd3bbef3d1cdac/raiden-webui-0.20.0a4.tar.gz", "yanked": false, "yanked_reason": null } ], "0.20.0a5": [ { "comment_text": "", "digests": { "md5": "340b0e56328ea5297bef00b48b126737", "sha256": "bf72f1d31057966fb4baafbd97a2f22c05533122aba3ba84dcfc01db6284d42a" }, "downloads": -1, "filename": "raiden_webui-0.20.0a5-py3-none-any.whl", "has_sig": false, "md5_digest": "340b0e56328ea5297bef00b48b126737", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 2834410, "upload_time": "2020-06-03T09:04:57", "upload_time_iso_8601": "2020-06-03T09:04:57.947055Z", "url": "https://files.pythonhosted.org/packages/35/c0/4bad530f882ebedb05e61f35dec52d3ef43840e741a777b1ad6f9123ab04/raiden_webui-0.20.0a5-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "bccdd0b724ef8ec93532aef081005c52", "sha256": "aa126209309af4f7040a52aaa291e1316dea813e410b31814cba3cdfe8beb37c" }, "downloads": -1, "filename": "raiden-webui-0.20.0a5.tar.gz", "has_sig": false, "md5_digest": "bccdd0b724ef8ec93532aef081005c52", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 2964927, "upload_time": "2020-06-03T09:04:59", "upload_time_iso_8601": "2020-06-03T09:04:59.453263Z", "url": "https://files.pythonhosted.org/packages/22/63/023f4eba6aadf6409da420b71ef5ea415057e8ff8d4d9f25318f1d541000/raiden-webui-0.20.0a5.tar.gz", "yanked": false, "yanked_reason": null } ], "0.20.0a6": [ { "comment_text": "", "digests": { "md5": "343f27163d334bc33feb676170eae885", "sha256": "2f76a4b6070138a055f6aef253770adc8e8b0f3f277643bdaed0b9de0cc34026" }, "downloads": -1, "filename": "raiden_webui-0.20.0a6-py3-none-any.whl", "has_sig": false, "md5_digest": "343f27163d334bc33feb676170eae885", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 2843698, "upload_time": "2020-06-11T15:03:21", "upload_time_iso_8601": "2020-06-11T15:03:21.563237Z", "url": "https://files.pythonhosted.org/packages/e6/0e/fa705947fbff83a7ef03e6e39861921f42275f121216ab20bfaf0bd42b12/raiden_webui-0.20.0a6-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "804b871550a322679a6d11fdc9a5f311", "sha256": "11f0a90837b1dda8d89d9999233eedb7c153d12f5c24cd7cab6467ae00faa1ea" }, "downloads": -1, "filename": "raiden-webui-0.20.0a6.tar.gz", "has_sig": false, "md5_digest": "804b871550a322679a6d11fdc9a5f311", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 2969349, "upload_time": "2020-06-11T15:03:23", "upload_time_iso_8601": "2020-06-11T15:03:23.158783Z", "url": "https://files.pythonhosted.org/packages/a9/5b/5333fe6115f452f717fffef0978d9a1c31a99858416629772f7964f4ca07/raiden-webui-0.20.0a6.tar.gz", "yanked": false, "yanked_reason": null } ], "0.6.0": [ { "comment_text": "", "digests": { "md5": "1d26c478d395751f1608c60b94cbf7ef", "sha256": "317ef4fafa2b136cba69515686f1527f18b6c6c54eb2561b6a4cb419673b0080" }, "downloads": -1, "filename": "raiden_webui-0.6.0-py3-none-any.whl", "has_sig": false, "md5_digest": "1d26c478d395751f1608c60b94cbf7ef", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 574444, "upload_time": "2018-12-05T14:46:55", "upload_time_iso_8601": "2018-12-05T14:46:55.724859Z", "url": "https://files.pythonhosted.org/packages/20/50/76bcdfcf1286cbcb8512919c2b67bcfbc00f312722380657b75d9d3310bb/raiden_webui-0.6.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0b70e3970fdf0b97a37f41494fa8f488", "sha256": "c9bb10ee967dfe2843535662fd79344763fd575d293ddb13d9dbf4c9418faf2e" }, "downloads": -1, "filename": "raiden-webui-0.6.0.tar.gz", "has_sig": false, "md5_digest": "0b70e3970fdf0b97a37f41494fa8f488", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 573134, "upload_time": "2018-12-05T14:46:58", "upload_time_iso_8601": "2018-12-05T14:46:58.980434Z", "url": "https://files.pythonhosted.org/packages/01/5f/38e7868ff32e71a6fd7da9fd6508041a79c83220a54c7ff208f91a24a893/raiden-webui-0.6.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.7.0": [ { "comment_text": "", "digests": { "md5": "43d7599809aff248e7c5b903b8038f7b", "sha256": "35d49f4c5aa4bd6e8dd30c9bc7b01a78a4999035288ff3bfe9cd6f8718269f57" }, "downloads": -1, "filename": "raiden_webui-0.7.0-py3-none-any.whl", "has_sig": false, "md5_digest": "43d7599809aff248e7c5b903b8038f7b", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 795539, "upload_time": "2019-01-04T17:19:29", "upload_time_iso_8601": "2019-01-04T17:19:29.699991Z", "url": "https://files.pythonhosted.org/packages/eb/34/1a54064567e8b78ef67be15b7950409acee5e46963888e3714212c2c4a57/raiden_webui-0.7.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "075e981f1e92f24c304ffc326cb3fbd8", "sha256": "120abdd6c575301dba29f3a7b53768d2ae59e1be5ed30304c9b1968cf8f93395" }, "downloads": -1, "filename": "raiden-webui-0.7.0.tar.gz", "has_sig": false, "md5_digest": "075e981f1e92f24c304ffc326cb3fbd8", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 793748, "upload_time": "2019-01-04T17:19:32", "upload_time_iso_8601": "2019-01-04T17:19:32.607213Z", "url": "https://files.pythonhosted.org/packages/ce/65/fb3d43ceff686cc0c46c0c0ecc73fcc302676b9154ca91f5ffbe641d8c4c/raiden-webui-0.7.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.7.1": [ { "comment_text": "", "digests": { "md5": "82f2e3fb509173ed887510f21661c17d", "sha256": "09206c9b5838ed70b13ae54f16a2c04ad15e44827e1daf878f736d6aa97c1b5e" }, "downloads": -1, "filename": "raiden_webui-0.7.1-py3-none-any.whl", "has_sig": false, "md5_digest": "82f2e3fb509173ed887510f21661c17d", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 796356, "upload_time": "2019-01-11T13:20:23", "upload_time_iso_8601": "2019-01-11T13:20:23.948888Z", "url": "https://files.pythonhosted.org/packages/40/2f/1af7ecb2a1e246debe97747c4cd068343562484acf6987e679ea3f3c70da/raiden_webui-0.7.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "07cc3a66512fd75a54400d10b4edd46d", "sha256": "798e6b58c6f797ac68f36d3e26fd8633928018bc35cab47a65030794f51c5402" }, "downloads": -1, "filename": "raiden-webui-0.7.1.tar.gz", "has_sig": false, "md5_digest": "07cc3a66512fd75a54400d10b4edd46d", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 794644, "upload_time": "2019-01-11T13:20:27", "upload_time_iso_8601": "2019-01-11T13:20:27.939078Z", "url": "https://files.pythonhosted.org/packages/ee/01/34326b385581adbf6813e19158023e749fb0f6c1289292f34bd3e2426216/raiden-webui-0.7.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.8.0": [ { "comment_text": "", "digests": { "md5": "f24e96a3e37369ac1c283bbe605a8c79", "sha256": "4c02cc06f3842effb4dd532d13059741a3af377c0788ee68ba0641f8af7f1149" }, "downloads": -1, "filename": "raiden_webui-0.8.0-py3-none-any.whl", "has_sig": false, "md5_digest": "f24e96a3e37369ac1c283bbe605a8c79", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 868672, "upload_time": "2019-01-25T11:12:23", "upload_time_iso_8601": "2019-01-25T11:12:23.804079Z", "url": "https://files.pythonhosted.org/packages/2f/23/eb4c242d563867c33a5543a053a4e9c48c8edc401965f610083cb78f5c19/raiden_webui-0.8.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e53b2b88e200510090efc6c2c5953159", "sha256": "5c8b926c7d355a92b1ce12cb1fc51582dc50a8188071dacaa08ca07b8c53848a" }, "downloads": -1, "filename": "raiden-webui-0.8.0.tar.gz", "has_sig": false, "md5_digest": "e53b2b88e200510090efc6c2c5953159", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 866476, "upload_time": "2019-01-25T11:12:25", "upload_time_iso_8601": "2019-01-25T11:12:25.403668Z", "url": "https://files.pythonhosted.org/packages/3e/2d/4bf77354fe12b38fd284b9eeb753572c1696126fd2252c5fb7871aeecf62/raiden-webui-0.8.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.9.0": [ { "comment_text": "", "digests": { "md5": "4b11f858a8d8de39b217742312c03a8b", "sha256": "e49ffc5a1940883bd2267790a8524eb640cf56920f013b5da854e535d78ceba3" }, "downloads": -1, "filename": "raiden_webui-0.9.0-py3-none-any.whl", "has_sig": false, "md5_digest": "4b11f858a8d8de39b217742312c03a8b", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 892859, "upload_time": "2019-07-24T09:07:24", "upload_time_iso_8601": "2019-07-24T09:07:24.629227Z", "url": "https://files.pythonhosted.org/packages/ce/92/8c869f96926e72fa9909e35964bae7f91c5153fdf7dc3af918d3e3416b38/raiden_webui-0.9.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9e1a4326881416ea029e3b855eee30bf", "sha256": "53186bc452c1a7e39e8e88b4ca266b37f7b87ef82278eb1f6ea90114578b531f" }, "downloads": -1, "filename": "raiden-webui-0.9.0.tar.gz", "has_sig": false, "md5_digest": "9e1a4326881416ea029e3b855eee30bf", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 1016265, "upload_time": "2019-07-24T09:07:26", "upload_time_iso_8601": "2019-07-24T09:07:26.822780Z", "url": "https://files.pythonhosted.org/packages/fd/e2/2e3f3023cf92259ab7298517c8e8f686f4cc45019b778bdb43dd5dfe69c0/raiden-webui-0.9.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.9.1": [ { "comment_text": "", "digests": { "md5": "42aca0df2b4bca582cfec66d61f9e6df", "sha256": "a7321335fec85683d2a981a65715dd2142ed1dc940023d4ac2c7ee0dd00caab0" }, "downloads": -1, "filename": "raiden_webui-0.9.1-py3-none-any.whl", "has_sig": false, "md5_digest": "42aca0df2b4bca582cfec66d61f9e6df", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 892911, "upload_time": "2019-07-26T12:58:21", "upload_time_iso_8601": "2019-07-26T12:58:21.212660Z", "url": "https://files.pythonhosted.org/packages/b3/09/47a47a82239029b79e401a5326dc9aa9975ef24585f0d4f92f1cf3e2636f/raiden_webui-0.9.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ed0508b44163aa6ed25424cbcc6a149c", "sha256": "2ff5281e4b82786f1daf6609d0013a6d8c24b02f463b9c04c65f437d232ef028" }, "downloads": -1, "filename": "raiden-webui-0.9.1.tar.gz", "has_sig": false, "md5_digest": "ed0508b44163aa6ed25424cbcc6a149c", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 1016408, "upload_time": "2019-07-26T12:58:22", "upload_time_iso_8601": "2019-07-26T12:58:22.727236Z", "url": "https://files.pythonhosted.org/packages/b7/55/c495f69a7d5cf5b0f93c01f92805608cd73816fb862acfccb197491cd0c3/raiden-webui-0.9.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.9.2": [ { "comment_text": "", "digests": { "md5": "7b6f2a05decc726a8d40ca0f7746662f", "sha256": "6bcf78031f6b9c29ca1ea27107aeaa2f2479e1836bae6d59c517c0a89c07c02e" }, "downloads": -1, "filename": "raiden_webui-0.9.2-py3-none-any.whl", "has_sig": false, "md5_digest": "7b6f2a05decc726a8d40ca0f7746662f", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 893209, "upload_time": "2019-08-07T10:07:54", "upload_time_iso_8601": "2019-08-07T10:07:54.352367Z", "url": "https://files.pythonhosted.org/packages/d5/e8/69b552afa1d94c4ae30aeade27b24d37eb7cae7fb251d811fcdc7813f8d4/raiden_webui-0.9.2-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a1be3667d4b7e7cf21993894c12f3895", "sha256": "8455df7452c1a79ff8d81eef14362544c3b4cfd899d97c9790d1b691b0d5ec3f" }, "downloads": -1, "filename": "raiden-webui-0.9.2.tar.gz", "has_sig": false, "md5_digest": "a1be3667d4b7e7cf21993894c12f3895", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 1016988, "upload_time": "2019-08-07T10:07:56", "upload_time_iso_8601": "2019-08-07T10:07:56.425410Z", "url": "https://files.pythonhosted.org/packages/d2/f2/e87bc218ac1ff11e941e271b074474f1a985676ce3e6069b4aaa593ce22a/raiden-webui-0.9.2.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.0": [ { "comment_text": "", "digests": { "md5": "aeb81ca49667329c4c70b8debe2588ac", "sha256": "b1203830b7b62381fa70de29e448c25503e17cf409c236b8c8766fc71dede6ac" }, "downloads": -1, "filename": "raiden_webui-1.0.0-py3-none-any.whl", "has_sig": false, "md5_digest": "aeb81ca49667329c4c70b8debe2588ac", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 2843625, "upload_time": "2020-06-12T14:47:26", "upload_time_iso_8601": "2020-06-12T14:47:26.404286Z", "url": "https://files.pythonhosted.org/packages/6c/8f/820ac0846463710fd83adc48c7c56ae4bbb66db8f65bf84454d43eb34575/raiden_webui-1.0.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7dbdd1c8599d650253f528133bbf4f8e", "sha256": "7c055a6643dcabfe8a158f542375ee357e76c1d66dd3d7bdff8453a2b3a62d06" }, "downloads": -1, "filename": "raiden-webui-1.0.0.tar.gz", "has_sig": false, "md5_digest": "7dbdd1c8599d650253f528133bbf4f8e", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 2969174, "upload_time": "2020-06-12T14:47:28", "upload_time_iso_8601": "2020-06-12T14:47:28.266646Z", "url": "https://files.pythonhosted.org/packages/6f/c5/ae8dae38eb7ff1634488e32787cda6f717d4cc4f08d7a1871ce6d60e791b/raiden-webui-1.0.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.1": [ { "comment_text": "", "digests": { "md5": "448beceb89e48d62f53f4e3fee9a799e", "sha256": "bc937050f806c51a03937d764321b1f50d6567189d74c0355afc07caaa5d7822" }, "downloads": -1, "filename": "raiden_webui-1.0.1-py3-none-any.whl", "has_sig": false, "md5_digest": "448beceb89e48d62f53f4e3fee9a799e", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 2843846, "upload_time": "2020-06-17T11:59:41", "upload_time_iso_8601": "2020-06-17T11:59:41.592891Z", "url": "https://files.pythonhosted.org/packages/00/48/dd1ba715c3f41c2e401a44f640fe257f85a53984d003f5f4327f0bfddaa0/raiden_webui-1.0.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4006a808d4733e0a4d61794a49c8c5ad", "sha256": "9d79d9b22587e5000be997fc70e01bf5a49de6dda461d393d14af4eac9a2757a" }, "downloads": -1, "filename": "raiden-webui-1.0.1.tar.gz", "has_sig": false, "md5_digest": "4006a808d4733e0a4d61794a49c8c5ad", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 2969542, "upload_time": "2020-06-17T11:59:43", "upload_time_iso_8601": "2020-06-17T11:59:43.425626Z", "url": "https://files.pythonhosted.org/packages/e1/68/cdda96c01a34076c7da903800167b05b97767fe6b0f7978908e0e0601eae/raiden-webui-1.0.1.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.2": [ { "comment_text": "", "digests": { "md5": "b6bacbc3c491ca3702f61e72223c4c94", "sha256": "f7daf84efdcf0cff81cb46b7f2370212b120f3b1a8d3793c65ee1a92ca6160d3" }, "downloads": -1, "filename": "raiden_webui-1.0.2-py3-none-any.whl", "has_sig": false, "md5_digest": "b6bacbc3c491ca3702f61e72223c4c94", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 2903308, "upload_time": "2020-07-14T08:26:41", "upload_time_iso_8601": "2020-07-14T08:26:41.949153Z", "url": "https://files.pythonhosted.org/packages/e0/f0/54192a45f0ed5e5aeb219272fcdea61ab2faeed978f8782d64feea53d84b/raiden_webui-1.0.2-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d7d86282ec60c1477db1ed48ca22ff7c", "sha256": "12e7ececc685b7f156c894461856d7eb5be3a725d8863daa308f7285c606d012" }, "downloads": -1, "filename": "raiden-webui-1.0.2.tar.gz", "has_sig": false, "md5_digest": "d7d86282ec60c1477db1ed48ca22ff7c", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 3566634, "upload_time": "2020-07-14T08:26:43", "upload_time_iso_8601": "2020-07-14T08:26:43.521709Z", "url": "https://files.pythonhosted.org/packages/e1/e1/0bdc859cdbdccb4dbadf4473ca5772f4b5694713bab13936aad4526bdbf9/raiden-webui-1.0.2.tar.gz", "yanked": false, "yanked_reason": null } ], "1.1.0": [ { "comment_text": "", "digests": { "md5": "6574a94cf7efaf1ceede8ea32be6e5b3", "sha256": "ca126ee3cd151f0639348e0507da3509ea5f8a34bf2c98f7b993db9a834850b9" }, "downloads": -1, "filename": "raiden_webui-1.1.0-py3-none-any.whl", "has_sig": false, "md5_digest": "6574a94cf7efaf1ceede8ea32be6e5b3", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 2775257, "upload_time": "2020-12-02T17:15:33", "upload_time_iso_8601": "2020-12-02T17:15:33.787062Z", "url": "https://files.pythonhosted.org/packages/19/4e/69f606b25619ef2620bfd4b66a6428821677e57f1d35025ffe6b0194e1b9/raiden_webui-1.1.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3f5cb6b1ca6fc0d8c93da62c0fee0504", "sha256": "5588a2488693e02666911fae23770131448b4d85261b5898d5f4d1e0164acf28" }, "downloads": -1, "filename": "raiden-webui-1.1.0.tar.gz", "has_sig": false, "md5_digest": "3f5cb6b1ca6fc0d8c93da62c0fee0504", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 3432420, "upload_time": "2020-12-02T17:15:35", "upload_time_iso_8601": "2020-12-02T17:15:35.557080Z", "url": "https://files.pythonhosted.org/packages/9b/5e/9d65f6cd3d01878dc667c96894445dca236ddf300384c9183117e22c945e/raiden-webui-1.1.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.1.1": [ { "comment_text": "", "digests": { "md5": "7da78925d548625d43fdf2bb12d1625b", "sha256": "25afb8df56cc65ff827236b949f6113cd6227147dbc4930ae6f8145d24455cee" }, "downloads": -1, "filename": "raiden_webui-1.1.1-py3-none-any.whl", "has_sig": false, "md5_digest": "7da78925d548625d43fdf2bb12d1625b", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 2775630, "upload_time": "2020-12-03T13:43:24", "upload_time_iso_8601": "2020-12-03T13:43:24.761118Z", "url": "https://files.pythonhosted.org/packages/1e/32/81fe4ff1d0b4f5d6595d8fcce59ed14cb7746d626fc05df52395ddd83386/raiden_webui-1.1.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "de9a909217a1f669772a451652fe45ec", "sha256": "508faaf6b14f8e8430484662d78c00f492ac5ce4decdd9e62524384e0b29886f" }, "downloads": -1, "filename": "raiden-webui-1.1.1.tar.gz", "has_sig": false, "md5_digest": "de9a909217a1f669772a451652fe45ec", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 3432837, "upload_time": "2020-12-03T13:43:26", "upload_time_iso_8601": "2020-12-03T13:43:26.303804Z", "url": "https://files.pythonhosted.org/packages/2c/1a/595b856161ad760cc41685f2cb2337ba638a7c84cb650ede039ad230ba60/raiden-webui-1.1.1.tar.gz", "yanked": false, "yanked_reason": null } ], "1.2.1": [ { "comment_text": "", "digests": { "md5": "6bb4d34015ad642430a8bf100f7f836c", "sha256": "7b7a896fa071c73c8ae7b1b849cdd5e63d166f408f6882360c5f90efab587caf" }, "downloads": -1, "filename": "raiden_webui-1.2.1-py3-none-any.whl", "has_sig": false, "md5_digest": "6bb4d34015ad642430a8bf100f7f836c", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 2826376, "upload_time": "2021-04-26T11:40:43", "upload_time_iso_8601": "2021-04-26T11:40:43.959587Z", "url": "https://files.pythonhosted.org/packages/1f/b6/87e5969502c3eb728a15db5e9a501b417806a91431c0aa37bc1fa720073d/raiden_webui-1.2.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "40a6c2091c85d614a3e3bdfc86a0bbca", "sha256": "4ddad07cf3b213fc7f8437df15b6948bcabed27c3c86a2a3ca013332729ec9d5" }, "downloads": -1, "filename": "raiden-webui-1.2.1.tar.gz", "has_sig": false, "md5_digest": "40a6c2091c85d614a3e3bdfc86a0bbca", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 3484643, "upload_time": "2021-04-26T11:40:45", "upload_time_iso_8601": "2021-04-26T11:40:45.472717Z", "url": "https://files.pythonhosted.org/packages/32/4e/ee2ff9b3a92d41b1eb69d58d43467ee4279d3c55ae8f640c763031540324/raiden-webui-1.2.1.tar.gz", "yanked": false, "yanked_reason": null } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "6bb4d34015ad642430a8bf100f7f836c", "sha256": "7b7a896fa071c73c8ae7b1b849cdd5e63d166f408f6882360c5f90efab587caf" }, "downloads": -1, "filename": "raiden_webui-1.2.1-py3-none-any.whl", "has_sig": false, "md5_digest": "6bb4d34015ad642430a8bf100f7f836c", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 2826376, "upload_time": "2021-04-26T11:40:43", "upload_time_iso_8601": "2021-04-26T11:40:43.959587Z", "url": "https://files.pythonhosted.org/packages/1f/b6/87e5969502c3eb728a15db5e9a501b417806a91431c0aa37bc1fa720073d/raiden_webui-1.2.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "40a6c2091c85d614a3e3bdfc86a0bbca", "sha256": "4ddad07cf3b213fc7f8437df15b6948bcabed27c3c86a2a3ca013332729ec9d5" }, "downloads": -1, "filename": "raiden-webui-1.2.1.tar.gz", "has_sig": false, "md5_digest": "40a6c2091c85d614a3e3bdfc86a0bbca", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 3484643, "upload_time": "2021-04-26T11:40:45", "upload_time_iso_8601": "2021-04-26T11:40:45.472717Z", "url": "https://files.pythonhosted.org/packages/32/4e/ee2ff9b3a92d41b1eb69d58d43467ee4279d3c55ae8f640c763031540324/raiden-webui-1.2.1.tar.gz", "yanked": false, "yanked_reason": null } ], "vulnerabilities": [] }