{ "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-DCPower Python API Status\n----------------------------\n\n+-------------------------------+--------------------------+\n| NI-DCPower (nidcpower) | |\n+===============================+==========================+\n| Driver Version Tested Against | 21.0.0 |\n+-------------------------------+--------------------------+\n| PyPI Version | |nidcpowerLatestVersion| |\n+-------------------------------+--------------------------+\n| Supported Python Version | |nidcpowerPythonVersion| |\n+-------------------------------+--------------------------+\n| Open Issues | |nidcpowerOpenIssues| |\n+-------------------------------+--------------------------+\n| Open Pull Requests | |nidcpowerOpenPRs| |\n+-------------------------------+--------------------------+\n\n\n.. |nidcpowerLatestVersion| image:: http://img.shields.io/pypi/v/nidcpower.svg\n :alt: Latest NI-DCPower Version\n :target: http://pypi.python.org/pypi/nidcpower\n\n\n.. |nidcpowerPythonVersion| image:: http://img.shields.io/pypi/pyversions/nidcpower.svg\n :alt: NI-DCPower supported Python versions\n :target: http://pypi.python.org/pypi/nidcpower\n\n\n.. |nidcpowerOpenIssues| image:: https://img.shields.io/github/issues/ni/nimi-python/nidcpower.svg\n :alt: Open Issues + Pull Requests for NI-DCPower\n :target: https://github.com/ni/nimi-python/issues?q=is%3Aopen+is%3Aissue+label%3Anidcpower\n\n\n.. |nidcpowerOpenPRs| image:: https://img.shields.io/github/issues-pr/ni/nimi-python/nidcpower.svg\n :alt: Pull Requests for NI-DCPower\n :target: https://github.com/ni/nimi-python/pulls?q=is%3Aopen+is%3Aissue+label%3Anidcpower\n\n\n\n.. _nidcpower_installation-section:\n\nInstallation\n------------\n\nAs a prerequisite to using the nidcpower module, you must install the NI-DCPower 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-DCPower**) can be installed with `pip `_::\n\n $ python -m pip install nidcpower~=1.4.1\n\nOr **easy_install** from\n`setuptools `_::\n\n $ python -m easy_install nidcpower\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 **nidcpower** module to open a session to a Source Meter Unit and measure voltage and current.\n\n.. code-block:: python\n\n import nidcpower\n # Configure the session.\n\n with nidcpower.Session(resource_name='PXI1Slot2/0') as session:\n session.measure_record_length = 20\n session.measure_record_length_is_finite = True\n session.measure_when = nidcpower.MeasureWhen.AUTOMATICALLY_AFTER_SOURCE_COMPLETE\n session.voltage_level = 5.0\n\n session.commit()\n print('Effective measurement rate: {0} S/s'.format(session.measure_record_delta_time / 1))\n\n samples_acquired = 0\n print('Channel Num Voltage Current In Compliance')\n row_format = '{0:15} {1:3d} {2:8.6f} {3:8.6f} {4}'\n with session.initiate():\n channel_indices = '0-{0}'.format(session.channel_count - 1)\n channels = session.get_channel_names(channel_indices)\n for i, channel_name in enumerate(channels):\n samples_acquired = 0\n while samples_acquired < 20:\n measurements = session.channels[channel_name].fetch_multiple(count=session.fetch_backlog)\n samples_acquired += len(measurements)\n for i in range(len(measurements)):\n print(row_format.format(channel_name, i, measurements[i].voltage, measurements[i].current, measurements[i].in_compliance))\n\nAdditional examples for NI-DCPower are located in src/nidcpower/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": "nidcpower", "license": "MIT", "maintainer": "National Instruments", "maintainer_email": "opensource@ni.com", "name": "nidcpower", "package_url": "https://pypi.org/project/nidcpower/", "platform": "", "project_url": "https://pypi.org/project/nidcpower/", "project_urls": { "Homepage": "https://github.com/ni/nimi-python" }, "release_url": "https://pypi.org/project/nidcpower/1.4.1/", "requires_dist": [ "hightime (>=0.2.0)", "enum34 ; python_version < \"3.4\"", "singledispatch ; python_version < \"3.4\"" ], "requires_python": "", "summary": "NI-DCPower Python API", "version": "1.4.1", "yanked": false, "yanked_reason": null }, "last_serial": 11233648, "releases": { "0.3.0": [ { "comment_text": "", "digests": { "md5": "58c449c443ddc729b028cc26b7dfa09d", "sha256": "29ee439342c457f2b24439c620865c8edb84ca305401e5b918946092af041c67" }, "downloads": -1, "filename": "nidcpower-0.3.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "58c449c443ddc729b028cc26b7dfa09d", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 41745, "upload_time": "2017-10-13T15:48:26", "upload_time_iso_8601": "2017-10-13T15:48:26.959121Z", "url": "https://files.pythonhosted.org/packages/fb/42/ba701332bdee625f93b89eebcb88d90bcbbac0572aad7e11d1cc4eeca8c5/nidcpower-0.3.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5c1777eff52559967d2c5f4b9df8c35c", "sha256": "f92ac2b0c29245c2c27864237794654c83a8ab0c2c56f31fcba41ffe6b37adcb" }, "downloads": -1, "filename": "nidcpower-0.3.0.tar.gz", "has_sig": false, "md5_digest": "5c1777eff52559967d2c5f4b9df8c35c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 36878, "upload_time": "2017-10-13T15:48:31", "upload_time_iso_8601": "2017-10-13T15:48:31.925142Z", "url": "https://files.pythonhosted.org/packages/99/22/99f33834ffbaaf6c601be97e0d91e8440c1b00f2c830fcd3dc341a291963/nidcpower-0.3.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.3.0.dev0": [ { "comment_text": "", "digests": { "md5": "f6a4653a9f9de7ffca982535f5b0bf1f", "sha256": "11dfe1964c5540e75fe776ff626bc47e6268a90218c1396c560d02f91508b028" }, "downloads": -1, "filename": "nidcpower-0.3.0.dev0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "f6a4653a9f9de7ffca982535f5b0bf1f", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 41910, "upload_time": "2017-10-12T22:04:17", "upload_time_iso_8601": "2017-10-12T22:04:17.078158Z", "url": "https://files.pythonhosted.org/packages/66/ec/ff7955b2d44a136bf8ef360e528626332053f96ab8e987830368202e7a6e/nidcpower-0.3.0.dev0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "acd63c6a201fb0904ca732d2ff279727", "sha256": "ac930ae0161a84c1f46a26e4b0c649bf5ffe9ff152210b352526b97ccb62265d" }, "downloads": -1, "filename": "nidcpower-0.3.0.dev0.tar.gz", "has_sig": false, "md5_digest": "acd63c6a201fb0904ca732d2ff279727", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 37164, "upload_time": "2017-10-12T22:04:24", "upload_time_iso_8601": "2017-10-12T22:04:24.136048Z", "url": "https://files.pythonhosted.org/packages/df/5e/116e79e210e2f6aaee1f9bb401071bb1c1415320d82ddfc7a57aef12ed7c/nidcpower-0.3.0.dev0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.4.0": [ { "comment_text": "", "digests": { "md5": "10e482d2613013d01736c2c4366aeb51", "sha256": "dc4f66be4eb994f6f4273f4c077527b29f52b0d80c18b45743e5191e909b2858" }, "downloads": -1, "filename": "nidcpower-0.4.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "10e482d2613013d01736c2c4366aeb51", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 41675, "upload_time": "2017-11-07T23:24:24", "upload_time_iso_8601": "2017-11-07T23:24:24.785948Z", "url": "https://files.pythonhosted.org/packages/85/51/c492507a94db8a585cdfc9b5012e5ac87b2bd6f8c2d5c2d2323e4e4c5dc3/nidcpower-0.4.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5446d7d587d07478e083b02651ce803c", "sha256": "98d756ae63f7e7506a96a7cbbd92b9fdb74d0400d8094c46d26a76a3e4b9e08d" }, "downloads": -1, "filename": "nidcpower-0.4.0.tar.gz", "has_sig": false, "md5_digest": "5446d7d587d07478e083b02651ce803c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 36873, "upload_time": "2017-11-07T23:24:37", "upload_time_iso_8601": "2017-11-07T23:24:37.105212Z", "url": "https://files.pythonhosted.org/packages/a0/3b/bf0d64bd1f1b7ba6c61b4a76d4869612c44de4dea58745a4984e6e2870e4/nidcpower-0.4.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.4.0.dev0": [ { "comment_text": "", "digests": { "md5": "74a8fc277f75ebdbdffb97ff04a13b09", "sha256": "b6aee350dcdafa484109ecec267fcdf19e189199035c394225e548c742cf433c" }, "downloads": -1, "filename": "nidcpower-0.4.0.dev0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "74a8fc277f75ebdbdffb97ff04a13b09", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 41764, "upload_time": "2017-11-07T23:24:23", "upload_time_iso_8601": "2017-11-07T23:24:23.856645Z", "url": "https://files.pythonhosted.org/packages/83/b2/174bf4ecb6058165095f7d17edf6086ba4f2f9408b8e0939ca03b1be81ca/nidcpower-0.4.0.dev0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "669bc9b793894b41fb7448eaf7758c2d", "sha256": "83d9821b0740c3d866e8da0e744262c1541a0906e3316197dc66dd4a592244c1" }, "downloads": -1, "filename": "nidcpower-0.4.0.dev0.tar.gz", "has_sig": false, "md5_digest": "669bc9b793894b41fb7448eaf7758c2d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 36933, "upload_time": "2017-11-07T23:24:36", "upload_time_iso_8601": "2017-11-07T23:24:36.065564Z", "url": "https://files.pythonhosted.org/packages/b7/f9/4da234748b2ec811df97c3297c8bd81c9d79934b667a56c292439af3fd79/nidcpower-0.4.0.dev0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.5.0": [ { "comment_text": "", "digests": { "md5": "a521b61f3558f7256c11f84ba7c85522", "sha256": "b235d6d633e379185ab3323d30af5d6c48c4e75279bf4ec5617ac7ef1d725b0f" }, "downloads": -1, "filename": "nidcpower-0.5.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "a521b61f3558f7256c11f84ba7c85522", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 41630, "upload_time": "2017-11-27T22:26:32", "upload_time_iso_8601": "2017-11-27T22:26:32.820107Z", "url": "https://files.pythonhosted.org/packages/0d/78/897c564dda7b19ecbc58576ed899b74827f5f7f9a4f6610d67263771b5b6/nidcpower-0.5.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "cb3d20d4421d7ec5d53eb36cc4e6e8ba", "sha256": "3221fcddc4678dc88fa3d497d979b112cee877c4db8733a70ae11e47645f2219" }, "downloads": -1, "filename": "nidcpower-0.5.0.tar.gz", "has_sig": false, "md5_digest": "cb3d20d4421d7ec5d53eb36cc4e6e8ba", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 36821, "upload_time": "2017-11-27T22:26:41", "upload_time_iso_8601": "2017-11-27T22:26:41.843475Z", "url": "https://files.pythonhosted.org/packages/51/92/67cc3cfda541dc1f3a8b1eed65093e002a64806817949cacb7ae66862a0f/nidcpower-0.5.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.6.0": [ { "comment_text": "", "digests": { "md5": "8eab2b824d76b7a3239fb5fb953afce5", "sha256": "b55666872d8347c3502971eb610d04aea9bafbb2574e0a2514500dde89731cb6" }, "downloads": -1, "filename": "nidcpower-0.6.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "8eab2b824d76b7a3239fb5fb953afce5", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 41892, "upload_time": "2017-12-20T22:57:50", "upload_time_iso_8601": "2017-12-20T22:57:50.077588Z", "url": "https://files.pythonhosted.org/packages/35/68/19acfd85b68d17a30c2a27d21fbc769f2fdc02f50d23018456ab818dc0ba/nidcpower-0.6.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a1f1baf5f046a28d2bebc4414ee823ba", "sha256": "002c6dac24fe317c4d7460dd97718329844d095fee1a5043115cae85b113cf8f" }, "downloads": -1, "filename": "nidcpower-0.6.0.tar.gz", "has_sig": false, "md5_digest": "a1f1baf5f046a28d2bebc4414ee823ba", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 37216, "upload_time": "2017-12-20T22:57:59", "upload_time_iso_8601": "2017-12-20T22:57:59.179134Z", "url": "https://files.pythonhosted.org/packages/dc/5c/e8b1fd9185d808f23fb11f79d3a9337432fea00c9e2baa9ca470e4b4db86/nidcpower-0.6.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.7.0": [ { "comment_text": "", "digests": { "md5": "752928928f672d43e2cc8c3ccdaa8e1a", "sha256": "193e9f21f8d310171305fd248a69bedfe050476e74128bf8dbd865d6348023ec" }, "downloads": -1, "filename": "nidcpower-0.7.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "752928928f672d43e2cc8c3ccdaa8e1a", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 49498, "upload_time": "2018-02-20T19:33:16", "upload_time_iso_8601": "2018-02-20T19:33:16.295870Z", "url": "https://files.pythonhosted.org/packages/0b/23/1a8dd86e3bc92d53c9a0ef327c9bc2bbe075df5be13132a4710e6c5f66ec/nidcpower-0.7.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "914495d5e47b4b541e4d0bf9f29abe17", "sha256": "fb2ba16c9048549b9764b4eb7dbd6a203ebc065d7ae27a97cc85b0baaaf7a70e" }, "downloads": -1, "filename": "nidcpower-0.7.0.tar.gz", "has_sig": false, "md5_digest": "914495d5e47b4b541e4d0bf9f29abe17", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 44217, "upload_time": "2018-02-20T19:33:27", "upload_time_iso_8601": "2018-02-20T19:33:27.661237Z", "url": "https://files.pythonhosted.org/packages/c8/74/2a8c23fe804ad263b4474a2cb5fedb47ed658412c14448bd04f9403e046d/nidcpower-0.7.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.8.0": [ { "comment_text": "", "digests": { "md5": "d44937e2f8a3b4dc1785917676302aab", "sha256": "b34a11b6860dc19135ca68147e2e3640ab27b19ac1c69f1b6229b80ba6eb5365" }, "downloads": -1, "filename": "nidcpower-0.8.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "d44937e2f8a3b4dc1785917676302aab", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 48360, "upload_time": "2018-04-27T18:35:28", "upload_time_iso_8601": "2018-04-27T18:35:28.142774Z", "url": "https://files.pythonhosted.org/packages/72/60/97fc445ddcf80368e7e6f54b4c9b9f73c6ddb989477dda46cedb2a2b30f4/nidcpower-0.8.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "86e1ddb5f1021a7027a595cbb9318947", "sha256": "89a3b4b1f71bfde5bbd09a0c39eb5e10b3827d52b484c2190ded17ae05b4a18f" }, "downloads": -1, "filename": "nidcpower-0.8.0.tar.gz", "has_sig": false, "md5_digest": "86e1ddb5f1021a7027a595cbb9318947", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 46541, "upload_time": "2018-04-27T18:35:36", "upload_time_iso_8601": "2018-04-27T18:35:36.418373Z", "url": "https://files.pythonhosted.org/packages/77/45/972e07149db253a43936922d06df0e5a9116cfef57d2bd9508bbbd87d60a/nidcpower-0.8.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.8.0.dev0": [ { "comment_text": "", "digests": { "md5": "3f26af859434cf6e67df48bd7888e38a", "sha256": "f42a49858f31779754ad6dff21eb73107705ac57a3271bb0462900649cd5a857" }, "downloads": -1, "filename": "nidcpower-0.8.0.dev0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "3f26af859434cf6e67df48bd7888e38a", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 50819, "upload_time": "2018-03-20T22:14:52", "upload_time_iso_8601": "2018-03-20T22:14:52.076740Z", "url": "https://files.pythonhosted.org/packages/95/e3/9888d8fae20e5d7bb58c2522e5f1b01dc663295c582202db2dfc78cf90eb/nidcpower-0.8.0.dev0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "302e712aec4218cc4b3e326fc4bdf015", "sha256": "5584e2465a7090eaac269fde83388f0f9c63eabc910cd601885d8f132f449145" }, "downloads": -1, "filename": "nidcpower-0.8.0.dev0.tar.gz", "has_sig": false, "md5_digest": "302e712aec4218cc4b3e326fc4bdf015", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 45271, "upload_time": "2018-03-20T22:15:01", "upload_time_iso_8601": "2018-03-20T22:15:01.742628Z", "url": "https://files.pythonhosted.org/packages/fd/af/209bad69046c64fd46e846ec4e361a33ce61be5a32ce1215316cfea445a9/nidcpower-0.8.0.dev0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.9.0": [ { "comment_text": "", "digests": { "md5": "3059c806f74122c86e50b2a36461b0d5", "sha256": "a4cb1fdfe5ae66074c1c0ecd8d5fc25adbad076f306ee1c470cc7dd4ddd5267e" }, "downloads": -1, "filename": "nidcpower-0.9.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "3059c806f74122c86e50b2a36461b0d5", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 48853, "upload_time": "2018-05-22T19:53:39", "upload_time_iso_8601": "2018-05-22T19:53:39.692980Z", "url": "https://files.pythonhosted.org/packages/51/4c/cdddc0eaffbc865cbdf09d1d3c1e2c693b479835ac211dd631a70aecb844/nidcpower-0.9.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fbe61348e0fc3b0eef20de6bbef3457a", "sha256": "62f4bd702c11f17cf54609e94fee8704291051ac56c547f615f7cc19a9565216" }, "downloads": -1, "filename": "nidcpower-0.9.0.tar.gz", "has_sig": false, "md5_digest": "fbe61348e0fc3b0eef20de6bbef3457a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 46893, "upload_time": "2018-05-22T19:53:47", "upload_time_iso_8601": "2018-05-22T19:53:47.047625Z", "url": "https://files.pythonhosted.org/packages/d5/69/71630fcee89ceadfe86c5aa379089a4841bcc3590f7d83691a47881861d8/nidcpower-0.9.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.0": [ { "comment_text": "", "digests": { "md5": "33e21bc79376967887efc8c11783a2ba", "sha256": "9e89ba864dd8065ddfc32a64df819426c6ea13f89186202fb3738a21852af5da" }, "downloads": -1, "filename": "nidcpower-1.0.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "33e21bc79376967887efc8c11783a2ba", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 46966, "upload_time": "2018-06-08T21:04:48", "upload_time_iso_8601": "2018-06-08T21:04:48.374053Z", "url": "https://files.pythonhosted.org/packages/27/90/e1752395380479b7e4238a10d02606cfe28e815919793707b3338cdb73e2/nidcpower-1.0.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "814ff59e1816cf299acbfe09e4a4c030", "sha256": "cce402f403141c1c6965df62e0686d89b34442b61ab70fa8ae596ffb78bf6042" }, "downloads": -1, "filename": "nidcpower-1.0.0.tar.gz", "has_sig": false, "md5_digest": "814ff59e1816cf299acbfe09e4a4c030", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 45025, "upload_time": "2018-06-08T21:04:54", "upload_time_iso_8601": "2018-06-08T21:04:54.994579Z", "url": "https://files.pythonhosted.org/packages/06/30/bcbf100dcd249fd25c09fb4480a89ca6bf0d7bb726641eab234b3321e6b7/nidcpower-1.0.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.1": [ { "comment_text": "", "digests": { "md5": "9c5435da81b3bc83437eb9f02c7375f8", "sha256": "8d46ae7c95aa5a43394180926d401a22502bdc810227a9a85c9cdf58cdd80a0b" }, "downloads": -1, "filename": "nidcpower-1.0.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "9c5435da81b3bc83437eb9f02c7375f8", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 47147, "upload_time": "2018-10-17T14:59:28", "upload_time_iso_8601": "2018-10-17T14:59:28.467879Z", "url": "https://files.pythonhosted.org/packages/ec/c9/7677dbb98fe3295ca0266150c8c2093ec0a542182ff0032a254a084ff231/nidcpower-1.0.1-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "51eb76a4fce38884d811864ba714a82c", "sha256": "9479f7a74f24d8671bc4668712bc7b648400722ae792f7fd7ceba98eca1ba5dd" }, "downloads": -1, "filename": "nidcpower-1.0.1.tar.gz", "has_sig": false, "md5_digest": "51eb76a4fce38884d811864ba714a82c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 45185, "upload_time": "2018-10-17T14:59:37", "upload_time_iso_8601": "2018-10-17T14:59:37.495756Z", "url": "https://files.pythonhosted.org/packages/22/8a/d9d147513f05d34308ecb8874ca5bc96c4412d498d7ef572619098c10715/nidcpower-1.0.1.tar.gz", "yanked": false, "yanked_reason": null } ], "1.1.0": [ { "comment_text": "", "digests": { "md5": "7803c74d0c8f307471eb8c2d98f6527d", "sha256": "5b3542940475a2b24c1cd7fd84c916f2b1b8df2cb56ad84f5ec42fc2bc316b72" }, "downloads": -1, "filename": "nidcpower-1.1.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "7803c74d0c8f307471eb8c2d98f6527d", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 48545, "upload_time": "2018-10-25T20:16:14", "upload_time_iso_8601": "2018-10-25T20:16:14.657361Z", "url": "https://files.pythonhosted.org/packages/7e/64/a5fd3f7e76a750cfe7dda23b4b09b5cd240af32e2d7f5715bf545621ec60/nidcpower-1.1.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9b5089fd85adc93dbefb3b6cd9c4b900", "sha256": "30053bad06074f10d68ae18c9977ad3f8a6528c37c931eb960616272108d65a0" }, "downloads": -1, "filename": "nidcpower-1.1.0.tar.gz", "has_sig": false, "md5_digest": "9b5089fd85adc93dbefb3b6cd9c4b900", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 46554, "upload_time": "2018-10-25T20:16:24", "upload_time_iso_8601": "2018-10-25T20:16:24.117560Z", "url": "https://files.pythonhosted.org/packages/a4/73/dd6e06796916ea35e4e4228c848e017db36043a88b1b46b818235a2d0f3f/nidcpower-1.1.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.1.1": [ { "comment_text": "", "digests": { "md5": "a6a7ca524964d3be4f56fdd456eb393b", "sha256": "cb5a3b86f0de53da69b5875b79f655a18dc89a87515852b1f7fda322b376f41b" }, "downloads": -1, "filename": "nidcpower-1.1.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "a6a7ca524964d3be4f56fdd456eb393b", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 48575, "upload_time": "2019-06-05T22:36:54", "upload_time_iso_8601": "2019-06-05T22:36:54.247280Z", "url": "https://files.pythonhosted.org/packages/6c/31/de23a9990ab09489b3bd39c24537f739e30d1383ed09a126f23c172d5581/nidcpower-1.1.1-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "1.1.2": [ { "comment_text": "", "digests": { "md5": "1592c53e065d953a2a34b4f191c220b2", "sha256": "ce4e99ae7ff241a07c6af4a0b53dfa09ce10e3e13e81ba061aa403d03277a12e" }, "downloads": -1, "filename": "nidcpower-1.1.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "1592c53e065d953a2a34b4f191c220b2", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 48602, "upload_time": "2019-06-06T15:28:04", "upload_time_iso_8601": "2019-06-06T15:28:04.699157Z", "url": "https://files.pythonhosted.org/packages/88/f3/a3ad5a72a508c506dc43618756507ef86fa1d445a19c68c7301e63c9c7db/nidcpower-1.1.2-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "464311df2ee7c8268fd7fea5436964d4", "sha256": "bf33245559333201d4220cfdfcf84ce7d1138487b8bc6fbcc882eb77dbdc3d53" }, "downloads": -1, "filename": "nidcpower-1.1.2.tar.gz", "has_sig": false, "md5_digest": "464311df2ee7c8268fd7fea5436964d4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 46520, "upload_time": "2019-06-06T15:28:15", "upload_time_iso_8601": "2019-06-06T15:28:15.788317Z", "url": "https://files.pythonhosted.org/packages/7c/41/4bbaa9057ed2d8c613e462df321b8290408895abffcfc448255101361dec/nidcpower-1.1.2.tar.gz", "yanked": false, "yanked_reason": null } ], "1.1.3": [ { "comment_text": "", "digests": { "md5": "df5794b9046cd981e297dd8bb3eb127c", "sha256": "84783da159b37e2cf5ec811d5849ee9b43d7fa570614d11c3d776e85fdc9d9e9" }, "downloads": -1, "filename": "nidcpower-1.1.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "df5794b9046cd981e297dd8bb3eb127c", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 49891, "upload_time": "2019-10-21T22:17:31", "upload_time_iso_8601": "2019-10-21T22:17:31.663027Z", "url": "https://files.pythonhosted.org/packages/e7/0c/240de027e5481f9cceda7f88d221f7d17fcc27d7739d6468ccd78280496b/nidcpower-1.1.3-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "60a9a054604497dbf3881f774423efe1", "sha256": "879faf8e089ec32b6cd3c83489040334c8a3cadcd8e02c1507fa2dfaf07bc8ee" }, "downloads": -1, "filename": "nidcpower-1.1.3.tar.gz", "has_sig": false, "md5_digest": "60a9a054604497dbf3881f774423efe1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 47637, "upload_time": "2019-10-21T22:17:49", "upload_time_iso_8601": "2019-10-21T22:17:49.518789Z", "url": "https://files.pythonhosted.org/packages/40/57/0834ce3de3b35c6011538b09359af0b8c9c530978895b7e149019b780db6/nidcpower-1.1.3.tar.gz", "yanked": false, "yanked_reason": null } ], "1.1.4": [ { "comment_text": "", "digests": { "md5": "a80fada29413a28b5f847ac25e4c0492", "sha256": "597c6ab640136ae5f5412eb0e88524eb4a8ecb6b27668c30ad8ffaf365c8deb5" }, "downloads": -1, "filename": "nidcpower-1.1.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "a80fada29413a28b5f847ac25e4c0492", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 49781, "upload_time": "2019-11-19T16:54:04", "upload_time_iso_8601": "2019-11-19T16:54:04.509758Z", "url": "https://files.pythonhosted.org/packages/48/c5/c139b3ebfb0bb33fdceeaafd4457e9b90d55323c0751e97ff0ab58e62d6b/nidcpower-1.1.4-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "593a07462d0b8fc92ea9316ab2cf0e8a", "sha256": "dc4ab2906d9dd4c7f267ec9fa8484ecca27299b15ff627d2ad19a34caf95faec" }, "downloads": -1, "filename": "nidcpower-1.1.4.tar.gz", "has_sig": false, "md5_digest": "593a07462d0b8fc92ea9316ab2cf0e8a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 47486, "upload_time": "2019-11-19T16:54:20", "upload_time_iso_8601": "2019-11-19T16:54:20.759004Z", "url": "https://files.pythonhosted.org/packages/2e/30/0d06aaeb3f75ca8b317572789527d92a9575f3f8df89d5e554ef5628cc4e/nidcpower-1.1.4.tar.gz", "yanked": false, "yanked_reason": null } ], "1.1.5": [ { "comment_text": "", "digests": { "md5": "b77545bfb5d573c3e97ba458cf29c63d", "sha256": "81d4842488c325dc78be719ff8f2a5d3bb91ed65f2f799c06b5bdd43c3588c18" }, "downloads": -1, "filename": "nidcpower-1.1.5-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "b77545bfb5d573c3e97ba458cf29c63d", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 49752, "upload_time": "2019-11-22T18:03:23", "upload_time_iso_8601": "2019-11-22T18:03:23.078816Z", "url": "https://files.pythonhosted.org/packages/87/50/8cc4360b60a9c21f3701f608b4ff1647b134fe01bf9a67d605639bb5fb94/nidcpower-1.1.5-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3a59d4b7bc9dcf978b695e9f5dd6ac9e", "sha256": "e0131268b22d046494e3f183ad68e61b296e84ae56ab40cba55786f05d97bffe" }, "downloads": -1, "filename": "nidcpower-1.1.5.tar.gz", "has_sig": false, "md5_digest": "3a59d4b7bc9dcf978b695e9f5dd6ac9e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 47490, "upload_time": "2019-11-22T19:10:35", "upload_time_iso_8601": "2019-11-22T19:10:35.462961Z", "url": "https://files.pythonhosted.org/packages/39/ea/ee0b0910d07fd9b37a774cf5fb86d32b66ebcf8b086d34bdff91d31e87b1/nidcpower-1.1.5.tar.gz", "yanked": false, "yanked_reason": null } ], "1.2.0": [ { "comment_text": "", "digests": { "md5": "0eb73607c857d60081d095bd847a4f43", "sha256": "e1465f2944fe85a4f97f47161a3575dc15d762b95d35e0bab9711e849dc8f1ca" }, "downloads": -1, "filename": "nidcpower-1.2.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "0eb73607c857d60081d095bd847a4f43", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 52325, "upload_time": "2020-03-07T00:23:45", "upload_time_iso_8601": "2020-03-07T00:23:45.885511Z", "url": "https://files.pythonhosted.org/packages/d0/29/493d1bcfe08da9e101ff12ee5af19d2a2ca2f244edd5a0ad34a443a755f6/nidcpower-1.2.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1aa42485026f33a18a3f325e7d95264a", "sha256": "c6c394c642445cd8c85fc1b64b69717b599b26d11de7b33a65d334bf449334c7" }, "downloads": -1, "filename": "nidcpower-1.2.0.tar.gz", "has_sig": false, "md5_digest": "1aa42485026f33a18a3f325e7d95264a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 53297, "upload_time": "2020-03-07T00:24:01", "upload_time_iso_8601": "2020-03-07T00:24:01.771481Z", "url": "https://files.pythonhosted.org/packages/8a/1e/a8a3f2055908da0b26e9ee72da7e94e95f0957856b4353c813e952238af9/nidcpower-1.2.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.2.1": [ { "comment_text": "", "digests": { "md5": "00201b086e07cfec560496677c6d3584", "sha256": "f61a658e521a2475b11335ff49be84240a4546e21a91bdd8d6fc14e72e91dc75" }, "downloads": -1, "filename": "nidcpower-1.2.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "00201b086e07cfec560496677c6d3584", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 51498, "upload_time": "2020-04-22T17:34:08", "upload_time_iso_8601": "2020-04-22T17:34:08.729633Z", "url": "https://files.pythonhosted.org/packages/4d/20/71897be1fa84cfd38caf68b5247f49ca71e27b4a3cbca7926916767e3012/nidcpower-1.2.1-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a447e8d498a1c8a58fc998f2959701f9", "sha256": "7b1a6d64bd28ecd2f13bcba2c101a4a5afb326b1fb3f09a2600b6168ff296f4d" }, "downloads": -1, "filename": "nidcpower-1.2.1.tar.gz", "has_sig": false, "md5_digest": "a447e8d498a1c8a58fc998f2959701f9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 52448, "upload_time": "2020-04-22T17:34:21", "upload_time_iso_8601": "2020-04-22T17:34:21.263674Z", "url": "https://files.pythonhosted.org/packages/3f/3e/ae8a6eb0fc018c8241500aa2abe91a47259cf1db1a1301579e328cdf86ce/nidcpower-1.2.1.tar.gz", "yanked": false, "yanked_reason": null } ], "1.3.0": [ { "comment_text": "", "digests": { "md5": "ae3de087c6c7335249524273cef39978", "sha256": "360a9f9708f7a4b7b05ca8440eee7f383034ecc22b38ce4f10b042e95493edd3" }, "downloads": -1, "filename": "nidcpower-1.3.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "ae3de087c6c7335249524273cef39978", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 52882, "upload_time": "2020-05-21T23:26:42", "upload_time_iso_8601": "2020-05-21T23:26:42.365524Z", "url": "https://files.pythonhosted.org/packages/06/0c/301f66ef0ee83b28b2283fee296c188c9de9246d307aa08b58eecd441dd8/nidcpower-1.3.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6269d2387dd2a727f6fc5b1945405476", "sha256": "110e80eb4fe236c77608342384210fd976244610e20a4f3a5e0ae66f1f15d630" }, "downloads": -1, "filename": "nidcpower-1.3.0.tar.gz", "has_sig": false, "md5_digest": "6269d2387dd2a727f6fc5b1945405476", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 53765, "upload_time": "2020-05-21T23:26:53", "upload_time_iso_8601": "2020-05-21T23:26:53.975812Z", "url": "https://files.pythonhosted.org/packages/87/50/734b050b5a5006872ae635e4ee41e4003f65ddf171f5b0189bbcfbca0055/nidcpower-1.3.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.3.1": [ { "comment_text": "", "digests": { "md5": "9a9e96e4f7f1f9a8a0cc7c7dea78230f", "sha256": "e10276c3b2eadc1374e01e573263eca94f9f58b8fa16b6b5b55e1bf000a7a03a" }, "downloads": -1, "filename": "nidcpower-1.3.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "9a9e96e4f7f1f9a8a0cc7c7dea78230f", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 51568, "upload_time": "2020-06-08T22:07:40", "upload_time_iso_8601": "2020-06-08T22:07:40.357361Z", "url": "https://files.pythonhosted.org/packages/51/e2/3d6b8ff034a1c0cfd92c795e6949a69f7fb7a38744cd421f83970d009bf0/nidcpower-1.3.1-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a47a90980b46a59d82ffdf531e0eb08a", "sha256": "3051722870859ff0f8e7137c76250a929f73e7b99b59375c34cc99002ccc5a6a" }, "downloads": -1, "filename": "nidcpower-1.3.1.tar.gz", "has_sig": false, "md5_digest": "a47a90980b46a59d82ffdf531e0eb08a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 52390, "upload_time": "2020-06-08T22:07:51", "upload_time_iso_8601": "2020-06-08T22:07:51.569913Z", "url": "https://files.pythonhosted.org/packages/9c/f8/bfcf51eaf7c1e1721471d35a552f63813bbfbef5ca7f66e8f399d0251963/nidcpower-1.3.1.tar.gz", "yanked": false, "yanked_reason": null } ], "1.3.2": [ { "comment_text": "", "digests": { "md5": "ddbfea74b08ccc83174df9b4d0abdc0f", "sha256": "e2ec2826847bd4e5329994cc737eeca43ab79ad7f40b4e70b3603b7bc74bd349" }, "downloads": -1, "filename": "nidcpower-1.3.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "ddbfea74b08ccc83174df9b4d0abdc0f", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 52754, "upload_time": "2020-09-18T17:53:00", "upload_time_iso_8601": "2020-09-18T17:53:00.539035Z", "url": "https://files.pythonhosted.org/packages/0f/aa/812478732abcacf31ccfdb145185173c0f65aa43a08a9af21dd5348f04f9/nidcpower-1.3.2-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0ed0592b53413a46eececa679dbcd700", "sha256": "3fa367baf81abbfccab8574c1d67ab43e29be9d5b2c15d751bfe70fac237207c" }, "downloads": -1, "filename": "nidcpower-1.3.2.tar.gz", "has_sig": false, "md5_digest": "0ed0592b53413a46eececa679dbcd700", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 53362, "upload_time": "2020-09-18T17:53:15", "upload_time_iso_8601": "2020-09-18T17:53:15.239685Z", "url": "https://files.pythonhosted.org/packages/fd/e7/782400d1fa8b16cefcf73f73bb17cce2eb493e64e13bc011cdbf43b5af45/nidcpower-1.3.2.tar.gz", "yanked": false, "yanked_reason": null } ], "1.3.3": [ { "comment_text": "", "digests": { "md5": "45da3d14956db6ea5f8cb27b4ba055c0", "sha256": "60a03f30ae049344018c06e47bcadccc3d964fa8ded2a7d96126436ba511710e" }, "downloads": -1, "filename": "nidcpower-1.3.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "45da3d14956db6ea5f8cb27b4ba055c0", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 53169, "upload_time": "2021-03-02T15:58:47", "upload_time_iso_8601": "2021-03-02T15:58:47.849628Z", "url": "https://files.pythonhosted.org/packages/05/92/90414dfcbb5277479379da4be26b84c991bf2d7608ac42a2f8c65cb5ff77/nidcpower-1.3.3-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7310898aff06c51c1d991c197f540318", "sha256": "aba37ea05bdc0f46a8b50619faf266e3cb61d864cbf4e43f399e9a9ab1c4df4c" }, "downloads": -1, "filename": "nidcpower-1.3.3.tar.gz", "has_sig": false, "md5_digest": "7310898aff06c51c1d991c197f540318", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 53828, "upload_time": "2021-03-02T16:00:08", "upload_time_iso_8601": "2021-03-02T16:00:08.190781Z", "url": "https://files.pythonhosted.org/packages/44/be/d2c12e4d0ac914fcc37a34e19ff2e66c2e2a4715fe0a15718c51e6c6021b/nidcpower-1.3.3.tar.gz", "yanked": false, "yanked_reason": null } ], "1.4.0": [ { "comment_text": "", "digests": { "md5": "095fee5d75e0aa7a984c2f68ee134924", "sha256": "7820fb01429f19fc1c98d6efa4395de58451a4468d7b4fef830ddbed7ab2cfb2" }, "downloads": -1, "filename": "nidcpower-1.4.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "095fee5d75e0aa7a984c2f68ee134924", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 59259, "upload_time": "2021-07-09T20:56:48", "upload_time_iso_8601": "2021-07-09T20:56:48.293804Z", "url": "https://files.pythonhosted.org/packages/83/b8/1426383751768c239fd59c6400cee064d0f60989cecdb1f7b3fe7a5e0ac4/nidcpower-1.4.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "761a89e0a24c5d0c7b8727c6139a5f88", "sha256": "d8ce49edb2d7783a24d0c2beabe8f2fe3ccc40136cc1dac3aea92ecb89b1a494" }, "downloads": -1, "filename": "nidcpower-1.4.0.tar.gz", "has_sig": false, "md5_digest": "761a89e0a24c5d0c7b8727c6139a5f88", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 59987, "upload_time": "2021-07-09T20:57:01", "upload_time_iso_8601": "2021-07-09T20:57:01.380495Z", "url": "https://files.pythonhosted.org/packages/ec/9d/b25c24070746e9c46f25a27d98818630dbfe9e5aadf42a3999ef8e200dc6/nidcpower-1.4.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.4.1": [ { "comment_text": "", "digests": { "md5": "f8f02d5ff9c9fbb58423c5c75451fe0d", "sha256": "2f8b4096b167632ecc1c7f35a66de6eaced1f011de08185a80b13fb7a1d3d97f" }, "downloads": -1, "filename": "nidcpower-1.4.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "f8f02d5ff9c9fbb58423c5c75451fe0d", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 59312, "upload_time": "2021-08-20T16:18:30", "upload_time_iso_8601": "2021-08-20T16:18:30.172226Z", "url": "https://files.pythonhosted.org/packages/46/64/b0cf2bcd370cbe6556c2d35c87bf92b212f889be10506604739a627130c1/nidcpower-1.4.1-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "45f88f0503e2c15fe38ba5505f18d790", "sha256": "84d5cdf5a97eab012eaa40bce3eb7d5ada34333c6176e444271a614511c985db" }, "downloads": -1, "filename": "nidcpower-1.4.1.tar.gz", "has_sig": false, "md5_digest": "45f88f0503e2c15fe38ba5505f18d790", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 59537, "upload_time": "2021-08-20T16:18:46", "upload_time_iso_8601": "2021-08-20T16:18:46.647482Z", "url": "https://files.pythonhosted.org/packages/7a/b2/767c3543da362e9e1feb4d686b0e45186f79288cb8734450d2daf9f1fabc/nidcpower-1.4.1.tar.gz", "yanked": false, "yanked_reason": null } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "f8f02d5ff9c9fbb58423c5c75451fe0d", "sha256": "2f8b4096b167632ecc1c7f35a66de6eaced1f011de08185a80b13fb7a1d3d97f" }, "downloads": -1, "filename": "nidcpower-1.4.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "f8f02d5ff9c9fbb58423c5c75451fe0d", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 59312, "upload_time": "2021-08-20T16:18:30", "upload_time_iso_8601": "2021-08-20T16:18:30.172226Z", "url": "https://files.pythonhosted.org/packages/46/64/b0cf2bcd370cbe6556c2d35c87bf92b212f889be10506604739a627130c1/nidcpower-1.4.1-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "45f88f0503e2c15fe38ba5505f18d790", "sha256": "84d5cdf5a97eab012eaa40bce3eb7d5ada34333c6176e444271a614511c985db" }, "downloads": -1, "filename": "nidcpower-1.4.1.tar.gz", "has_sig": false, "md5_digest": "45f88f0503e2c15fe38ba5505f18d790", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 59537, "upload_time": "2021-08-20T16:18:46", "upload_time_iso_8601": "2021-08-20T16:18:46.647482Z", "url": "https://files.pythonhosted.org/packages/7a/b2/767c3543da362e9e1feb4d686b0e45186f79288cb8734450d2daf9f1fabc/nidcpower-1.4.1.tar.gz", "yanked": false, "yanked_reason": null } ], "vulnerabilities": [] }