{
"info": {
"author": "National Instruments",
"author_email": "opensource@ni.com",
"bugtrack_url": null,
"classifiers": [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Manufacturing",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: System :: Hardware :: Hardware Drivers"
],
"description": "Overall Status\n--------------\n\n+----------------------+------------------------------------------------------------------------------------------------------------------------------------+\n| master branch status | |BuildStatus| |Docs| |MITLicense| |CoverageStatus| |\n+----------------------+------------------------------------------------------------------------------------------------------------------------------------+\n| GitHub status | |OpenIssues| |OpenPullRequests| |\n+----------------------+------------------------------------------------------------------------------------------------------------------------------------+\n\n=========== ============================================================================================================================\nInfo Python bindings for NI Modular Instrument drivers. See `GitHub `_ for the latest source.\nAuthor National Instruments\n=========== ============================================================================================================================\n\n.. |BuildStatus| image:: https://img.shields.io/travis/ni/nimi-python.svg\n :alt: Build Status - master branch\n :target: https://travis-ci.org/ni/nimi-python\n\n.. |Docs| image:: https://readthedocs.org/projects/nimi-python/badge/?version=latest\n :alt: Documentation Status - master branch\n :target: https://nimi-python.readthedocs.io/en/latest/?badge=latest\n\n.. |MITLicense| image:: https://img.shields.io/badge/License-MIT-yellow.svg\n :alt: MIT License\n :target: https://opensource.org/licenses/MIT\n\n.. |CoverageStatus| image:: https://coveralls.io/repos/github/ni/nimi-python/badge.svg?branch=master&dummy=no_cache_please_1\n :alt: Test Coverage - master branch\n :target: https://coveralls.io/github/ni/nimi-python?branch=master\n\n.. |OpenIssues| image:: https://img.shields.io/github/issues/ni/nimi-python.svg\n :alt: Open Issues + Pull Requests\n :target: https://github.com/ni/nimi-python/issues\n\n.. |OpenPullRequests| image:: https://img.shields.io/github/issues-pr/ni/nimi-python.svg\n :alt: Open Pull Requests\n :target: https://github.com/ni/nimi-python/pulls\n\n\n.. _about-section:\n\nAbout\n=====\n\nThe **nimi-python** repository generates Python bindings (Application Programming Interface) for interacting with the Modular Instrument drivers. The\nfollowing drivers are supported:\n\n* NI-DCPower (Python module: nidcpower)\n* NI-Digital Pattern Driver (Python module: nidigital)\n* NI-DMM (Python module: nidmm)\n* NI-FGEN (Python module: nifgen)\n* NI-ModInst (Python module: nimodinst)\n* NI-SCOPE (Python module: niscope)\n* NI Switch Executive (Python module: nise)\n* NI-SWITCH (Python module: niswitch)\n* NI-TClk (Python module: nitclk)\n\nIt is implemented as a set of `Mako templates `_ and per-driver metafiles that produce a Python module for each driver. The driver is\ncalled through its public C API using the `ctypes `_ Python library.\n\n**nimi-python** supports all the Operating Systems supported by the underlying driver.\n\n**nimi-python** follows `Python Software Foundation `_ support policy for different versions. At\nthis time this includes Python 3.6 and above using CPython.\n\n\nNI-SWITCH Python API Status\n---------------------------\n\n+-------------------------------+-------------------------+\n| NI-SWITCH (niswitch) | |\n+===============================+=========================+\n| Driver Version Tested Against | 20.5.0 |\n+-------------------------------+-------------------------+\n| PyPI Version | |niswitchLatestVersion| |\n+-------------------------------+-------------------------+\n| Supported Python Version | |niswitchPythonVersion| |\n+-------------------------------+-------------------------+\n| Open Issues | |niswitchOpenIssues| |\n+-------------------------------+-------------------------+\n| Open Pull Requests | |niswitchOpenPRs| |\n+-------------------------------+-------------------------+\n\n\n.. |niswitchLatestVersion| image:: http://img.shields.io/pypi/v/niswitch.svg\n :alt: Latest NI-SWITCH Version\n :target: http://pypi.python.org/pypi/niswitch\n\n\n.. |niswitchPythonVersion| image:: http://img.shields.io/pypi/pyversions/niswitch.svg\n :alt: NI-SWITCH supported Python versions\n :target: http://pypi.python.org/pypi/niswitch\n\n\n.. |niswitchOpenIssues| image:: https://img.shields.io/github/issues/ni/nimi-python/niswitch.svg\n :alt: Open Issues + Pull Requests for NI-SWITCH\n :target: https://github.com/ni/nimi-python/issues?q=is%3Aopen+is%3Aissue+label%3Aniswitch\n\n\n.. |niswitchOpenPRs| image:: https://img.shields.io/github/issues-pr/ni/nimi-python/niswitch.svg\n :alt: Pull Requests for NI-SWITCH\n :target: https://github.com/ni/nimi-python/pulls?q=is%3Aopen+is%3Aissue+label%3Aniswitch\n\n\n\n.. _niswitch_installation-section:\n\nInstallation\n------------\n\nAs a prerequisite to using the niswitch module, you must install the NI-SWITCH runtime on your system. Visit `ni.com/downloads `_ to download the driver runtime for your devices.\n\nThe nimi-python modules (i.e. for **NI-SWITCH**) can be installed with `pip `_::\n\n $ python -m pip install niswitch~=1.4.1\n\nOr **easy_install** from\n`setuptools `_::\n\n $ python -m easy_install niswitch\n\n\nContributing\n============\n\nWe welcome contributions! You can clone the project repository, build it, and install it by `following these instructions `_.\n\nUsage\n------\n\nThe following is a basic example of using the **niswitch** module to open a session to a Switch and connect channels.\n\n.. code-block:: python\n\n import niswitch\n with niswitch.Session(\"Dev1\") as session:\n session.connect(channel1='r0', channel2='c0')\n\nAdditional examples for NI-SWITCH are located in src/niswitch/examples/ directory.\n\n.. _support-section:\n\nSupport / Feedback\n==================\n\nThe packages included in **nimi-python** package are supported by NI. For support, open\na request through the NI support portal at `ni.com `_.\n\n.. _bugs-section:\n\nBugs / Feature Requests\n=======================\n\nTo report a bug or submit a feature request specific to NI Modular Instruments Python bindings (nimi-python), please use the\n`GitHub issues page `_.\n\nFill in the issue template as completely as possible and we will respond as soon\nas we can.\n\nFor hardware support or any other questions not specific to this GitHub project, please visit `NI Community Forums `_.\n\n\n.. _documentation-section:\n\nDocumentation\n=============\n\nDocumentation is available `here `_.\n\n\n.. _license-section:\n\nLicense\n=======\n\n**nimi-python** is licensed under an MIT-style license (`see\nLICENSE `_).\nOther incorporated projects may be licensed under different licenses. All\nlicenses allow for non-commercial and commercial use.\n\n\n\n\n",
"description_content_type": "text/x-rst",
"docs_url": null,
"download_url": "",
"downloads": {
"last_day": -1,
"last_month": -1,
"last_week": -1
},
"home_page": "https://github.com/ni/nimi-python",
"keywords": "niswitch",
"license": "MIT",
"maintainer": "National Instruments",
"maintainer_email": "opensource@ni.com",
"name": "niswitch",
"package_url": "https://pypi.org/project/niswitch/",
"platform": "",
"project_url": "https://pypi.org/project/niswitch/",
"project_urls": {
"Homepage": "https://github.com/ni/nimi-python"
},
"release_url": "https://pypi.org/project/niswitch/1.4.1/",
"requires_dist": [
"hightime (>=0.2.0)",
"enum34 ; python_version < \"3.4\"",
"singledispatch ; python_version < \"3.4\""
],
"requires_python": "",
"summary": "NI-SWITCH Python API",
"version": "1.4.1",
"yanked": false,
"yanked_reason": null
},
"last_serial": 11233651,
"releases": {
"0.2.0": [
{
"comment_text": "",
"digests": {
"md5": "37a6f83d23868e7cb0b0672643751aa4",
"sha256": "f6897ca6544087242824599f97335fb115c8bf0281475541c93b248ef0a1041b"
},
"downloads": -1,
"filename": "niswitch-0.2.0-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "37a6f83d23868e7cb0b0672643751aa4",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 38392,
"upload_time": "2017-09-20T21:51:27",
"upload_time_iso_8601": "2017-09-20T21:51:27.377057Z",
"url": "https://files.pythonhosted.org/packages/b8/f9/2f226021cf35270376523e11278195ccb2a060f4fc2cc4c8178a0a6293e2/niswitch-0.2.0-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "2580b14b41b5f25c12c32f6c791dca12",
"sha256": "2022658e021b146a1220d1ad9fbe35662b99baf5b295c0b5dd3f3fd79da7e558"
},
"downloads": -1,
"filename": "niswitch-0.2.0.tar.gz",
"has_sig": false,
"md5_digest": "2580b14b41b5f25c12c32f6c791dca12",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 33556,
"upload_time": "2017-09-20T21:51:33",
"upload_time_iso_8601": "2017-09-20T21:51:33.986876Z",
"url": "https://files.pythonhosted.org/packages/45/b0/80050b3ed4f9e29dcb4d34736f54eb869cfce658022c82eaff76b4c7772a/niswitch-0.2.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"0.2.0.dev0": [
{
"comment_text": "",
"digests": {
"md5": "fe3a2d9d379ba0c8f5a5749ca9b30ebd",
"sha256": "06384a56d1e3fddd1d1b5cd395ae41578ecc05df6b28f53ffa103b294e15f475"
},
"downloads": -1,
"filename": "niswitch-0.2.0.dev0-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "fe3a2d9d379ba0c8f5a5749ca9b30ebd",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 43155,
"upload_time": "2017-09-11T15:15:32",
"upload_time_iso_8601": "2017-09-11T15:15:32.697369Z",
"url": "https://files.pythonhosted.org/packages/56/75/27c04ccc6e25935a0718e717c5fedd8bf6992118282720e3033e87380308/niswitch-0.2.0.dev0-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "aa7a33a7e265a3368968e8079b952dc0",
"sha256": "269bade962a6518716f463885171f1a9c57b235fb6ca9c16b0b9e81cbcee450d"
},
"downloads": -1,
"filename": "niswitch-0.2.0.dev0.tar.gz",
"has_sig": false,
"md5_digest": "aa7a33a7e265a3368968e8079b952dc0",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 38764,
"upload_time": "2017-09-11T15:15:38",
"upload_time_iso_8601": "2017-09-11T15:15:38.450308Z",
"url": "https://files.pythonhosted.org/packages/db/4f/76a59a96525ebb81f051139c0c8cd192f01268063d513cadb51c496aa440/niswitch-0.2.0.dev0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"0.3.0": [
{
"comment_text": "",
"digests": {
"md5": "7e75cc3471666f6251bf3114d88f3e53",
"sha256": "592ad59bea2cec53d3ccec09242c7fe393796240cf03932b2bf43bbffbcec95e"
},
"downloads": -1,
"filename": "niswitch-0.3.0-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "7e75cc3471666f6251bf3114d88f3e53",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 35873,
"upload_time": "2017-10-13T15:48:29",
"upload_time_iso_8601": "2017-10-13T15:48:29.889576Z",
"url": "https://files.pythonhosted.org/packages/fe/32/b1f126f3ebd075d60d9bc10a9f3529cb1e6eef2a641154fb6e3557a65a40/niswitch-0.3.0-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "5b38e59315ccb2f21c9901871a301cb7",
"sha256": "ebf26c73486d1466abc6a6cc1b371cbf18fae67dd8f41caa2396d142ca6bdc36"
},
"downloads": -1,
"filename": "niswitch-0.3.0.tar.gz",
"has_sig": false,
"md5_digest": "5b38e59315ccb2f21c9901871a301cb7",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 31074,
"upload_time": "2017-10-13T15:48:33",
"upload_time_iso_8601": "2017-10-13T15:48:33.705342Z",
"url": "https://files.pythonhosted.org/packages/d8/50/a539b1b50085baea0fec070e7194c2bdd57457bdcb696de9e43cf3c3164f/niswitch-0.3.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"0.3.0.dev0": [
{
"comment_text": "",
"digests": {
"md5": "2277266d570737ae45bcdd8226f84f2e",
"sha256": "4317fd7ca40a184d16d9d9804f224ba91e1de200bb8b1891e5c55ec5ec355365"
},
"downloads": -1,
"filename": "niswitch-0.3.0.dev0-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "2277266d570737ae45bcdd8226f84f2e",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 35973,
"upload_time": "2017-10-12T22:04:22",
"upload_time_iso_8601": "2017-10-12T22:04:22.606583Z",
"url": "https://files.pythonhosted.org/packages/81/24/9e5f0c7f5ab8e1e53f98faa09b10c414d67c2738c64234aa8cbdb23fb455/niswitch-0.3.0.dev0-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "8444be99e12129a3e736b31d259288ae",
"sha256": "633c3f379a65aa248775644a612a96d10af49bf57b43a9d843727081d49f7906"
},
"downloads": -1,
"filename": "niswitch-0.3.0.dev0.tar.gz",
"has_sig": false,
"md5_digest": "8444be99e12129a3e736b31d259288ae",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 31223,
"upload_time": "2017-10-12T22:04:28",
"upload_time_iso_8601": "2017-10-12T22:04:28.228867Z",
"url": "https://files.pythonhosted.org/packages/3a/4f/f06aefad9f1b11a2de062343a811611b0ba29743c301258274f3ad80e973/niswitch-0.3.0.dev0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"0.4.0": [
{
"comment_text": "",
"digests": {
"md5": "61fe9bdd212432f7d24cb85c576c6034",
"sha256": "895de243b15d55d8025a394088941a600b742fd1c92cfe56b05df14d21ad120c"
},
"downloads": -1,
"filename": "niswitch-0.4.0-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "61fe9bdd212432f7d24cb85c576c6034",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 35720,
"upload_time": "2017-11-07T23:24:31",
"upload_time_iso_8601": "2017-11-07T23:24:31.579158Z",
"url": "https://files.pythonhosted.org/packages/ad/a3/a3545cd9e3c9b94a01d395c0e49f9683ae117f2a350a7293544058738fab/niswitch-0.4.0-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "d0d29c649b47e85b0d2cb1a18fd4bf44",
"sha256": "e39656ade29aa51372302330181bcb9fe20b5ecbd12824098904bca2b00310c3"
},
"downloads": -1,
"filename": "niswitch-0.4.0.tar.gz",
"has_sig": false,
"md5_digest": "d0d29c649b47e85b0d2cb1a18fd4bf44",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 31001,
"upload_time": "2017-11-07T23:24:44",
"upload_time_iso_8601": "2017-11-07T23:24:44.349759Z",
"url": "https://files.pythonhosted.org/packages/53/88/c286d55a3f50530c13f9b9f714ddcf2892832917182fad315c13bc7f8196/niswitch-0.4.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"0.4.0.dev0": [
{
"comment_text": "",
"digests": {
"md5": "53e808d41a77a13ea96da577dcc2fa23",
"sha256": "e425f2659ff0106e8c4d5448b720d8e92d6e85f0c341dc1fd1d98acbcee50304"
},
"downloads": -1,
"filename": "niswitch-0.4.0.dev0-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "53e808d41a77a13ea96da577dcc2fa23",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 35804,
"upload_time": "2017-11-07T23:24:30",
"upload_time_iso_8601": "2017-11-07T23:24:30.629477Z",
"url": "https://files.pythonhosted.org/packages/67/0f/8bc8ad335de74be831be6cb3911d175e2737c95c0426eaf0d26c1d96c6e3/niswitch-0.4.0.dev0-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "3a3d21e94a2f9a6386c946e57c2fa5f3",
"sha256": "1b559b9b1bcd3c5ba6750210ea97612b4e16ba700418ab125ad5308fdd9d464f"
},
"downloads": -1,
"filename": "niswitch-0.4.0.dev0.tar.gz",
"has_sig": false,
"md5_digest": "3a3d21e94a2f9a6386c946e57c2fa5f3",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 31012,
"upload_time": "2017-11-07T23:24:43",
"upload_time_iso_8601": "2017-11-07T23:24:43.549386Z",
"url": "https://files.pythonhosted.org/packages/07/81/3d7cd9d0834558dbf85bf0ab28d388a84ee9fe7abc9f22c365df692f4712/niswitch-0.4.0.dev0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"0.5.0": [
{
"comment_text": "",
"digests": {
"md5": "abc48f1907003dbdc2012cd5575de3df",
"sha256": "1402943374f614a7237e433fed06964c7a210c0de4713014e0f37961f83c10a6"
},
"downloads": -1,
"filename": "niswitch-0.5.0-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "abc48f1907003dbdc2012cd5575de3df",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 34856,
"upload_time": "2017-11-27T22:26:38",
"upload_time_iso_8601": "2017-11-27T22:26:38.749290Z",
"url": "https://files.pythonhosted.org/packages/21/61/f790a2c04985dc5b311c749bec952425a2e8948b3e1b1cc8615e110f57eb/niswitch-0.5.0-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "e6cebb6a52881599fcb5c3b5f062fc72",
"sha256": "aa764fd619284506592d2b8c96b06f40f0d791e285a0ef07b3fee1f6cc90a571"
},
"downloads": -1,
"filename": "niswitch-0.5.0.tar.gz",
"has_sig": false,
"md5_digest": "e6cebb6a52881599fcb5c3b5f062fc72",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 30084,
"upload_time": "2017-11-27T22:26:48",
"upload_time_iso_8601": "2017-11-27T22:26:48.109956Z",
"url": "https://files.pythonhosted.org/packages/f9/5f/6cb5434e64b88c2d635593b7516a248a83b8108d4f94442ac939683740f7/niswitch-0.5.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"0.6.0": [
{
"comment_text": "",
"digests": {
"md5": "7cca6113ae32c6b83109bdc99daae38a",
"sha256": "14b01ce87898d77374a9628c413e62bee75167560583c8232fa8a2d6de9b0627"
},
"downloads": -1,
"filename": "niswitch-0.6.0-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "7cca6113ae32c6b83109bdc99daae38a",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 34861,
"upload_time": "2017-12-20T22:57:54",
"upload_time_iso_8601": "2017-12-20T22:57:54.416327Z",
"url": "https://files.pythonhosted.org/packages/28/cb/a838ce32f2e4c1259ed028e6af54c30f731ebf98d4cc53a06ebb6af18dac/niswitch-0.6.0-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "82f76694e05d0e192b8ba4cca5b49900",
"sha256": "af70c21b3b0750ef568dea6876406deee484a1fc1dcde280bdb5ac3fe4844ef4"
},
"downloads": -1,
"filename": "niswitch-0.6.0.tar.gz",
"has_sig": false,
"md5_digest": "82f76694e05d0e192b8ba4cca5b49900",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 30188,
"upload_time": "2017-12-20T22:58:05",
"upload_time_iso_8601": "2017-12-20T22:58:05.675063Z",
"url": "https://files.pythonhosted.org/packages/ea/f1/58ad48e7ffce62ce682c0a8135466acf774340c43debe59ea96d9c2e4d67/niswitch-0.6.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"0.7.0": [
{
"comment_text": "",
"digests": {
"md5": "9dda1b520d72533411c81f27b7671663",
"sha256": "858715c3bb36f529fc0e7245c1e9919416e1b381766850d84e03bdad837dcfb9"
},
"downloads": -1,
"filename": "niswitch-0.7.0-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "9dda1b520d72533411c81f27b7671663",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 39630,
"upload_time": "2018-02-20T19:33:22",
"upload_time_iso_8601": "2018-02-20T19:33:22.214511Z",
"url": "https://files.pythonhosted.org/packages/1d/3a/25b767c8d9dd4cfef0a4453a055d821720ebe6765142c38033320754c39a/niswitch-0.7.0-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "4d4338165900e29a4ea7caf0f8565336",
"sha256": "6d0a12a41c583debf62fe4846a24b8a64e47bbfdb142b6265df8c25f000fb2e3"
},
"downloads": -1,
"filename": "niswitch-0.7.0.tar.gz",
"has_sig": false,
"md5_digest": "4d4338165900e29a4ea7caf0f8565336",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 34675,
"upload_time": "2018-02-20T19:33:32",
"upload_time_iso_8601": "2018-02-20T19:33:32.387488Z",
"url": "https://files.pythonhosted.org/packages/24/a3/43721d37d84729481ec257cfbb4d359b88695d8d22496f7ec1eab24e99c1/niswitch-0.7.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"0.8.0": [
{
"comment_text": "",
"digests": {
"md5": "18cef4800268013949436a313717b1c0",
"sha256": "413c9a858dc91d518cb801edf45b4a002c0a7766e521885774662b605bc5d159"
},
"downloads": -1,
"filename": "niswitch-0.8.0-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "18cef4800268013949436a313717b1c0",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 38748,
"upload_time": "2018-04-27T18:35:32",
"upload_time_iso_8601": "2018-04-27T18:35:32.550476Z",
"url": "https://files.pythonhosted.org/packages/dd/63/394d94c769593196e0be29821f91983e5529a0e8cdb51c37dfc32e765b84/niswitch-0.8.0-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "3f7281b9c3b17b39b77bc8ffb0bab70d",
"sha256": "043165474c0759dc8a7814411bac8be383457377fd6d06dbe9f336ba79c5a62a"
},
"downloads": -1,
"filename": "niswitch-0.8.0.tar.gz",
"has_sig": false,
"md5_digest": "3f7281b9c3b17b39b77bc8ffb0bab70d",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 37089,
"upload_time": "2018-04-27T18:35:39",
"upload_time_iso_8601": "2018-04-27T18:35:39.247994Z",
"url": "https://files.pythonhosted.org/packages/8e/fa/27f887a24c96846682c30ae95b2da089b7982b6c5f84a64db8d7659c7822/niswitch-0.8.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"0.8.0.dev0": [
{
"comment_text": "",
"digests": {
"md5": "8926eca724384ad67818861362c58ede",
"sha256": "62d632360e7945d3f1db373539832dc15cb79d17859458ba89aa2c157074fed9"
},
"downloads": -1,
"filename": "niswitch-0.8.0.dev0-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "8926eca724384ad67818861362c58ede",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 41111,
"upload_time": "2018-03-20T22:14:56",
"upload_time_iso_8601": "2018-03-20T22:14:56.959710Z",
"url": "https://files.pythonhosted.org/packages/5f/41/0c86721adbd1974defd0751fb6b160dc3b6ea76316c467ab98a7479f180f/niswitch-0.8.0.dev0-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "70c5ad06d9577084a3bb51ecc3e71f12",
"sha256": "8882b60c87c18fab890fb8dab561236d599e5cdc165edb383411abbe28b19cb2"
},
"downloads": -1,
"filename": "niswitch-0.8.0.dev0.tar.gz",
"has_sig": false,
"md5_digest": "70c5ad06d9577084a3bb51ecc3e71f12",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 36031,
"upload_time": "2018-03-20T22:15:05",
"upload_time_iso_8601": "2018-03-20T22:15:05.392303Z",
"url": "https://files.pythonhosted.org/packages/41/87/f5ec38cb615007cbd5ac605e6e61429f670818a463144083d1dc4594da4f/niswitch-0.8.0.dev0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"0.9.0": [
{
"comment_text": "",
"digests": {
"md5": "cb98b47149867825d7f657d71a2f345b",
"sha256": "d01a815d390b9bcd207a26e446e7bbdf475cdfa8c8b4810a8b3bafe75ed64550"
},
"downloads": -1,
"filename": "niswitch-0.9.0-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "cb98b47149867825d7f657d71a2f345b",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 39695,
"upload_time": "2018-05-22T19:53:43",
"upload_time_iso_8601": "2018-05-22T19:53:43.810500Z",
"url": "https://files.pythonhosted.org/packages/02/c3/e699402db5a783aaec6ed9cc56cc19bb6f7a38e1aea002819feb70c84b55/niswitch-0.9.0-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "89187db8479bd2f5199184f83d0235fa",
"sha256": "1edf9d3e20c5f1e80b764d4282d57f6bfcc314b081b21235d817e85c3e602d5b"
},
"downloads": -1,
"filename": "niswitch-0.9.0.tar.gz",
"has_sig": false,
"md5_digest": "89187db8479bd2f5199184f83d0235fa",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 37838,
"upload_time": "2018-05-22T19:53:49",
"upload_time_iso_8601": "2018-05-22T19:53:49.858254Z",
"url": "https://files.pythonhosted.org/packages/15/16/23b6be94aa490171beafa4a2e28e5e8ed2642b0d70a89fe64ee22589963c/niswitch-0.9.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"1.0.0": [
{
"comment_text": "",
"digests": {
"md5": "81aa346c312cc9197040cfea96b57afb",
"sha256": "a68298e108ef30b68a5f2937b15c71752f3676a248ca8cb0375700d066368ad2"
},
"downloads": -1,
"filename": "niswitch-1.0.0-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "81aa346c312cc9197040cfea96b57afb",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 37923,
"upload_time": "2018-06-08T21:04:51",
"upload_time_iso_8601": "2018-06-08T21:04:51.445057Z",
"url": "https://files.pythonhosted.org/packages/a1/72/e5876acd34439267cc84ee19a04c8b35f8c04492e1d69831f1dc542ac90b/niswitch-1.0.0-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "9c5f6579964d2b888587f0a6ca92907f",
"sha256": "7d9ac3adcdf5f88fc5d0b4f6cbb6f518fdd0fabaf433afda5661df347f20ea63"
},
"downloads": -1,
"filename": "niswitch-1.0.0.tar.gz",
"has_sig": false,
"md5_digest": "9c5f6579964d2b888587f0a6ca92907f",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 36044,
"upload_time": "2018-06-08T21:04:58",
"upload_time_iso_8601": "2018-06-08T21:04:58.435895Z",
"url": "https://files.pythonhosted.org/packages/a5/4d/b5f1e08828355234ca6c14ff15d811f27d9221c52e336e5b64ede3f8905a/niswitch-1.0.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"1.0.1": [
{
"comment_text": "",
"digests": {
"md5": "3d5540f6ef1e3951b626f856c1e09cc4",
"sha256": "d24e4f010d4e53970a6d69079d7b04cfe46cbd3ac1f5ec0f99d09cac050d92e5"
},
"downloads": -1,
"filename": "niswitch-1.0.1-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "3d5540f6ef1e3951b626f856c1e09cc4",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 38084,
"upload_time": "2018-10-17T14:59:32",
"upload_time_iso_8601": "2018-10-17T14:59:32.317294Z",
"url": "https://files.pythonhosted.org/packages/ae/be/de4611dfa25c7b72fb853ae04756243ff7d33f93202be3303ca3d31a450d/niswitch-1.0.1-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "1a945c7822e31cd8d932e4567d561f26",
"sha256": "4bd7ae5296b602015d53c3ab462b9decc976587b95a91a3dce5c1d3577ce1acc"
},
"downloads": -1,
"filename": "niswitch-1.0.1.tar.gz",
"has_sig": false,
"md5_digest": "1a945c7822e31cd8d932e4567d561f26",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 36142,
"upload_time": "2018-10-17T14:59:42",
"upload_time_iso_8601": "2018-10-17T14:59:42.330874Z",
"url": "https://files.pythonhosted.org/packages/a1/e6/b03d6401eb0f47f4592d95a07c50480f6a431e3985b8415e368b37c41e18/niswitch-1.0.1.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"1.1.0": [
{
"comment_text": "",
"digests": {
"md5": "2549fec9a389d01690d588220696d72b",
"sha256": "f38ac62124a5fdb495b462c43adaa4ab14073f0a333df622ccf8d6187f518f48"
},
"downloads": -1,
"filename": "niswitch-1.1.0-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "2549fec9a389d01690d588220696d72b",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 38124,
"upload_time": "2018-10-25T20:16:19",
"upload_time_iso_8601": "2018-10-25T20:16:19.205637Z",
"url": "https://files.pythonhosted.org/packages/06/14/e2373a894425ea23f03265a01707c0f97ca9f00218946f2a8f93b8256979/niswitch-1.1.0-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "98179e2fbfc8a62d0ad9d6097a71cc4d",
"sha256": "c9b5bd5eba8927008efdc09033f4aeb4dbb06247c839b0d5f53a75feb4e56998"
},
"downloads": -1,
"filename": "niswitch-1.1.0.tar.gz",
"has_sig": false,
"md5_digest": "98179e2fbfc8a62d0ad9d6097a71cc4d",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 36182,
"upload_time": "2018-10-25T20:16:27",
"upload_time_iso_8601": "2018-10-25T20:16:27.663215Z",
"url": "https://files.pythonhosted.org/packages/8a/20/ee101b5efeef26cb19683e88c069242b8812512cd259b9113f497c69f58b/niswitch-1.1.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"1.1.1": [
{
"comment_text": "",
"digests": {
"md5": "22e12f5cea9acd19ea96b7f95782384b",
"sha256": "96fae9341770948c2a59c7ec28f2bdc835dc82e957923f8ffe5840944108d0e6"
},
"downloads": -1,
"filename": "niswitch-1.1.1-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "22e12f5cea9acd19ea96b7f95782384b",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 38167,
"upload_time": "2019-06-05T22:36:59",
"upload_time_iso_8601": "2019-06-05T22:36:59.539918Z",
"url": "https://files.pythonhosted.org/packages/9d/6b/55450d217c7d82229dffa882fe079122cbb82a335b8e43a12e5ee4677d5b/niswitch-1.1.1-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
}
],
"1.1.2": [
{
"comment_text": "",
"digests": {
"md5": "8e302e1a72538561532d1b5fd0dd2162",
"sha256": "fe8039acb808def5f1590583a90abacc34835e6660b1038a841715317b2d8065"
},
"downloads": -1,
"filename": "niswitch-1.1.2-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "8e302e1a72538561532d1b5fd0dd2162",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 38195,
"upload_time": "2019-06-06T15:28:10",
"upload_time_iso_8601": "2019-06-06T15:28:10.001460Z",
"url": "https://files.pythonhosted.org/packages/f6/d9/86d62b7ca9a96b4035141bfdb5f48e9123191d4d08ea184a8d78cbde2eb9/niswitch-1.1.2-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "f62be59436ec3dcd8d52b826cf780033",
"sha256": "44d1aefe052b7405a72c71fe0316eb1ba5b182f65b7c9b7ed8f6b43f11bea31e"
},
"downloads": -1,
"filename": "niswitch-1.1.2.tar.gz",
"has_sig": false,
"md5_digest": "f62be59436ec3dcd8d52b826cf780033",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 36218,
"upload_time": "2019-06-06T15:28:20",
"upload_time_iso_8601": "2019-06-06T15:28:20.350113Z",
"url": "https://files.pythonhosted.org/packages/c8/74/4fea8e7f738a2ac294c46a8278bae5423bba17358048d771a950c3ca88a3/niswitch-1.1.2.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"1.1.3": [
{
"comment_text": "",
"digests": {
"md5": "6aaca93c624441f1a9b38db97ad6a03e",
"sha256": "ff8093eb4ca752e794647330895bebd2d6d8207e9e111e6d4fb2e79071fc0171"
},
"downloads": -1,
"filename": "niswitch-1.1.3-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "6aaca93c624441f1a9b38db97ad6a03e",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 39471,
"upload_time": "2019-10-21T22:17:39",
"upload_time_iso_8601": "2019-10-21T22:17:39.966783Z",
"url": "https://files.pythonhosted.org/packages/5b/ce/29cc55ebb0884044ef58f408a54122218deb4d305b5d4fad35f54003479e/niswitch-1.1.3-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "4e7e5e479764f62659e9c93424eafe78",
"sha256": "3b6dc6d7b13f8479862a949471f1594751627faab2cd8dda1986083d80cbddaa"
},
"downloads": -1,
"filename": "niswitch-1.1.3.tar.gz",
"has_sig": false,
"md5_digest": "4e7e5e479764f62659e9c93424eafe78",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 37329,
"upload_time": "2019-10-21T22:17:57",
"upload_time_iso_8601": "2019-10-21T22:17:57.361017Z",
"url": "https://files.pythonhosted.org/packages/40/8a/62015af37cebff99b6a0b6cae5f63b8c731b2a48733ecf15f745d6d669e7/niswitch-1.1.3.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"1.1.4": [
{
"comment_text": "",
"digests": {
"md5": "5b9a6d926fb115b61a8a8d6cd5e888ea",
"sha256": "621f2dba601ac406b8256bb9129886ca4edd28ee5841ebd8e1f8ec1e4e922c1c"
},
"downloads": -1,
"filename": "niswitch-1.1.4-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "5b9a6d926fb115b61a8a8d6cd5e888ea",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 39436,
"upload_time": "2019-11-19T16:54:09",
"upload_time_iso_8601": "2019-11-19T16:54:09.464682Z",
"url": "https://files.pythonhosted.org/packages/a9/57/9dfa52c6f3ab82663c787cc47c611f41dc0a1ce200419d7b1c752b40c593/niswitch-1.1.4-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "8e5f45260ad4862c5d4f35c62aa05ffb",
"sha256": "34ab8e4e6d5b3549c5b19131f2eba76976402704a6df863bb12b1ad7b12e983e"
},
"downloads": -1,
"filename": "niswitch-1.1.4.tar.gz",
"has_sig": false,
"md5_digest": "8e5f45260ad4862c5d4f35c62aa05ffb",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 37241,
"upload_time": "2019-11-19T16:54:25",
"upload_time_iso_8601": "2019-11-19T16:54:25.140979Z",
"url": "https://files.pythonhosted.org/packages/44/12/9289ab20b13924a5ed065626a69a302c7128ca09b10b52c09f70be612209/niswitch-1.1.4.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"1.1.5": [
{
"comment_text": "",
"digests": {
"md5": "1a271a3c2c012ece8511ede27e4f018b",
"sha256": "e9a00e21bc4089df66a33e024e024c7f070e7b68b93b4a097120e87a90b81418"
},
"downloads": -1,
"filename": "niswitch-1.1.5-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "1a271a3c2c012ece8511ede27e4f018b",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 39404,
"upload_time": "2019-11-22T20:58:56",
"upload_time_iso_8601": "2019-11-22T20:58:56.210149Z",
"url": "https://files.pythonhosted.org/packages/8e/fc/fe0ab764c8342938975fafe44d4867368bd479cd459b8480312fcd491592/niswitch-1.1.5-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "d681b570573d081a764db2a22ca9ff74",
"sha256": "ab0857d097f37c9a1fa0b33ff0575f1a4bcd2ebdd1514810c84b56d25e2b217f"
},
"downloads": -1,
"filename": "niswitch-1.1.5.tar.gz",
"has_sig": false,
"md5_digest": "d681b570573d081a764db2a22ca9ff74",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 37242,
"upload_time": "2019-11-22T20:58:57",
"upload_time_iso_8601": "2019-11-22T20:58:57.949830Z",
"url": "https://files.pythonhosted.org/packages/5f/5f/d2df0e44984c670204a61e8290a1713408c059a6babd1da8c9f53074b219/niswitch-1.1.5.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"1.2.0": [
{
"comment_text": "",
"digests": {
"md5": "a70e60e6db87c01846e076981e1db6a3",
"sha256": "b36bdebfea2f69078c398fa8a746780a3d310483674945b254c751b33a8d5271"
},
"downloads": -1,
"filename": "niswitch-1.2.0-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "a70e60e6db87c01846e076981e1db6a3",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 38844,
"upload_time": "2020-03-07T00:23:51",
"upload_time_iso_8601": "2020-03-07T00:23:51.048408Z",
"url": "https://files.pythonhosted.org/packages/f9/a2/6f0033b7b4a18ddffb26d77e8c6386ab4707003327385a06f6842ff0d5f5/niswitch-1.2.0-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "4c3e2b6b183a73221c6301e87c0f8175",
"sha256": "56770d56ef44c8f765644e35ac6e95becabf67ea7dc8e5a8dd51cc3db2a3580f"
},
"downloads": -1,
"filename": "niswitch-1.2.0.tar.gz",
"has_sig": false,
"md5_digest": "4c3e2b6b183a73221c6301e87c0f8175",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 39612,
"upload_time": "2020-03-07T00:24:06",
"upload_time_iso_8601": "2020-03-07T00:24:06.926481Z",
"url": "https://files.pythonhosted.org/packages/1b/01/9048f8c641193b1032e59893cb6c6d6db1d62271200ea42e98453ae95326/niswitch-1.2.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"1.2.1": [
{
"comment_text": "",
"digests": {
"md5": "f0c55e9b5d87d8182efc092118023547",
"sha256": "deb1d455b1ebb7b4fd46fda6e1fc6186fa32bbae2579dea57005e7e5470ab476"
},
"downloads": -1,
"filename": "niswitch-1.2.1-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "f0c55e9b5d87d8182efc092118023547",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 39430,
"upload_time": "2020-04-22T17:34:13",
"upload_time_iso_8601": "2020-04-22T17:34:13.538260Z",
"url": "https://files.pythonhosted.org/packages/43/5c/b9545f695b8b74e166516b052610e54436aa8a2a1361686e9949b1d1930f/niswitch-1.2.1-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "a6775bd23d37c9fd7dad269516e9eb04",
"sha256": "0e3d3c0accdd944c719edad5f7864f43c92d400bd3e0e1d5b9a3530e2a74c2b5"
},
"downloads": -1,
"filename": "niswitch-1.2.1.tar.gz",
"has_sig": false,
"md5_digest": "a6775bd23d37c9fd7dad269516e9eb04",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 40167,
"upload_time": "2020-04-22T17:34:24",
"upload_time_iso_8601": "2020-04-22T17:34:24.705182Z",
"url": "https://files.pythonhosted.org/packages/85/48/8d741358a0187fceff223c6a19623a9939caf0b649bf938fc6da73a2cf06/niswitch-1.2.1.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"1.3.0": [
{
"comment_text": "",
"digests": {
"md5": "de5f20f6e7e1dccb360ef86bbed54cd4",
"sha256": "d0cf30924461573af0c8041ab8955834b1d5b60377d958e671e9d090d1b95ac4"
},
"downloads": -1,
"filename": "niswitch-1.3.0-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "de5f20f6e7e1dccb360ef86bbed54cd4",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 39513,
"upload_time": "2020-05-21T23:26:46",
"upload_time_iso_8601": "2020-05-21T23:26:46.203134Z",
"url": "https://files.pythonhosted.org/packages/2e/0c/6b5a67a327aadd49f0a443907a162679578b71ef3721671929dd8c338fde/niswitch-1.3.0-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "a610049a9cfcb87681af0c29a301f144",
"sha256": "dd99b8f53616cc826900c78f9251afb4a10a4e6a3dfdc826b5583ace0636f2b3"
},
"downloads": -1,
"filename": "niswitch-1.3.0.tar.gz",
"has_sig": false,
"md5_digest": "a610049a9cfcb87681af0c29a301f144",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 40233,
"upload_time": "2020-05-21T23:26:58",
"upload_time_iso_8601": "2020-05-21T23:26:58.098912Z",
"url": "https://files.pythonhosted.org/packages/6e/59/0dc3628099cdf0a6559a6e9bcaae3019accb8600e20da7f490a2abf7f231/niswitch-1.3.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"1.3.1": [
{
"comment_text": "",
"digests": {
"md5": "97dca486a1aff775c9ea2963bb0270b4",
"sha256": "a970d3350d40a6fde82ce72df551b61d952db77b761246f17bed13ffd6378226"
},
"downloads": -1,
"filename": "niswitch-1.3.1-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "97dca486a1aff775c9ea2963bb0270b4",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 38201,
"upload_time": "2020-06-08T22:07:44",
"upload_time_iso_8601": "2020-06-08T22:07:44.204983Z",
"url": "https://files.pythonhosted.org/packages/5f/74/8c5f208e9fc350a98f9603739a9e0e0296e23b1881fabcec8f2cf2173d89/niswitch-1.3.1-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "807328e31f16629ef8eb5ae9f77bc222",
"sha256": "163935820f785e223b8c0a0563bfabf845ef54e9b1d9a05e5f85deeceddb7637"
},
"downloads": -1,
"filename": "niswitch-1.3.1.tar.gz",
"has_sig": false,
"md5_digest": "807328e31f16629ef8eb5ae9f77bc222",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 38949,
"upload_time": "2020-06-08T22:07:54",
"upload_time_iso_8601": "2020-06-08T22:07:54.942900Z",
"url": "https://files.pythonhosted.org/packages/05/cd/2a64d9a530d587fe80ab02fab9bc077edc92735e8bbfeee8ddac0593a1e2/niswitch-1.3.1.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"1.3.2": [
{
"comment_text": "",
"digests": {
"md5": "67b3faa2e937ee9d8c3905e384ae4c23",
"sha256": "9560a261ead1f43b64152fa162db72a670522a17faff176c843e05f6debc7888"
},
"downloads": -1,
"filename": "niswitch-1.3.2-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "67b3faa2e937ee9d8c3905e384ae4c23",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 38247,
"upload_time": "2020-09-18T17:53:05",
"upload_time_iso_8601": "2020-09-18T17:53:05.499878Z",
"url": "https://files.pythonhosted.org/packages/2b/54/c08946687f1737564e24751eb283c7a20fc803c529b1fabcc28f6e40613a/niswitch-1.3.2-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "81657040cbb9ba81f5d5fa7f3f86c871",
"sha256": "743998829fb0e3e0c7541d46dcc5f6bac2f462d2a929bb17af8ee6c19989845d"
},
"downloads": -1,
"filename": "niswitch-1.3.2.tar.gz",
"has_sig": false,
"md5_digest": "81657040cbb9ba81f5d5fa7f3f86c871",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 38910,
"upload_time": "2020-09-18T17:53:19",
"upload_time_iso_8601": "2020-09-18T17:53:19.702125Z",
"url": "https://files.pythonhosted.org/packages/c3/fe/33f69243b0a396c3e6cfa64ca8225fcbcaf8bae34a1cda17136ad8655313/niswitch-1.3.2.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"1.3.3": [
{
"comment_text": "",
"digests": {
"md5": "952bd4f1ba60291b38f844c4becd8540",
"sha256": "5b6091240096b8c98f26af9bee271bc171cc765cfee060f90d7091b8524eb663"
},
"downloads": -1,
"filename": "niswitch-1.3.3-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "952bd4f1ba60291b38f844c4becd8540",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 38247,
"upload_time": "2021-03-02T15:59:17",
"upload_time_iso_8601": "2021-03-02T15:59:17.840041Z",
"url": "https://files.pythonhosted.org/packages/69/c6/1aceb06106142f3e1a74d523c9ac0e9d2deae3a8309acabf59d65e854999/niswitch-1.3.3-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "ff71e6dc2065152e4df86df54292845e",
"sha256": "80b84576dcc230b50218e2a622085e557b7eca462def74b109e894b2512ea096"
},
"downloads": -1,
"filename": "niswitch-1.3.3.tar.gz",
"has_sig": false,
"md5_digest": "ff71e6dc2065152e4df86df54292845e",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 38904,
"upload_time": "2021-03-02T16:00:28",
"upload_time_iso_8601": "2021-03-02T16:00:28.963853Z",
"url": "https://files.pythonhosted.org/packages/70/79/87f9fe3e228edf85a0c83e5037682e0f2b8af81060fc1c7d8bb8371378cc/niswitch-1.3.3.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"1.4.0": [
{
"comment_text": "",
"digests": {
"md5": "0d5c6cdf253bf0e1ba5902695f85eace",
"sha256": "459b3b279a49f8fdfaf5373be6433d5bf558a20d43238bad302ab08d0c6cee35"
},
"downloads": -1,
"filename": "niswitch-1.4.0-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "0d5c6cdf253bf0e1ba5902695f85eace",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 38796,
"upload_time": "2021-07-09T20:56:52",
"upload_time_iso_8601": "2021-07-09T20:56:52.613146Z",
"url": "https://files.pythonhosted.org/packages/53/d8/359418bc273edf3e9c5d12219e209e9d00dfc9a1b63f3472a5b2798f2aa1/niswitch-1.4.0-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "6738f088b0e6d88b472e29520c9a751a",
"sha256": "bb7854a84ba0bd5dd77cbf2f3e6aded2e9d26aa04da2ebe0ab476911d900c0c8"
},
"downloads": -1,
"filename": "niswitch-1.4.0.tar.gz",
"has_sig": false,
"md5_digest": "6738f088b0e6d88b472e29520c9a751a",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 39370,
"upload_time": "2021-07-09T20:57:05",
"upload_time_iso_8601": "2021-07-09T20:57:05.334800Z",
"url": "https://files.pythonhosted.org/packages/9a/d1/13aa016fc9739081a852a7498ab591fbba80b8b1b05d6058f1b0c9c11680/niswitch-1.4.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"1.4.1": [
{
"comment_text": "",
"digests": {
"md5": "9ad93ab2b8202dbaf13d6fa217c9d877",
"sha256": "d9af1ca571805f62933dfa6db2bc50b064231a812eb7341fb722e3aae0c94980"
},
"downloads": -1,
"filename": "niswitch-1.4.1-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "9ad93ab2b8202dbaf13d6fa217c9d877",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 38794,
"upload_time": "2021-08-20T16:18:35",
"upload_time_iso_8601": "2021-08-20T16:18:35.639877Z",
"url": "https://files.pythonhosted.org/packages/00/39/38146eb903c5a56c5ea836d89ec944a455ae3eab0d6c8a6c5c75bad0b664/niswitch-1.4.1-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "f07827e49f466e99bd9cc1e4471daf7d",
"sha256": "c531f97533ae2e2bf3e8ecef75af44a6741ce2b52cc428996cd52f1b9b869228"
},
"downloads": -1,
"filename": "niswitch-1.4.1.tar.gz",
"has_sig": false,
"md5_digest": "f07827e49f466e99bd9cc1e4471daf7d",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 38954,
"upload_time": "2021-08-20T16:18:51",
"upload_time_iso_8601": "2021-08-20T16:18:51.263538Z",
"url": "https://files.pythonhosted.org/packages/59/bb/95e5a8c57abbf45a83791fb0588714fddc08373d2b04aeef2f878212f94b/niswitch-1.4.1.tar.gz",
"yanked": false,
"yanked_reason": null
}
]
},
"urls": [
{
"comment_text": "",
"digests": {
"md5": "9ad93ab2b8202dbaf13d6fa217c9d877",
"sha256": "d9af1ca571805f62933dfa6db2bc50b064231a812eb7341fb722e3aae0c94980"
},
"downloads": -1,
"filename": "niswitch-1.4.1-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "9ad93ab2b8202dbaf13d6fa217c9d877",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 38794,
"upload_time": "2021-08-20T16:18:35",
"upload_time_iso_8601": "2021-08-20T16:18:35.639877Z",
"url": "https://files.pythonhosted.org/packages/00/39/38146eb903c5a56c5ea836d89ec944a455ae3eab0d6c8a6c5c75bad0b664/niswitch-1.4.1-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "f07827e49f466e99bd9cc1e4471daf7d",
"sha256": "c531f97533ae2e2bf3e8ecef75af44a6741ce2b52cc428996cd52f1b9b869228"
},
"downloads": -1,
"filename": "niswitch-1.4.1.tar.gz",
"has_sig": false,
"md5_digest": "f07827e49f466e99bd9cc1e4471daf7d",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 38954,
"upload_time": "2021-08-20T16:18:51",
"upload_time_iso_8601": "2021-08-20T16:18:51.263538Z",
"url": "https://files.pythonhosted.org/packages/59/bb/95e5a8c57abbf45a83791fb0588714fddc08373d2b04aeef2f878212f94b/niswitch-1.4.1.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"vulnerabilities": []
}