{
"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-Digital Pattern Driver Python API Status\n-------------------------------------------\n\n+---------------------------------------+--------------------------+\n| NI-Digital Pattern Driver (nidigital) | |\n+=======================================+==========================+\n| Driver Version Tested Against | 21.0.0 |\n+---------------------------------------+--------------------------+\n| PyPI Version | |nidigitalLatestVersion| |\n+---------------------------------------+--------------------------+\n| Supported Python Version | |nidigitalPythonVersion| |\n+---------------------------------------+--------------------------+\n| Open Issues | |nidigitalOpenIssues| |\n+---------------------------------------+--------------------------+\n| Open Pull Requests | |nidigitalOpenPRs| |\n+---------------------------------------+--------------------------+\n\n\n.. |nidigitalLatestVersion| image:: http://img.shields.io/pypi/v/nidigital.svg\n :alt: Latest NI-Digital Pattern Driver Version\n :target: http://pypi.python.org/pypi/nidigital\n\n\n.. |nidigitalPythonVersion| image:: http://img.shields.io/pypi/pyversions/nidigital.svg\n :alt: NI-Digital Pattern Driver supported Python versions\n :target: http://pypi.python.org/pypi/nidigital\n\n\n.. |nidigitalOpenIssues| image:: https://img.shields.io/github/issues/ni/nimi-python/nidigital.svg\n :alt: Open Issues + Pull Requests for NI-Digital Pattern Driver\n :target: https://github.com/ni/nimi-python/issues?q=is%3Aopen+is%3Aissue+label%3Anidigital\n\n\n.. |nidigitalOpenPRs| image:: https://img.shields.io/github/issues-pr/ni/nimi-python/nidigital.svg\n :alt: Pull Requests for NI-Digital Pattern Driver\n :target: https://github.com/ni/nimi-python/pulls?q=is%3Aopen+is%3Aissue+label%3Anidigital\n\n\n\n.. _nidigital_installation-section:\n\nInstallation\n------------\n\nAs a prerequisite to using the nidigital module, you must install the NI-Digital Pattern Driver 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-Digital Pattern Driver**) can be installed with `pip `_::\n\n $ python -m pip install nidigital~=1.4.1\n\nOr **easy_install** from\n`setuptools `_::\n\n $ python -m easy_install nidigital\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 **nidigital** module to open a session to a digital pattern instrument,\nsource current, and measure both voltage and current using the PPMU on selected channels.\n\n.. code-block:: python\n\n import nidigital\n import time\n\n with nidigital.Session(resource_name='PXI1Slot2') as session:\n\n channels = 'PXI1Slot2/0,PXI1Slot2/1'\n\n # Configure PPMU measurements\n session.channels[channels].ppmu_aperture_time = 0.000004\n session.channels[channels].ppmu_aperture_time_units = nidigital.PPMUApertureTimeUnits.SECONDS\n\n session.channels[channels].ppmu_output_function = nidigital.PPMUOutputFunction.CURRENT\n\n session.channels[channels].ppmu_current_level_range = 0.000002\n session.channels[channels].ppmu_current_level = 0.000002\n session.channels[channels].ppmu_voltage_limit_high = 3.3\n session.channels[channels].ppmu_voltage_limit_low = 0\n\n # Sourcing\n session.channels[channels].ppmu_source()\n\n # Settling time between sourcing and measuring\n time.sleep(0.01)\n\n # Measuring\n current_measurements = session.channels[channels].ppmu_measure(nidigital.PPMUMeasurementType.CURRENT)\n voltage_measurements = session.channels[channels].ppmu_measure(nidigital.PPMUMeasurementType.VOLTAGE)\n\n print('{:<20} {:<10} {:<10}'.format('Channel Name', 'Current', 'Voltage'))\n for channel, current, voltage in zip(channels.split(','), current_measurements, voltage_measurements):\n print('{:<20} {:<10f} {:<10f}'.format(channel, current, voltage))\n\n # Disconnect all channels using programmable onboard switching\n session.channels[channels].selected_function = nidigital.SelectedFunction.DISCONNECT\n\nAdditional examples for NI-Digital Pattern Driver are located in src/nidigital/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": "nidigital",
"license": "MIT",
"maintainer": "National Instruments",
"maintainer_email": "opensource@ni.com",
"name": "nidigital",
"package_url": "https://pypi.org/project/nidigital/",
"platform": "",
"project_url": "https://pypi.org/project/nidigital/",
"project_urls": {
"Homepage": "https://github.com/ni/nimi-python"
},
"release_url": "https://pypi.org/project/nidigital/1.4.1/",
"requires_dist": [
"hightime (>=0.2.0)",
"nitclk",
"enum34 ; python_version < \"3.4\"",
"singledispatch ; python_version < \"3.4\""
],
"requires_python": "",
"summary": "NI-Digital Pattern Driver Python API",
"version": "1.4.1",
"yanked": false,
"yanked_reason": null
},
"last_serial": 11233649,
"releases": {
"0.1.0": [
{
"comment_text": "",
"digests": {
"md5": "fe28aa9b1cf72d1091b9d2cf3438fbe3",
"sha256": "165aaa1c2f42a20a8faf4da335c3d0f0d904be9acff25f0c5f0afac6c6d16335"
},
"downloads": -1,
"filename": "nidigital-0.1.0-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "fe28aa9b1cf72d1091b9d2cf3438fbe3",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 36761,
"upload_time": "2019-06-06T20:03:39",
"upload_time_iso_8601": "2019-06-06T20:03:39.387840Z",
"url": "https://files.pythonhosted.org/packages/f9/a5/57ac2125acb2c977983f7503662843ec041bcf701086a8c229042df4f947/nidigital-0.1.0-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "d25fba2fe6692be88f878ba38ab1608f",
"sha256": "2914fa052f6341df4cbd1335621bf4bff06e4630868d4fa0cff6da16660d7782"
},
"downloads": -1,
"filename": "nidigital-0.1.0.tar.gz",
"has_sig": false,
"md5_digest": "d25fba2fe6692be88f878ba38ab1608f",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 35245,
"upload_time": "2019-06-06T20:03:41",
"upload_time_iso_8601": "2019-06-06T20:03:41.821835Z",
"url": "https://files.pythonhosted.org/packages/f8/02/8b56390d44c074a4f1e1564444cc59d6640f77accd04db2d090baedd313e/nidigital-0.1.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"0.1.1.dev0": [
{
"comment_text": "",
"digests": {
"md5": "01cce6caefc8ee2222b0da4462744b2b",
"sha256": "373e459d415554b4adf22ebaf7452ea0c5024275e6ba7b646e8cf40a04e61cf0"
},
"downloads": -1,
"filename": "nidigital-0.1.1.dev0-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "01cce6caefc8ee2222b0da4462744b2b",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 35049,
"upload_time": "2019-10-21T22:17:33",
"upload_time_iso_8601": "2019-10-21T22:17:33.777757Z",
"url": "https://files.pythonhosted.org/packages/6d/6a/3ac193242566a0e08fd4d0f936d792205f98dad1c0f877804e24f60c9801/nidigital-0.1.1.dev0-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "628207d9ba4ce386079dd5bc1d7d23bd",
"sha256": "942f807680b259f19c5a21b6d4c693c3cbb14adcb132ddceeab5eff75cc89d9c"
},
"downloads": -1,
"filename": "nidigital-0.1.1.dev0.tar.gz",
"has_sig": false,
"md5_digest": "628207d9ba4ce386079dd5bc1d7d23bd",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 33326,
"upload_time": "2019-10-21T22:17:51",
"upload_time_iso_8601": "2019-10-21T22:17:51.212272Z",
"url": "https://files.pythonhosted.org/packages/9c/17/d58e028c59ee60c4210b19c8aba342d98d5d828d1c370ffd07e4defa19a6/nidigital-0.1.1.dev0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"0.2.0": [
{
"comment_text": "",
"digests": {
"md5": "93772b1d11df5283ec14a233f419daaf",
"sha256": "23910332a0688800857464a379361ad379635328a0b4976ccd4ba2d1279866f6"
},
"downloads": -1,
"filename": "nidigital-0.2.0-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "93772b1d11df5283ec14a233f419daaf",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 36627,
"upload_time": "2019-11-19T16:54:06",
"upload_time_iso_8601": "2019-11-19T16:54:06.475216Z",
"url": "https://files.pythonhosted.org/packages/05/02/1900e75e310e9f9c04ee15ee67a2c8db52258a2807389b23e3f66424ad51/nidigital-0.2.0-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "73e639a6256621164ee1f8efd93752df",
"sha256": "c2ec69e65dab17acec969e46f281c657557085b467a5bc7cf1737c3ecd786a9d"
},
"downloads": -1,
"filename": "nidigital-0.2.0.tar.gz",
"has_sig": false,
"md5_digest": "73e639a6256621164ee1f8efd93752df",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 34828,
"upload_time": "2019-11-19T16:54:22",
"upload_time_iso_8601": "2019-11-19T16:54:22.196326Z",
"url": "https://files.pythonhosted.org/packages/72/cb/b30b213210e12fba8dc68e60fe1ec17e29b92b34a3f40d50a5ba0dad2771/nidigital-0.2.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"0.2.1": [
{
"comment_text": "",
"digests": {
"md5": "eac5bf221541282167652b18c0c0718f",
"sha256": "4aded777c1c8332b25c938fa2c8dcfe9ed3bd7f3871d5bc05e609cd91877d54f"
},
"downloads": -1,
"filename": "nidigital-0.2.1-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "eac5bf221541282167652b18c0c0718f",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 36584,
"upload_time": "2019-11-22T18:03:24",
"upload_time_iso_8601": "2019-11-22T18:03:24.581406Z",
"url": "https://files.pythonhosted.org/packages/33/2d/bf37317b1b5f7a1bfbafc801393763857a1590f0fa58e107ab473d9e0a2b/nidigital-0.2.1-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "02910d96a9ad8bad2dbfaaa88e9434cc",
"sha256": "ad6e0fb38b4dc2b58f5363318be398ff384668b953826f821e8167998f95c884"
},
"downloads": -1,
"filename": "nidigital-0.2.1.tar.gz",
"has_sig": false,
"md5_digest": "02910d96a9ad8bad2dbfaaa88e9434cc",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 34816,
"upload_time": "2019-11-22T19:10:37",
"upload_time_iso_8601": "2019-11-22T19:10:37.154875Z",
"url": "https://files.pythonhosted.org/packages/a7/d2/66056db797f9d9170dfbc7eb1c9753381eb5fb79ecaede87e422b83b8941/nidigital-0.2.1.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"0.4.0": [
{
"comment_text": "",
"digests": {
"md5": "1701b45c801aadec25c72a82d6056ffd",
"sha256": "0d9c169d6ffcc01029beb6b48b9b420918acae0dbf11a5b4abde0ba71f07d8f5"
},
"downloads": -1,
"filename": "nidigital-0.4.0-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "1701b45c801aadec25c72a82d6056ffd",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 35661,
"upload_time": "2020-03-07T00:23:47",
"upload_time_iso_8601": "2020-03-07T00:23:47.676323Z",
"url": "https://files.pythonhosted.org/packages/96/c4/19692ea1b19a2308e63768c7dc8f5121271d43873687ffa6bbc81dee9c63/nidigital-0.4.0-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "306bbf252e62f7814b2e7d01c25de659",
"sha256": "cb52d438fc0f7ffb55c59b79a5f46eeab7e73a5823e918f4b1258e3d0fd56dc7"
},
"downloads": -1,
"filename": "nidigital-0.4.0.tar.gz",
"has_sig": false,
"md5_digest": "306bbf252e62f7814b2e7d01c25de659",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 36649,
"upload_time": "2020-03-07T00:24:03",
"upload_time_iso_8601": "2020-03-07T00:24:03.696848Z",
"url": "https://files.pythonhosted.org/packages/31/74/19d415d960f9cf07dc62a170dc29cfa4a30d1ca661759f6dde7e90cfa588/nidigital-0.4.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"0.5.0": [
{
"comment_text": "",
"digests": {
"md5": "7320188935a47b84231e70220ca24050",
"sha256": "8a5cb7319c0ba6b9ce0f0dd1d005a2a6b2fe7b2d4ec67f36d34e16d1589db6de"
},
"downloads": -1,
"filename": "nidigital-0.5.0-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "7320188935a47b84231e70220ca24050",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 39308,
"upload_time": "2020-04-22T17:34:10",
"upload_time_iso_8601": "2020-04-22T17:34:10.550127Z",
"url": "https://files.pythonhosted.org/packages/df/9e/67c88d972da75c873cab8bb43c3b655411f3ad52c30a283fba3324e70d15/nidigital-0.5.0-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "71426660e804f649842f0ad88bc9e0d8",
"sha256": "5134e748f8fea3a1d7df90d652a5879672da1d18323e010463a8f2bd7b6ae002"
},
"downloads": -1,
"filename": "nidigital-0.5.0.tar.gz",
"has_sig": false,
"md5_digest": "71426660e804f649842f0ad88bc9e0d8",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 40353,
"upload_time": "2020-04-22T17:34:22",
"upload_time_iso_8601": "2020-04-22T17:34:22.349314Z",
"url": "https://files.pythonhosted.org/packages/6e/30/7e0f66b74a5da2c5114f3983d0f4a22703d5e8d76c42d8ec9b3badd21dd6/nidigital-0.5.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"0.9.0": [
{
"comment_text": "",
"digests": {
"md5": "b23b8b3ff8ef9c49606e07aa7fe786cd",
"sha256": "0e5cf25f9beb22c4b226c70b2d1e16b259abd49e4f11343f013df4c45be1a8bc"
},
"downloads": -1,
"filename": "nidigital-0.9.0-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "b23b8b3ff8ef9c49606e07aa7fe786cd",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 39521,
"upload_time": "2020-05-21T23:26:43",
"upload_time_iso_8601": "2020-05-21T23:26:43.550638Z",
"url": "https://files.pythonhosted.org/packages/77/11/f3de811f8de986820a37e3bed672c68949e58c529a47cd042bb6d9dc634b/nidigital-0.9.0-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "e143875fc53fee196991e6f346e0f8ca",
"sha256": "51be61a2ea07a959a3341b17581a9d7b0d420a4c8118cdea8f71633d2fb71f66"
},
"downloads": -1,
"filename": "nidigital-0.9.0.tar.gz",
"has_sig": false,
"md5_digest": "e143875fc53fee196991e6f346e0f8ca",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 40524,
"upload_time": "2020-05-21T23:26:55",
"upload_time_iso_8601": "2020-05-21T23:26:55.364371Z",
"url": "https://files.pythonhosted.org/packages/76/01/0bf6fdd3305c74f922719c0252ffa2d8c9c76e0bdc078cf2dc26eb4bd736/nidigital-0.9.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"0.9.1": [
{
"comment_text": "",
"digests": {
"md5": "a50a5cb53d2321385244b06d9406931e",
"sha256": "0cccf02a37cd97ece7d9b1519ee66a208d41145b9c470ceb0b790fd2078deb91"
},
"downloads": -1,
"filename": "nidigital-0.9.1-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "a50a5cb53d2321385244b06d9406931e",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 38207,
"upload_time": "2020-06-08T22:07:41",
"upload_time_iso_8601": "2020-06-08T22:07:41.508714Z",
"url": "https://files.pythonhosted.org/packages/cb/e8/c9d06ad97d99eb7242038b8b08eda5cfa08cff88eb2aef1e1852ce5ad248/nidigital-0.9.1-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "6654e0fcd3ef29b047f8007d70a7e2b0",
"sha256": "29f39c20daedeef4655fd4632fa2f3f2f3953adb7a62affb7dab9c3140302774"
},
"downloads": -1,
"filename": "nidigital-0.9.1.tar.gz",
"has_sig": false,
"md5_digest": "6654e0fcd3ef29b047f8007d70a7e2b0",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 39175,
"upload_time": "2020-06-08T22:07:52",
"upload_time_iso_8601": "2020-06-08T22:07:52.642902Z",
"url": "https://files.pythonhosted.org/packages/da/62/2a4082e1b3c3e94d7ab4335afcf7b1acbf67808ffed17041e03f5087f771/nidigital-0.9.1.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"0.9.2": [
{
"comment_text": "",
"digests": {
"md5": "25a9b01da8f442a103c5cf3ec77d5cf0",
"sha256": "10de36f4e50e536c9e1662652270b89c1d231eebd72ae6dbcd05702cce09dd87"
},
"downloads": -1,
"filename": "nidigital-0.9.2-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "25a9b01da8f442a103c5cf3ec77d5cf0",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 38290,
"upload_time": "2020-09-18T17:53:02",
"upload_time_iso_8601": "2020-09-18T17:53:02.194783Z",
"url": "https://files.pythonhosted.org/packages/b3/b9/1c177db6fb0050d9dc797968b8d1202ab12b9fb969da47019bfb186cb9f4/nidigital-0.9.2-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "3e7da7bb5b43141a91d1a8440c501a4f",
"sha256": "db53d34df50ebf42b5bb63aa4fa9ba7a2e4ef5040960923c3f36267300eb661d"
},
"downloads": -1,
"filename": "nidigital-0.9.2.tar.gz",
"has_sig": false,
"md5_digest": "3e7da7bb5b43141a91d1a8440c501a4f",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 39163,
"upload_time": "2020-09-18T17:53:16",
"upload_time_iso_8601": "2020-09-18T17:53:16.751611Z",
"url": "https://files.pythonhosted.org/packages/e8/af/4e39003d11a246618491d430a897048285fa8aaf3abf5f1debc079452906/nidigital-0.9.2.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"1.0.0": [
{
"comment_text": "",
"digests": {
"md5": "814e666e2512b4a4004c6bc497143454",
"sha256": "b8a27c2aa4ab1e5c7d26487e30b5dab880b77cd5fe7b29322c2d461614f17b19"
},
"downloads": -1,
"filename": "nidigital-1.0.0-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "814e666e2512b4a4004c6bc497143454",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 56387,
"upload_time": "2021-03-02T15:58:56",
"upload_time_iso_8601": "2021-03-02T15:58:56.121425Z",
"url": "https://files.pythonhosted.org/packages/24/4f/6adbbcbf182eeb57b8d8d77d2073862f6689f7a7a8ac998f1bdc15fbf296/nidigital-1.0.0-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "6102d4ea998c2414f83b563262d0a673",
"sha256": "c945f77cfd7c307b3d050f281948133d48b1278d0b31ecf7a6dbd691e4e866c4"
},
"downloads": -1,
"filename": "nidigital-1.0.0.tar.gz",
"has_sig": false,
"md5_digest": "6102d4ea998c2414f83b563262d0a673",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 57099,
"upload_time": "2021-03-02T16:00:17",
"upload_time_iso_8601": "2021-03-02T16:00:17.616198Z",
"url": "https://files.pythonhosted.org/packages/fd/29/c2f0a86e3f62d2bf94897302e41f5151acb221def23304140a10cc4c2e34/nidigital-1.0.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"1.4.0": [
{
"comment_text": "",
"digests": {
"md5": "dd88d6b03f24f671a050de0028d75fc6",
"sha256": "6a5351abf7b261c895d13d6211dbb78d27e169bc12ba45b9b3966a1c9ef8031e"
},
"downloads": -1,
"filename": "nidigital-1.4.0-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "dd88d6b03f24f671a050de0028d75fc6",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 57928,
"upload_time": "2021-07-09T20:56:49",
"upload_time_iso_8601": "2021-07-09T20:56:49.764384Z",
"url": "https://files.pythonhosted.org/packages/53/59/9eee822ee8222c57ce8b25d847e72af29bb9e650c77a7a82e1df7fd4b8fe/nidigital-1.4.0-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "68d10b0a3c4711aae7c74e4b63da722f",
"sha256": "12fe095b8cc9583506ea02e16bd8f033b4660f321ecf0e7a940d07038c9ef28b"
},
"downloads": -1,
"filename": "nidigital-1.4.0.tar.gz",
"has_sig": false,
"md5_digest": "68d10b0a3c4711aae7c74e4b63da722f",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 58711,
"upload_time": "2021-07-09T20:57:02",
"upload_time_iso_8601": "2021-07-09T20:57:02.616509Z",
"url": "https://files.pythonhosted.org/packages/b0/b9/dfafa5b634ed6619c2e467453a7ca2b965ad1af5a6b50170d51b3548af8a/nidigital-1.4.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"1.4.1": [
{
"comment_text": "",
"digests": {
"md5": "ece5ad60ce11356989d9f1b9a1f962da",
"sha256": "89972f536dd77a034527b95298077dc31132499b5ef209617166cef11b1a204b"
},
"downloads": -1,
"filename": "nidigital-1.4.1-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "ece5ad60ce11356989d9f1b9a1f962da",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 58416,
"upload_time": "2021-08-20T16:18:32",
"upload_time_iso_8601": "2021-08-20T16:18:32.108882Z",
"url": "https://files.pythonhosted.org/packages/d0/9e/64cfe162e9b3e05dbf24610b14357927d0a272f5dcd9a60e78692d9c5201/nidigital-1.4.1-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "80c8af07bf85aca5ac9663ff4805e9c2",
"sha256": "916cda3debdba1dedd02a3d0f142fd05dd4cc7db0d9bbc772801695a98dec0a3"
},
"downloads": -1,
"filename": "nidigital-1.4.1.tar.gz",
"has_sig": false,
"md5_digest": "80c8af07bf85aca5ac9663ff4805e9c2",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 58612,
"upload_time": "2021-08-20T16:18:48",
"upload_time_iso_8601": "2021-08-20T16:18:48.030356Z",
"url": "https://files.pythonhosted.org/packages/c6/0a/26f570c3d84d6f5b7ff0d18bfed2c04dcf26392004da9e5b927c3e4b9fcc/nidigital-1.4.1.tar.gz",
"yanked": false,
"yanked_reason": null
}
]
},
"urls": [
{
"comment_text": "",
"digests": {
"md5": "ece5ad60ce11356989d9f1b9a1f962da",
"sha256": "89972f536dd77a034527b95298077dc31132499b5ef209617166cef11b1a204b"
},
"downloads": -1,
"filename": "nidigital-1.4.1-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "ece5ad60ce11356989d9f1b9a1f962da",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 58416,
"upload_time": "2021-08-20T16:18:32",
"upload_time_iso_8601": "2021-08-20T16:18:32.108882Z",
"url": "https://files.pythonhosted.org/packages/d0/9e/64cfe162e9b3e05dbf24610b14357927d0a272f5dcd9a60e78692d9c5201/nidigital-1.4.1-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "80c8af07bf85aca5ac9663ff4805e9c2",
"sha256": "916cda3debdba1dedd02a3d0f142fd05dd4cc7db0d9bbc772801695a98dec0a3"
},
"downloads": -1,
"filename": "nidigital-1.4.1.tar.gz",
"has_sig": false,
"md5_digest": "80c8af07bf85aca5ac9663ff4805e9c2",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 58612,
"upload_time": "2021-08-20T16:18:48",
"upload_time_iso_8601": "2021-08-20T16:18:48.030356Z",
"url": "https://files.pythonhosted.org/packages/c6/0a/26f570c3d84d6f5b7ff0d18bfed2c04dcf26392004da9e5b927c3e4b9fcc/nidigital-1.4.1.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"vulnerabilities": []
}