{ "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-TClk Python API Status\n-------------------------\n\n+-------------------------------+-----------------------+\n| NI-TClk (nitclk) | |\n+===============================+=======================+\n| Driver Version Tested Against | 21.0.0 |\n+-------------------------------+-----------------------+\n| PyPI Version | |nitclkLatestVersion| |\n+-------------------------------+-----------------------+\n| Supported Python Version | |nitclkPythonVersion| |\n+-------------------------------+-----------------------+\n| Open Issues | |nitclkOpenIssues| |\n+-------------------------------+-----------------------+\n| Open Pull Requests | |nitclkOpenPRs| |\n+-------------------------------+-----------------------+\n\n\n.. |nitclkLatestVersion| image:: http://img.shields.io/pypi/v/nitclk.svg\n :alt: Latest NI-TClk Version\n :target: http://pypi.python.org/pypi/nitclk\n\n\n.. |nitclkPythonVersion| image:: http://img.shields.io/pypi/pyversions/nitclk.svg\n :alt: NI-TClk supported Python versions\n :target: http://pypi.python.org/pypi/nitclk\n\n\n.. |nitclkOpenIssues| image:: https://img.shields.io/github/issues/ni/nimi-python/nitclk.svg\n :alt: Open Issues + Pull Requests for NI-TClk\n :target: https://github.com/ni/nimi-python/issues?q=is%3Aopen+is%3Aissue+label%3Anitclk\n\n\n.. |nitclkOpenPRs| image:: https://img.shields.io/github/issues-pr/ni/nimi-python/nitclk.svg\n :alt: Pull Requests for NI-TClk\n :target: https://github.com/ni/nimi-python/pulls?q=is%3Aopen+is%3Aissue+label%3Anitclk\n\n\n\n.. _nitclk_installation-section:\n\nInstallation\n------------\n\nAs a prerequisite to using the nitclk module, you must install the NI-TClk 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-TClk**) can be installed with `pip `_::\n\n $ python -m pip install nitclk~=1.4.1\n\nOr **easy_install** from\n`setuptools `_::\n\n $ python -m easy_install nitclk\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 **nitclk** module\n\n.. code-block:: python\n\n import nitclk\n\nAdditional examples for NI-TClk are located in src/nitclk/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": "nitclk", "license": "MIT", "maintainer": "National Instruments", "maintainer_email": "opensource@ni.com", "name": "nitclk", "package_url": "https://pypi.org/project/nitclk/", "platform": "", "project_url": "https://pypi.org/project/nitclk/", "project_urls": { "Homepage": "https://github.com/ni/nimi-python" }, "release_url": "https://pypi.org/project/nitclk/1.4.1/", "requires_dist": [ "hightime (>=0.2.0)", "enum34 ; python_version < \"3.4\"", "singledispatch ; python_version < \"3.4\"" ], "requires_python": "", "summary": "NI-TClk Python API", "version": "1.4.1", "yanked": false, "yanked_reason": null }, "last_serial": 11233656, "releases": { "0.1.0": [ { "comment_text": "", "digests": { "md5": "ddcd9b6df9fb7bf5a29ccd649a86bdfd", "sha256": "7977b76d4229b2dcfb9b444ccb05615ac0cfe7d0a03423e2336d911033222172" }, "downloads": -1, "filename": "nitclk-0.1.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "ddcd9b6df9fb7bf5a29ccd649a86bdfd", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 21869, "upload_time": "2019-10-21T22:17:47", "upload_time_iso_8601": "2019-10-21T22:17:47.922775Z", "url": "https://files.pythonhosted.org/packages/11/61/c781c0db579a8a9846293003492fc4a7558c16deae5a8b00365d062fc7a1/nitclk-0.1.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "94e84e8021d405fa52836e74156466a1", "sha256": "fe6e67099d1b77808a1aa16643d0bd555803988c7d327735155bc316e240a0c8" }, "downloads": -1, "filename": "nitclk-0.1.0.tar.gz", "has_sig": false, "md5_digest": "94e84e8021d405fa52836e74156466a1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20059, "upload_time": "2019-10-21T22:18:05", "upload_time_iso_8601": "2019-10-21T22:18:05.066782Z", "url": "https://files.pythonhosted.org/packages/30/b7/99441572ce8bd7f6c7265aeb5061b95c75715b4aa1bc535c954d43a5ac3d/nitclk-0.1.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.3.0": [ { "comment_text": "", "digests": { "md5": "bdac7d6c88e70f31442aa5de3a2c56e1", "sha256": "093bc7e74d0bbfd6c56254f5a73c15373bc4e96fcd5243f429ee74656160ec1d" }, "downloads": -1, "filename": "nitclk-0.3.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "bdac7d6c88e70f31442aa5de3a2c56e1", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 21884, "upload_time": "2019-11-19T16:54:17", "upload_time_iso_8601": "2019-11-19T16:54:17.534789Z", "url": "https://files.pythonhosted.org/packages/fe/69/3f4acbf1e14be0492c35ecf2d49a4e11c3e5d74a94774a4953d2ca1fbff7/nitclk-0.3.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fc4a61aebc1937a02a29bf2ad2256982", "sha256": "6664ad477479017ca7887a69ce0de1951f1c4a0261b17595a2e399d83951c8de" }, "downloads": -1, "filename": "nitclk-0.3.0.tar.gz", "has_sig": false, "md5_digest": "fc4a61aebc1937a02a29bf2ad2256982", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20030, "upload_time": "2019-11-19T16:54:32", "upload_time_iso_8601": "2019-11-19T16:54:32.288393Z", "url": "https://files.pythonhosted.org/packages/1a/81/36f01613d3e1504eec210bdb12c5c2748e67d5a1a8d0a69b9e88d7272988/nitclk-0.3.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.3.1": [ { "comment_text": "", "digests": { "md5": "47d9be10c9342d83aa7c9a7aa56f3f17", "sha256": "0500a99abb3aab1cd312cd0d52024ee61e26f79eea9eb6326078471da56c24f1" }, "downloads": -1, "filename": "nitclk-0.3.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "47d9be10c9342d83aa7c9a7aa56f3f17", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 21853, "upload_time": "2019-11-22T19:06:48", "upload_time_iso_8601": "2019-11-22T19:06:48.735305Z", "url": "https://files.pythonhosted.org/packages/93/e6/6fb27694d0f1c5e99a59273523ce4a1998aebb47e9668a6b8abcc455f185/nitclk-0.3.1-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "96f7aa2443b24a1a100d499506664085", "sha256": "afb61454635d99741fa70f61c1ece1eed962c2f431a2c69c44e7803fd747a526" }, "downloads": -1, "filename": "nitclk-0.3.1.tar.gz", "has_sig": false, "md5_digest": "96f7aa2443b24a1a100d499506664085", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20029, "upload_time": "2019-11-22T19:06:57", "upload_time_iso_8601": "2019-11-22T19:06:57.144578Z", "url": "https://files.pythonhosted.org/packages/96/d2/3c059e0138e49f35c3ef6d6f40a9892ea69e2d89eada0de5a03c871d5fc2/nitclk-0.3.1.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.0": [ { "comment_text": "", "digests": { "md5": "b2fa19027abbf23fac53a002e41b9f19", "sha256": "b2bd4eb3a15c738b7566afee4f2a876b5ef6f0574d89a7c94c651ceba0ebb50f" }, "downloads": -1, "filename": "nitclk-1.0.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "b2fa19027abbf23fac53a002e41b9f19", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 20897, "upload_time": "2020-03-07T00:24:00", "upload_time_iso_8601": "2020-03-07T00:24:00.219789Z", "url": "https://files.pythonhosted.org/packages/8a/e8/d5b12d005b4619140ca470d6e5f145f07cc168cd62ac528e14ba144b0ca2/nitclk-1.0.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a976022aec3cbb222bb809384cf964ff", "sha256": "b4dc13dde4fbad8c760416dee0af3f45881a71dc679b6fcfef7e2a7fd3d37ed5" }, "downloads": -1, "filename": "nitclk-1.0.0.tar.gz", "has_sig": false, "md5_digest": "a976022aec3cbb222bb809384cf964ff", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21600, "upload_time": "2020-03-07T00:24:13", "upload_time_iso_8601": "2020-03-07T00:24:13.573397Z", "url": "https://files.pythonhosted.org/packages/19/fb/f8bf7d969e7b92f950974b456b27201aab5d37ec794449f1dcf2443a55fc/nitclk-1.0.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.2.1": [ { "comment_text": "", "digests": { "md5": "7c2a928ba96f77e9f35b1193c35b238a", "sha256": "5c425949f2aec8ee5c9d3383c66d76c27119f6c4c87add0f1686f1f97845e00b" }, "downloads": -1, "filename": "nitclk-1.2.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "7c2a928ba96f77e9f35b1193c35b238a", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 21373, "upload_time": "2020-04-22T17:34:19", "upload_time_iso_8601": "2020-04-22T17:34:19.708011Z", "url": "https://files.pythonhosted.org/packages/aa/99/de5a64952b4bb5ba9c4a7f9f39c89f87b8af4917ccac1b58c150428d63c4/nitclk-1.2.1-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8320ec16d3c991b26a2eb7eb9a4b2498", "sha256": "ad9fc674d4dbe93d96535dd2776cc2ee0c29b594834fdbdff4ead554c8430711" }, "downloads": -1, "filename": "nitclk-1.2.1.tar.gz", "has_sig": false, "md5_digest": "8320ec16d3c991b26a2eb7eb9a4b2498", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22134, "upload_time": "2020-04-22T17:34:30", "upload_time_iso_8601": "2020-04-22T17:34:30.246939Z", "url": "https://files.pythonhosted.org/packages/95/55/9123ee26c6603983d7115d6443f402954f89911d6ca84f95370da7f1c005/nitclk-1.2.1.tar.gz", "yanked": false, "yanked_reason": null } ], "1.3.0": [ { "comment_text": "", "digests": { "md5": "895cdb1a0028c617cec8114ccc162230", "sha256": "a995f2d6b85bb0f89ab052c5bdd51fdc1a1f9f38cf09f9dd6780b7791874b513" }, "downloads": -1, "filename": "nitclk-1.3.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "895cdb1a0028c617cec8114ccc162230", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 21439, "upload_time": "2020-05-21T23:26:52", "upload_time_iso_8601": "2020-05-21T23:26:52.969309Z", "url": "https://files.pythonhosted.org/packages/2b/64/1629d441c0875d329b0a00893474d53f79934ed78233e8dbd999d787b7a0/nitclk-1.3.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f6ff990896626f73e422779a40f1ec7e", "sha256": "3d3e94bae833bde1581dffeccb8e03d0887d6093839ccec8497196f16a436414" }, "downloads": -1, "filename": "nitclk-1.3.0.tar.gz", "has_sig": false, "md5_digest": "f6ff990896626f73e422779a40f1ec7e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22186, "upload_time": "2020-05-21T23:27:04", "upload_time_iso_8601": "2020-05-21T23:27:04.007405Z", "url": "https://files.pythonhosted.org/packages/02/9a/074dae192131b813e2e0f689526307f437c0d517d8bb95328db33de2973f/nitclk-1.3.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.3.1": [ { "comment_text": "", "digests": { "md5": "f0e390605225780df98da0a12b12231d", "sha256": "2fb732c3ceefaacbe5b1e5ed78b3888f2d9a1099b13b1491ae865f5dfc2f1410" }, "downloads": -1, "filename": "nitclk-1.3.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "f0e390605225780df98da0a12b12231d", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 20780, "upload_time": "2020-06-08T22:07:50", "upload_time_iso_8601": "2020-06-08T22:07:50.390520Z", "url": "https://files.pythonhosted.org/packages/4a/33/f0a5f001048d356cd431b7ba523de99d334b90890b30422bb2ec5f820c32/nitclk-1.3.1-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d9748d15a1527f7123b31601b1013d31", "sha256": "b1a862968bbb9b2b3071cde493efcc6e3a9428261a68a6da4c09a27a3ab27632" }, "downloads": -1, "filename": "nitclk-1.3.1.tar.gz", "has_sig": false, "md5_digest": "d9748d15a1527f7123b31601b1013d31", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21497, "upload_time": "2020-06-08T22:08:00", "upload_time_iso_8601": "2020-06-08T22:08:00.471016Z", "url": "https://files.pythonhosted.org/packages/29/4a/0a340c74c6bc2d1db0f83a42cfa00f811b885e10d2ab1eed830740f3424f/nitclk-1.3.1.tar.gz", "yanked": false, "yanked_reason": null } ], "1.3.2": [ { "comment_text": "", "digests": { "md5": "7e1d5a0e9373d1f5e90fda65ae886667", "sha256": "79cefc241a41f33f7e14c62f16ad2edb674cb33ea92d7878364e987cc904872e" }, "downloads": -1, "filename": "nitclk-1.3.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "7e1d5a0e9373d1f5e90fda65ae886667", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 20845, "upload_time": "2020-09-18T17:53:13", "upload_time_iso_8601": "2020-09-18T17:53:13.964342Z", "url": "https://files.pythonhosted.org/packages/c5/42/4d614252bfdfed4c8dd4774886fa22df55a3c6d929a8c4188358a1958fc9/nitclk-1.3.2-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "60814dce70acb55bb37067f038ab5635", "sha256": "0d70fe1c15c519ed2688c9d6dafdfd369960d07829f2cdcfdcd593382aa77c77" }, "downloads": -1, "filename": "nitclk-1.3.2.tar.gz", "has_sig": false, "md5_digest": "60814dce70acb55bb37067f038ab5635", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21469, "upload_time": "2020-09-18T17:53:27", "upload_time_iso_8601": "2020-09-18T17:53:27.646787Z", "url": "https://files.pythonhosted.org/packages/04/97/5472b80c44d1e68813ffe9140798b4a1b234fe6d4c72e780f47cfed34d25/nitclk-1.3.2.tar.gz", "yanked": false, "yanked_reason": null } ], "1.3.3": [ { "comment_text": "", "digests": { "md5": "3e93efb90b77c5aa741ed1d0e77d3cfd", "sha256": "a00a5031245d9f55e2dbeed31fa31930734b555a0ea1eaf7c37b26eca3e9bd45" }, "downloads": -1, "filename": "nitclk-1.3.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "3e93efb90b77c5aa741ed1d0e77d3cfd", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 20845, "upload_time": "2021-03-02T15:59:58", "upload_time_iso_8601": "2021-03-02T15:59:58.189461Z", "url": "https://files.pythonhosted.org/packages/0c/fd/2ef3a76d7738ec482c5753655d640161f63cb239adf46e86c32f3a0fe987/nitclk-1.3.3-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "cbb8d4d15c1d74c2379f6428b362197a", "sha256": "095053e18d3e078c042bbb8f57f5a81062e8401fc6fb1fac4644a2f5b0b326f8" }, "downloads": -1, "filename": "nitclk-1.3.3.tar.gz", "has_sig": false, "md5_digest": "cbb8d4d15c1d74c2379f6428b362197a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21468, "upload_time": "2021-03-02T16:01:02", "upload_time_iso_8601": "2021-03-02T16:01:02.470784Z", "url": "https://files.pythonhosted.org/packages/24/bb/5de6d1e552c744b87dd4a98fa81927718cfce6d4580a02280e934df23132/nitclk-1.3.3.tar.gz", "yanked": false, "yanked_reason": null } ], "1.4.0": [ { "comment_text": "", "digests": { "md5": "6a626b6eda189d75f9d479f1566a82d4", "sha256": "9d45651e1f3027a64f7e35c33e83c37f963e81787430eccd0bc8b06b1953a379" }, "downloads": -1, "filename": "nitclk-1.4.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "6a626b6eda189d75f9d479f1566a82d4", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 21006, "upload_time": "2021-07-09T20:57:00", "upload_time_iso_8601": "2021-07-09T20:57:00.003509Z", "url": "https://files.pythonhosted.org/packages/01/8b/10bc959f9c8417a4f5c15d8eb05c098fdcb53fbc883d71c49666952bada2/nitclk-1.4.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4cdb284182aa1a93c3d19c79b0a18dea", "sha256": "cb89c0ae00334bd02d56e2974b8bd18608a443b1c464f93cd50f1844189900f8" }, "downloads": -1, "filename": "nitclk-1.4.0.tar.gz", "has_sig": false, "md5_digest": "4cdb284182aa1a93c3d19c79b0a18dea", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21574, "upload_time": "2021-07-09T20:57:12", "upload_time_iso_8601": "2021-07-09T20:57:12.476750Z", "url": "https://files.pythonhosted.org/packages/94/41/5d5be1398c1c31922fbf586d5f07b4966f704613c86f922629cb0b8229bd/nitclk-1.4.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.4.1": [ { "comment_text": "", "digests": { "md5": "51e55e1f54eda3bafce0b53e4d2fd73f", "sha256": "1e0f7c75fc739cba8288edb75257c8a719f546b00c00591275cd13d4e9d3f623" }, "downloads": -1, "filename": "nitclk-1.4.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "51e55e1f54eda3bafce0b53e4d2fd73f", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 21003, "upload_time": "2021-08-20T16:18:44", "upload_time_iso_8601": "2021-08-20T16:18:44.570810Z", "url": "https://files.pythonhosted.org/packages/d6/fc/8218c5c6ef3f1802f15fd2818d688ff97d19aa4d24beeedea51eb87ba3d4/nitclk-1.4.1-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7d5829607e22d3915e2f6b5aa0395165", "sha256": "9bd2b7311faf2c12428df75e1e5691bba85563294e1e9fb9e625520f215963b9" }, "downloads": -1, "filename": "nitclk-1.4.1.tar.gz", "has_sig": false, "md5_digest": "7d5829607e22d3915e2f6b5aa0395165", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21123, "upload_time": "2021-08-20T16:18:58", "upload_time_iso_8601": "2021-08-20T16:18:58.377850Z", "url": "https://files.pythonhosted.org/packages/dc/87/322216df6824babc865c3abdea69dcf9889dfc210369f7fe55ca27beb74f/nitclk-1.4.1.tar.gz", "yanked": false, "yanked_reason": null } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "51e55e1f54eda3bafce0b53e4d2fd73f", "sha256": "1e0f7c75fc739cba8288edb75257c8a719f546b00c00591275cd13d4e9d3f623" }, "downloads": -1, "filename": "nitclk-1.4.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "51e55e1f54eda3bafce0b53e4d2fd73f", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 21003, "upload_time": "2021-08-20T16:18:44", "upload_time_iso_8601": "2021-08-20T16:18:44.570810Z", "url": "https://files.pythonhosted.org/packages/d6/fc/8218c5c6ef3f1802f15fd2818d688ff97d19aa4d24beeedea51eb87ba3d4/nitclk-1.4.1-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7d5829607e22d3915e2f6b5aa0395165", "sha256": "9bd2b7311faf2c12428df75e1e5691bba85563294e1e9fb9e625520f215963b9" }, "downloads": -1, "filename": "nitclk-1.4.1.tar.gz", "has_sig": false, "md5_digest": "7d5829607e22d3915e2f6b5aa0395165", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21123, "upload_time": "2021-08-20T16:18:58", "upload_time_iso_8601": "2021-08-20T16:18:58.377850Z", "url": "https://files.pythonhosted.org/packages/dc/87/322216df6824babc865c3abdea69dcf9889dfc210369f7fe55ca27beb74f/nitclk-1.4.1.tar.gz", "yanked": false, "yanked_reason": null } ], "vulnerabilities": [] }