{ "info": { "author": "OpenStax team", "author_email": "info@cnx.org", "bugtrack_url": null, "classifiers": [], "description": "CNX Nebu Publishing Utility\n===========================\n\nThis is a command-line interface for interacting with connexions content. The tools is primarily used to publish content to the cnx.org website.\n\nThis software requires:\n\n- Python >= 3.6 <= 3.8\n- libmagic(libmagic1 on Linux)\n- JRE >= 6\n\n\nInstall\n=======\n\n1. Install ``python3`` (on OSX you can run ``brew install python3``)\n#. Run ``pip3 install --upgrade pip setuptools`` in a terminal to upgrade python tools\n#. Make sure libmagic is installed (default on Linux, on OSX use ``brew install libmagic``)\n#. Run ``pip3 install nebuchadnezzar`` in a terminal\n#. Run ``neb --help`` to verify the application is installed\n\n\nDevelopment\n===========\n\nInstall\n-------\n\n1. Install ``python3`` (on OSX you can run ``brew install python3``)\n#. Make sure libmagic is installed (default on Linux, on OSX use ``brew install libmagic``)\n#. Install ``virtualenv`` (on OSX you can run ``pip3 install virtualenv``)\n#. Initialize the python virtual environment:\n\n a. ``virtualenv ./venv/ --python=python3.5``\n #. ``source ./venv/bin/activate``\n #. ``pip3 install --upgrade pip setuptools``\n #. ``python setup.py develop`` or (preferably) ``pip3 install -e .``\n\nDeveloper Run\n-------------\n\n1. Open up a new terminal\n#. ``source ./venv/bin/activate``\n#. Now you can run various commands:\n\n - ``neb --help`` for help with the various commands\n\nTesting\n-------------\nTo run all tests: ``make test``\n\nTo run a single test called ``test_main``: ``make test -- -k test_main``\n\nUsage\n-----\nThere are a few ways to ensure ``neb`` attempts to connect with the desired server:\n\n#. Use a configuration file\n#. Don't use a configuration file, and pass an environment name\n#. (For ``neb get``) Don't use a configuration file, and pass a specific archive host as an argument\n\nUsing a configuration file\n^^^^^^^^^^^^^^^^^^^^^^^^^^\n\nThe CLI will expect a configuration file as either ``~/.config/nebuchadnezzar.ini`` or as defined by the ``NEB_CONFIG`` environment variable. You can use this file to configure environment-specific URL values for:\n\n- ``url``: The environment specific URL\n- ``archive_url``: The archive endpoint URL (this is optional, and if not provided the tool will construct the URL based upon convention)\n\nAn example of using both of these values to define a ``test`` environment::\n\n [settings]\n\n [environ-test]\n url = https://test.cnx.org\n archive_url = https://archive.test.cnx.org\n\nPassing target host as environment\n^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\nFor the ``get``, ``publish``, and ``ping`` commands, you can specify an environment value in the following forms and avoid a configuration file:\n\n#. An ``environment`` where the target host is ``environment.cnx.org``\n\n Example: ``neb publish qa ...`` will access ``https://qa.cnx.org``\n\n#. An ``environment`` that is a FQDN but doesn't specifiy protocol\n\n Example: ``neb publish qa.cnx.org ...`` will access ``https://qa.cnx.org``\n\n#. An ``environment`` that is a FQDN with protocol\n\n Example: ``neb publish http://host.foobar.org ...`` will access ``http://host.foobar.org``\n\nSpecifying archive host\n^^^^^^^^^^^^^^^^^^^^^^^\nFor the ``get`` command, if you need to access an archive host that doesn't follow the ``archive-{environment}`` convention and also want to avoid using a configuration file, you can use the ``--archive`` argument:\n\n* Example: ``neb get vagrant --archive archive.local.cnx.org ...``\n\nConfiguring an Editor\n=====================\nPreparation\n-----------\n\n#. Install https://atom.io\n#. Install Java\n\n #. For macOS you can install Java by installing https://brew.sh and then running ``brew install java`` in a terminal.\n\nInstall (with automatic Atom config)\n------------------------------------\n\n#. Start up Atom\n#. Install the ``linter-autocomplete-jing`` package\n\n#. Type \u2318+, (for Mac) to open Settings (or click **Atom**, **Preferences...** in the menu bar)\n\n #. Click **Install** in the left-hand-side\n #. Enter ``linter-autocomplete-jing`` and click **Install**\n #. **Alternative:** run ``apm install linter-autocomplete-jing`` from the commandline\n\n#. Run ``neb atom-config`` (**NOTE:** *This will overwrite your Atom config file. If you'd prefer updating the config file yourself, see 'Manual Atom config' below.*)\n#. Restart Atom\n#. Open an unzipped complete-zip. (I run ``atom ~/Downloads/col1234_complete`` **From a terminal**)\n#. Verify by opening an ``index.cnxml`` file and typing in ``
`` somewhere in the file. You should see a red flag near the tag that says ``RNG: element \"figure\" missing required attribute \"id\"``.\n\nManual Atom config\n------------------\n\nThis step is only necessary if you didn't run ``neb atom-config`` above. After completing this step, resume the instructions above from the 'Restart Atom' step.\n\nAdd the following to your Atom configuration by clicking **Atom**, **Config** in the menu bar and copying and pasting the below (**NOTE**: indentation is important)::\n\n \"*\":\n core:\n customFileTypes:\n\n # Add this to the bottom of the customFileTypes area.\n # Note: Indentation is important!\n \"text.xml\": [\n \"index.cnxml\"\n ]\n\n\n # And then this to the bottom of the file\n # 1. Make sure \"linter-autocomplete-jing\" only occurs once in this file!\n # 1. make sure it is indented by 2 spaces just like it is in this example.\n\n \"linter-autocomplete-jing\":\n displaySchemaWarnings: true\n rules: [\n {\n priority: 1\n test:\n pathRegex: \".cnxml$\"\n outcome:\n schemaProps: [\n {\n lang: \"rng\"\n path: \"~/.neb/cnxml-validation/cnxml/xml/cnxml/schema/rng/0.7/cnxml-jing.rng\"\n }\n ]\n }\n ]\n\nLicense\n-------\n\nThis software is subject to the provisions of the GNU Affero General\nPublic License Version 3.0 (AGPL). See ``_ for details.\nCopyright (c) 2016-2018 Rice University\n\n\n", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/openstax/nebuchadnezzar", "keywords": "", "license": "AGPL, See also LICENSE.txt", "maintainer": "", "maintainer_email": "", "name": "nebuchadnezzar", "package_url": "https://pypi.org/project/nebuchadnezzar/", "platform": "", "project_url": "https://pypi.org/project/nebuchadnezzar/", "project_urls": { "Homepage": "https://github.com/openstax/nebuchadnezzar" }, "release_url": "https://pypi.org/project/nebuchadnezzar/9.13.1/", "requires_dist": [ "lxml (==4.4.3)", "click (>=7.1.2)", "cnxml (>=3.1.7)", "cnx-epub (>=0.31.2)", "cnx-litezip (>=1.6.0)", "cnx-transforms (>=1.7.0)", "docker (>=4.2.2)", "pip", "requests (>=2.24.0)", "setuptools", "aiohttp[speedups] (>=3.6.2)", "backoff (==1.11.1)", "neb-tasks ; extra == 'tasks'", "pretend ; extra == 'test'", "pytest (>=4.6) ; extra == 'test'", "pytest-cov ; extra == 'test'", "pytest-runner ; extra == 'test'", "requests-mock ; extra == 'test'", "aioresponses ; extra == 'test'" ], "requires_python": "", "summary": "OpenStax Nebu publishing utility", "version": "9.13.1", "yanked": false, "yanked_reason": null }, "last_serial": 12842322, "releases": { "0.0.0": [], "1.0.0": [ { "comment_text": "", "digests": { "md5": "26911fccd5d9a39b9bbdadda0b9a4c5b", "sha256": "9525805ef9947d07173c81a9b1653ff04cb92b1beac88883162b16c68d5ce30c" }, "downloads": -1, "filename": "nebuchadnezzar-1.0.0.tar.gz", "has_sig": false, "md5_digest": "26911fccd5d9a39b9bbdadda0b9a4c5b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4954, "upload_time": "2016-11-29T22:31:49", "upload_time_iso_8601": "2016-11-29T22:31:49.135871Z", "url": "https://files.pythonhosted.org/packages/c9/7d/d5308192b90a6ca88d16b8075b510785cf85d26882ac1e5e10190c2f50ca/nebuchadnezzar-1.0.0.tar.gz", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4d10b67417187143f0c4bbbe09884151", "sha256": "dbe7a20087a1e1125313cebefcbf0d537e8bcea9f1cd7966f28a15b4cff9e7e7" }, "downloads": -1, "filename": "nebuchadnezzar-1.0.0.zip", "has_sig": false, "md5_digest": "4d10b67417187143f0c4bbbe09884151", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9545, "upload_time": "2016-11-29T22:31:51", "upload_time_iso_8601": "2016-11-29T22:31:51.639745Z", "url": "https://files.pythonhosted.org/packages/93/d6/9cfc87a447c2ae031b9338ea33e61631ee186df543326f23e81373c9bf24/nebuchadnezzar-1.0.0.zip", "yanked": false, "yanked_reason": null } ], "1.1.0": [ { "comment_text": "", "digests": { "md5": "18289cf396e0865a231f7661b543cd65", "sha256": "bdbe84a1a9799f3249d0c7fd1dccb60e24811b8ccc128aca8593dca4155f0fd9" }, "downloads": -1, "filename": "nebuchadnezzar-1.1.0-py3-none-any.whl", "has_sig": false, "md5_digest": "18289cf396e0865a231f7661b543cd65", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 16470, "upload_time": "2018-01-26T22:17:39", "upload_time_iso_8601": "2018-01-26T22:17:39.278087Z", "url": "https://files.pythonhosted.org/packages/bf/0b/a928bb0ce4734e9b43182e4c0a165a6a063bdc2904b14fc88b47d1826173/nebuchadnezzar-1.1.0-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "1.1.1": [ { "comment_text": "", "digests": { "md5": "19e6f8e305f7e88dd185a09f589fc415", "sha256": "99dc7efb581a5e051b4d8ee7cc29ee3f391a80c951fc77ae2d344ff15eef8fd8" }, "downloads": -1, "filename": "nebuchadnezzar-1.1.1-py3-none-any.whl", "has_sig": false, "md5_digest": "19e6f8e305f7e88dd185a09f589fc415", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 16490, "upload_time": "2018-02-08T01:17:20", "upload_time_iso_8601": "2018-02-08T01:17:20.828931Z", "url": "https://files.pythonhosted.org/packages/6d/5c/cf8ab317d145966d47b4ec1922f4c675bb914424a8b5cdf701fe708d896f/nebuchadnezzar-1.1.1-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "1.1.2": [ { "comment_text": "", "digests": { "md5": "51d50f86a35f9e80db2f2f0084f5a955", "sha256": "109b4d923a120697543138611cd7a7ae1b4746a5f8e6b22c16c76a76e377c34e" }, "downloads": -1, "filename": "nebuchadnezzar-1.1.2-py3-none-any.whl", "has_sig": false, "md5_digest": "51d50f86a35f9e80db2f2f0084f5a955", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 16540, "upload_time": "2018-03-15T15:16:35", "upload_time_iso_8601": "2018-03-15T15:16:35.460509Z", "url": "https://files.pythonhosted.org/packages/9d/83/c99223d83e36632ec151850dc88992255a2043592da1a4c7539c1c753776/nebuchadnezzar-1.1.2-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "1.2.0": [ { "comment_text": "", "digests": { "md5": "708a2155b1853e81872b464af922b188", "sha256": "93fcca9d833550d32b1fd98d4bd4a10cd9993c1c023aa8dc3ed90f0e74e1218f" }, "downloads": -1, "filename": "nebuchadnezzar-1.2.0-py3-none-any.whl", "has_sig": false, "md5_digest": "708a2155b1853e81872b464af922b188", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 17327, "upload_time": "2018-03-22T14:22:50", "upload_time_iso_8601": "2018-03-22T14:22:50.822326Z", "url": "https://files.pythonhosted.org/packages/ab/92/81f65fd35af5392c34de14136b4d9dae10a77a33fe6076b7d82a6d0f7f37/nebuchadnezzar-1.2.0-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "1.3.0": [ { "comment_text": "", "digests": { "md5": "b18bdcb5f1611cd2c8581f2438f22c10", "sha256": "d2fa3c35b00f69033549f6cfea9d1bb91b4fea83691059fd040aa4296e924895" }, "downloads": -1, "filename": "nebuchadnezzar-1.3.0-py3-none-any.whl", "has_sig": false, "md5_digest": "b18bdcb5f1611cd2c8581f2438f22c10", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 17565, "upload_time": "2018-03-29T16:40:45", "upload_time_iso_8601": "2018-03-29T16:40:45.171702Z", "url": "https://files.pythonhosted.org/packages/71/e8/c492cf1c15c9fb1cc82d86ba418e35b0d35149308fe87dcbfadfde53d8fe/nebuchadnezzar-1.3.0-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "1.4.0": [ { "comment_text": "", "digests": { "md5": "da04bb010d00da6821dd828073e1ed2c", "sha256": "30356ca29ae811234066c5eda323f884f892e58f33b6dc5454412adf0dcc4695" }, "downloads": -1, "filename": "nebuchadnezzar-1.4.0-py3-none-any.whl", "has_sig": false, "md5_digest": "da04bb010d00da6821dd828073e1ed2c", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 16213, "upload_time": "2018-04-18T19:41:38", "upload_time_iso_8601": "2018-04-18T19:41:38.458649Z", "url": "https://files.pythonhosted.org/packages/6a/63/729ddd38f83079ab45d166d6e10d7f9d195ea87ea20912779a7dd3179443/nebuchadnezzar-1.4.0-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "1.4.1": [ { "comment_text": "", "digests": { "md5": "b49f3efeb40840418def3bf2a2f26a93", "sha256": "29eacd305d8358d2656648ba36f19dd96adaaf7ce58532f778592b2f5ce7abb8" }, "downloads": -1, "filename": "nebuchadnezzar-1.4.1-py3-none-any.whl", "has_sig": false, "md5_digest": "b49f3efeb40840418def3bf2a2f26a93", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 17186, "upload_time": "2018-04-20T17:47:54", "upload_time_iso_8601": "2018-04-20T17:47:54.942202Z", "url": "https://files.pythonhosted.org/packages/0f/cc/393cbdb9e868183781e4aea6e6e904d9deb573799e8885518833193391e7/nebuchadnezzar-1.4.1-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "1.4.2": [ { "comment_text": "", "digests": { "md5": "522c251d97c1e83764dc5f6d1ad06fb7", "sha256": "fffc642c8e02a5687049aa1d4b1bbe0134e8e15140372e1feb2edfe8b9f03a26" }, "downloads": -1, "filename": "nebuchadnezzar-1.4.2-py3-none-any.whl", "has_sig": false, "md5_digest": "522c251d97c1e83764dc5f6d1ad06fb7", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 17099, "upload_time": "2018-04-27T04:46:16", "upload_time_iso_8601": "2018-04-27T04:46:16.734751Z", "url": "https://files.pythonhosted.org/packages/f9/2a/5569873db46e76f9bcf7069512cf4c30e355246b15bd4b7613b2a50d94c3/nebuchadnezzar-1.4.2-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "2.0.0": [ { "comment_text": "", "digests": { "md5": "921a9f78417c781926f7ea38f422e958", "sha256": "c6ca0aed242ce17b2215cf9ffa4cbb3a5993126cfd5292d297e29a64eafd38b6" }, "downloads": -1, "filename": "nebuchadnezzar-2.0.0-py3-none-any.whl", "has_sig": false, "md5_digest": "921a9f78417c781926f7ea38f422e958", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 21923, "upload_time": "2018-05-07T19:04:06", "upload_time_iso_8601": "2018-05-07T19:04:06.693224Z", "url": "https://files.pythonhosted.org/packages/23/9e/f31223630f9b9dc0f75da0f19b473bb835cbc886426dedb725fa8e9f6d0b/nebuchadnezzar-2.0.0-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "2.0.1": [ { "comment_text": "", "digests": { "md5": "e2e4275c633ce44f8d2be03183ebcda5", "sha256": "51919c769b4570a69e41c12e4af9367bc45ea28daf3c60228e2c1620e0917aeb" }, "downloads": -1, "filename": "nebuchadnezzar-2.0.1-py3-none-any.whl", "has_sig": false, "md5_digest": "e2e4275c633ce44f8d2be03183ebcda5", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 21923, "upload_time": "2018-05-09T16:52:38", "upload_time_iso_8601": "2018-05-09T16:52:38.409977Z", "url": "https://files.pythonhosted.org/packages/40/44/ff4b497b4d1c820a07e90ff13c52764870c024b577fea1be9052f7073cfd/nebuchadnezzar-2.0.1-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "2.1.0": [ { "comment_text": "", "digests": { "md5": "c7a2ab4838495cd2f7af93e715d01b19", "sha256": "898b26936b741f0113305b33b59218d6dda12a63a0ba1380098da4ba682b0748" }, "downloads": -1, "filename": "nebuchadnezzar-2.1.0-py3-none-any.whl", "has_sig": false, "md5_digest": "c7a2ab4838495cd2f7af93e715d01b19", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 22093, "upload_time": "2018-05-10T15:24:33", "upload_time_iso_8601": "2018-05-10T15:24:33.028828Z", "url": "https://files.pythonhosted.org/packages/36/16/1a29dcd3987c10297c8486f6f221893798358d8296c5b30af8928db821cf/nebuchadnezzar-2.1.0-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "3.0.0": [ { "comment_text": "", "digests": { "md5": "162133a79748a55a95544fd52121a11c", "sha256": "362521b66bab3f11dde9c9134df1a6ff1b11d345a36dc018e1a97b9a180b1ca3" }, "downloads": -1, "filename": "nebuchadnezzar-3.0.0-py3-none-any.whl", "has_sig": false, "md5_digest": "162133a79748a55a95544fd52121a11c", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 22122, "upload_time": "2018-05-11T02:21:57", "upload_time_iso_8601": "2018-05-11T02:21:57.808158Z", "url": "https://files.pythonhosted.org/packages/a8/c6/9cba6a8afd0a843379be67befa64ae5e09d945a875b2ea99ea21b68952e6/nebuchadnezzar-3.0.0-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "3.0.1": [ { "comment_text": "", "digests": { "md5": "90e992aaa00fdf409dd9f72a93237e3d", "sha256": "a7f4ade61ccce8e0399d6e2143060792498dd7c98f87ce1e48d8328630241599" }, "downloads": -1, "filename": "nebuchadnezzar-3.0.1-py3-none-any.whl", "has_sig": false, "md5_digest": "90e992aaa00fdf409dd9f72a93237e3d", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 19853, "upload_time": "2018-05-16T19:00:42", "upload_time_iso_8601": "2018-05-16T19:00:42.333781Z", "url": "https://files.pythonhosted.org/packages/3f/06/5b904df3a7d4ed51d484d87ebc27e4b52f8f897e2afdd6c2ec5d2f8d18ec/nebuchadnezzar-3.0.1-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "3.1.0": [ { "comment_text": "", "digests": { "md5": "ce56808e917b7c6b1462aeb08ab6e392", "sha256": "c39dd3ab2cb0a35f641ece458103e10834fc8390fe6cda998f18f9186478298e" }, "downloads": -1, "filename": "nebuchadnezzar-3.1.0-py3-none-any.whl", "has_sig": false, "md5_digest": "ce56808e917b7c6b1462aeb08ab6e392", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 22603, "upload_time": "2018-05-21T19:19:42", "upload_time_iso_8601": "2018-05-21T19:19:42.829228Z", "url": "https://files.pythonhosted.org/packages/81/9a/b52ef3352dfc7b7ed229ad820c366c297b1ba6755db79b07861cf8acd7f7/nebuchadnezzar-3.1.0-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "4.0.0": [ { "comment_text": "", "digests": { "md5": "a503b64be099fc0ce12554e352a61da7", "sha256": "a9371373c9c57d720aac0740804641ded0344fa888d20dd124dabbcec16e2a5b" }, "downloads": -1, "filename": "nebuchadnezzar-4.0.0-py3-none-any.whl", "has_sig": false, "md5_digest": "a503b64be099fc0ce12554e352a61da7", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 20907, "upload_time": "2018-06-13T16:25:04", "upload_time_iso_8601": "2018-06-13T16:25:04.281918Z", "url": "https://files.pythonhosted.org/packages/fe/d3/0ab00082a0c01f615b700e7a438c2ed4f1097a516420475a6416b72ef6f7/nebuchadnezzar-4.0.0-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "5.0.0": [ { "comment_text": "", "digests": { "md5": "37a0465a21dd4af362f67927d1269945", "sha256": "d23a6e63b463d4ab324b05eb6f93561dc6634119a1f30aca2cd289485f593550" }, "downloads": -1, "filename": "nebuchadnezzar-5.0.0-py3-none-any.whl", "has_sig": false, "md5_digest": "37a0465a21dd4af362f67927d1269945", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 29445, "upload_time": "2018-06-27T20:27:00", "upload_time_iso_8601": "2018-06-27T20:27:00.074741Z", "url": "https://files.pythonhosted.org/packages/bb/0c/8bd098d1d1ebf95e3190d642810df134cc2c73790b2ef6137ffd37b0fd1e/nebuchadnezzar-5.0.0-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "5.0.1": [ { "comment_text": "", "digests": { "md5": "651054a45d42f059cb71f12c04bad9d5", "sha256": "d645c02d7d21e78c1f7d52007cee4aba28166d0cc7e5c57088cb595304d82c1a" }, "downloads": -1, "filename": "nebuchadnezzar-5.0.1-py3-none-any.whl", "has_sig": false, "md5_digest": "651054a45d42f059cb71f12c04bad9d5", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 29526, "upload_time": "2018-06-28T20:42:02", "upload_time_iso_8601": "2018-06-28T20:42:02.787576Z", "url": "https://files.pythonhosted.org/packages/33/8a/500d4b3057e1ddce242281b04fa658b8dc2ed27fee7b1a66ab04342c62a8/nebuchadnezzar-5.0.1-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "5.0.2": [ { "comment_text": "", "digests": { "md5": "38d6646d69da2119083131b66fd9d8dd", "sha256": "ff90330fa31e3b0ec0c1ca82a17d46960a46001308d1b72e71bf2fca7c41dd06" }, "downloads": -1, "filename": "nebuchadnezzar-5.0.2-py3-none-any.whl", "has_sig": false, "md5_digest": "38d6646d69da2119083131b66fd9d8dd", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 27172, "upload_time": "2018-07-23T20:48:32", "upload_time_iso_8601": "2018-07-23T20:48:32.380684Z", "url": "https://files.pythonhosted.org/packages/f1/11/997b755d48eee2ed943997ef5756454cf191d760b2fe4cc53db48f2899a1/nebuchadnezzar-5.0.2-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "5.1.0": [ { "comment_text": "", "digests": { "md5": "8ac70e04925c4553f3ae56d1343cf424", "sha256": "650f287b31cf5ad40db10f85f6581346306169a4208b7c0246a15b45474f6bdf" }, "downloads": -1, "filename": "nebuchadnezzar-5.1.0-py3-none-any.whl", "has_sig": false, "md5_digest": "8ac70e04925c4553f3ae56d1343cf424", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 27111, "upload_time": "2018-08-31T15:17:43", "upload_time_iso_8601": "2018-08-31T15:17:43.916933Z", "url": "https://files.pythonhosted.org/packages/71/c9/814b141b68f0e72f45b05f1e89d1fb4af957757ed7edfeb70fe0c4e2c8c0/nebuchadnezzar-5.1.0-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "6.0.0": [ { "comment_text": "", "digests": { "md5": "2c2deb9687611d138ab9508dc4549127", "sha256": "d3a21513f93556ea7b85f363a9717cf9e6192bd3ecb510830a0ca0332ddc672e" }, "downloads": -1, "filename": "nebuchadnezzar-6.0.0-py3-none-any.whl", "has_sig": false, "md5_digest": "2c2deb9687611d138ab9508dc4549127", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 27487, "upload_time": "2018-09-17T17:04:37", "upload_time_iso_8601": "2018-09-17T17:04:37.748696Z", "url": "https://files.pythonhosted.org/packages/6d/86/d7cc06028c1ee6de69f058621c3c8def09cd9907a6b85b324e34b719b669/nebuchadnezzar-6.0.0-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "6.0.1": [ { "comment_text": "", "digests": { "md5": "5c0034809201433fc2f64c9e74fca988", "sha256": "e91d22205e1a89ac63088967bcaefa9be1ac523d509305fbdb4ab587da799e88" }, "downloads": -1, "filename": "nebuchadnezzar-6.0.1-py3-none-any.whl", "has_sig": false, "md5_digest": "5c0034809201433fc2f64c9e74fca988", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 27468, "upload_time": "2018-09-19T14:43:46", "upload_time_iso_8601": "2018-09-19T14:43:46.022639Z", "url": "https://files.pythonhosted.org/packages/19/17/9b10feb2f8fba449573e0bc6f188f557dc3b745420955844d9d867d96766/nebuchadnezzar-6.0.1-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "6.1.0": [ { "comment_text": "", "digests": { "md5": "58f08fc4ed13a9fb99f198ddb8dbe8a1", "sha256": "3c9ed17ad7a0a10c85c7bccc25733b9d97d3bb4e4851dc7b07237670b0729790" }, "downloads": -1, "filename": "nebuchadnezzar-6.1.0-py3-none-any.whl", "has_sig": false, "md5_digest": "58f08fc4ed13a9fb99f198ddb8dbe8a1", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 27615, "upload_time": "2018-09-28T21:00:37", "upload_time_iso_8601": "2018-09-28T21:00:37.288348Z", "url": "https://files.pythonhosted.org/packages/30/46/92b8840cdd6d0ae215b994400b20af66e6315817b3449fecaee614592847/nebuchadnezzar-6.1.0-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "7.0.1": [ { "comment_text": "", "digests": { "md5": "a0e86a81398a284313b8852e2cf44fcf", "sha256": "5c13b81f4d292289c3adfa70fc733849587f35f2aefe54f9f85b8e07fa59180c" }, "downloads": -1, "filename": "nebuchadnezzar-7.0.1-py3-none-any.whl", "has_sig": false, "md5_digest": "a0e86a81398a284313b8852e2cf44fcf", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 32333, "upload_time": "2018-10-23T19:15:26", "upload_time_iso_8601": "2018-10-23T19:15:26.994425Z", "url": "https://files.pythonhosted.org/packages/99/d2/533890a0a88f8b75cbacc0427eef76c366e6af0f70987a78e4c6b4c30576/nebuchadnezzar-7.0.1-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "7.1.0": [ { "comment_text": "", "digests": { "md5": "70f70bcd25aa03936490085a9f671d38", "sha256": "411134e01d5667ff0c0a5059f9f621793c26c72d051ec5e0e3c71db60a50117a" }, "downloads": -1, "filename": "nebuchadnezzar-7.1.0-py3-none-any.whl", "has_sig": false, "md5_digest": "70f70bcd25aa03936490085a9f671d38", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 51697, "upload_time": "2018-10-26T15:53:23", "upload_time_iso_8601": "2018-10-26T15:53:23.707915Z", "url": "https://files.pythonhosted.org/packages/7a/64/9f1481bf49fd5b55616d034d2486ca9404f6e5a6221ce05ad613b8fb7971/nebuchadnezzar-7.1.0-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "7.1.2": [ { "comment_text": "", "digests": { "md5": "ee26ae4b40b52bc056c9c95df0536250", "sha256": "06009dcde3e2373ed766aef07432a0a8b8fe0393633731a66fc654bb3b01b1ad" }, "downloads": -1, "filename": "nebuchadnezzar-7.1.2-py3-none-any.whl", "has_sig": false, "md5_digest": "ee26ae4b40b52bc056c9c95df0536250", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 52228, "upload_time": "2018-11-09T22:01:41", "upload_time_iso_8601": "2018-11-09T22:01:41.829115Z", "url": "https://files.pythonhosted.org/packages/7b/24/91cbba907bbfeba1458ca37bd76412110715612ac8840d9b952d8562947f/nebuchadnezzar-7.1.2-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "8.0.0": [ { "comment_text": "", "digests": { "md5": "a51559fbb5d44fab624a7e76c9d2e73a", "sha256": "542846270d5bbba8b68ef8962e390b6227a63dacc24111732c51e9e2120853a6" }, "downloads": -1, "filename": "nebuchadnezzar-8.0.0-py3-none-any.whl", "has_sig": false, "md5_digest": "a51559fbb5d44fab624a7e76c9d2e73a", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 58512, "upload_time": "2018-12-10T18:20:27", "upload_time_iso_8601": "2018-12-10T18:20:27.854369Z", "url": "https://files.pythonhosted.org/packages/1c/09/fb7f70143b32ca92b26a7159a64872810cdfaa17d39b717206c1ca3b13f5/nebuchadnezzar-8.0.0-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "8.0.1": [ { "comment_text": "", "digests": { "md5": "676116abb21e534d5f7204cccb8ace20", "sha256": "a1bcf7b86b8664929d5f70a74b52734b08d718108ec32a946d79609df1dce2f9" }, "downloads": -1, "filename": "nebuchadnezzar-8.0.1-py3-none-any.whl", "has_sig": false, "md5_digest": "676116abb21e534d5f7204cccb8ace20", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 46820, "upload_time": "2018-12-17T23:01:24", "upload_time_iso_8601": "2018-12-17T23:01:24.681975Z", "url": "https://files.pythonhosted.org/packages/71/89/a951cc542d6c6b0a0dea446c6540bc3e3e28b02340f5f909410f2fdbaa3e/nebuchadnezzar-8.0.1-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "8.0.3": [ { "comment_text": "", "digests": { "md5": "65948cabd2d4559c4d06238b20969502", "sha256": "1be1cf5fcb4096cb13a7cea7e7857ea3db16ea91ea12e4604ca2de72ed4bbd8e" }, "downloads": -1, "filename": "nebuchadnezzar-8.0.3-py3-none-any.whl", "has_sig": false, "md5_digest": "65948cabd2d4559c4d06238b20969502", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 58539, "upload_time": "2019-01-08T20:06:57", "upload_time_iso_8601": "2019-01-08T20:06:57.296928Z", "url": "https://files.pythonhosted.org/packages/e7/b9/bd3931154f1a8328059fc1bb686d1565e85b21a4414df8f1aef2e64e3f26/nebuchadnezzar-8.0.3-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "8.0.4": [ { "comment_text": "", "digests": { "md5": "0cfbf5710b70c74ad026f864131fd59a", "sha256": "bb4ec1e132af47c903ba3ee3ff3a6b0d641760bfcd4ff58f18e5560720ddcede" }, "downloads": -1, "filename": "nebuchadnezzar-8.0.4-py3-none-any.whl", "has_sig": false, "md5_digest": "0cfbf5710b70c74ad026f864131fd59a", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 58540, "upload_time": "2019-01-09T17:27:57", "upload_time_iso_8601": "2019-01-09T17:27:57.122021Z", "url": "https://files.pythonhosted.org/packages/a9/f3/f380bec2dd2bfe859b109f50379a24ab3a775f5031e6ef69ba159cbec5b0/nebuchadnezzar-8.0.4-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "9.0.0": [ { "comment_text": "", "digests": { "md5": "c6fbed2950c579d1933b3091daab1e6e", "sha256": "eecae9e8d7722f58b65854339c304f745bb3ae3795d7897c2d0b4c7ccdffed26" }, "downloads": -1, "filename": "nebuchadnezzar-9.0.0-py3-none-any.whl", "has_sig": false, "md5_digest": "c6fbed2950c579d1933b3091daab1e6e", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 64142, "upload_time": "2019-01-24T18:24:23", "upload_time_iso_8601": "2019-01-24T18:24:23.114672Z", "url": "https://files.pythonhosted.org/packages/90/97/54aa43ac7fcf4b5e12f480fd0f4f0451892980ac026375b6833cbb44c842/nebuchadnezzar-9.0.0-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "9.0.1": [ { "comment_text": "", "digests": { "md5": "ee281b066f28de17a2aaf033d8c33f4f", "sha256": "cfb5c19ceea6fc3d983a1433cb4844ca89428f4653670a41abbf7cf2a7c25906" }, "downloads": -1, "filename": "nebuchadnezzar-9.0.1-py3-none-any.whl", "has_sig": false, "md5_digest": "ee281b066f28de17a2aaf033d8c33f4f", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 64292, "upload_time": "2019-02-01T16:05:56", "upload_time_iso_8601": "2019-02-01T16:05:56.728126Z", "url": "https://files.pythonhosted.org/packages/72/ac/3ba84d660f80f2c220595d95d127c06813ba06008526abb303d6fad93b5e/nebuchadnezzar-9.0.1-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "9.0.2": [ { "comment_text": "", "digests": { "md5": "49f383629da039ffd33505fb5bb0694f", "sha256": "c7d12edaf2eb68c760be4a0bf35f8c4ab134a5d410de904d7006bb5ecfd22873" }, "downloads": -1, "filename": "nebuchadnezzar-9.0.2-py3-none-any.whl", "has_sig": false, "md5_digest": "49f383629da039ffd33505fb5bb0694f", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 65143, "upload_time": "2019-04-17T03:37:58", "upload_time_iso_8601": "2019-04-17T03:37:58.035132Z", "url": "https://files.pythonhosted.org/packages/d1/47/8ffa626b7d68345594ca6e8486ca7332e47e78c46b2bcf675212aeb7bf52/nebuchadnezzar-9.0.2-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "9.1.0": [ { "comment_text": "", "digests": { "md5": "54d03202e53b8634465451798e269485", "sha256": "2468bb76aa9fbb7cf6f36a3d641a8170a2a7cb05fae9485d12d2c6d9ca82a624" }, "downloads": -1, "filename": "nebuchadnezzar-9.1.0-py3-none-any.whl", "has_sig": false, "md5_digest": "54d03202e53b8634465451798e269485", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 94843, "upload_time": "2019-05-13T15:15:50", "upload_time_iso_8601": "2019-05-13T15:15:50.040345Z", "url": "https://files.pythonhosted.org/packages/5b/aa/4019cd26b63c7e1826e28fda1884abc9eac7a5d763c14ecdbe3b1424fb81/nebuchadnezzar-9.1.0-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "9.1.0b1": [ { "comment_text": "", "digests": { "md5": "c00ca5b629b0df13a818f837c1d816ab", "sha256": "790ca474378383d13a00aeba8c6d8e3716a210ad36abe03fc7ad543f90cfbc04" }, "downloads": -1, "filename": "nebuchadnezzar-9.1.0b1-py3-none-any.whl", "has_sig": false, "md5_digest": "c00ca5b629b0df13a818f837c1d816ab", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 96829, "upload_time": "2019-03-14T20:57:56", "upload_time_iso_8601": "2019-03-14T20:57:56.941061Z", "url": "https://files.pythonhosted.org/packages/85/74/7e9406f514439cd4cdeb0d4f1d6028c320772d039a5ed1a350629129ce6a/nebuchadnezzar-9.1.0b1-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "9.1.0b2": [ { "comment_text": "", "digests": { "md5": "523ab5d07da4c4be7235fe7b584531c8", "sha256": "0a0f6035c57e786a9b523c71fd4208a3305298825f2842fc66348c287a00b87a" }, "downloads": -1, "filename": "nebuchadnezzar-9.1.0b2-py3-none-any.whl", "has_sig": false, "md5_digest": "523ab5d07da4c4be7235fe7b584531c8", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 95822, "upload_time": "2019-03-22T15:32:41", "upload_time_iso_8601": "2019-03-22T15:32:41.116602Z", "url": "https://files.pythonhosted.org/packages/a6/58/57afeb87d9257917578a17957877d5b8454b857a23873eca6332b80db027/nebuchadnezzar-9.1.0b2-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "9.1.0b3": [ { "comment_text": "", "digests": { "md5": "c90ce96b9c2d58818a7a123ed4f90826", "sha256": "3f99eedbf4f4a951db6ca5eb4b1d9c9eff1e4d430efbf440379e9e064eb5ce44" }, "downloads": -1, "filename": "nebuchadnezzar-9.1.0b3-py3-none-any.whl", "has_sig": false, "md5_digest": "c90ce96b9c2d58818a7a123ed4f90826", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 96614, "upload_time": "2019-03-27T22:22:40", "upload_time_iso_8601": "2019-03-27T22:22:40.182366Z", "url": "https://files.pythonhosted.org/packages/55/03/8308500a463f71a81e351cd1601ff5546270a3ba3dbab99c43c1cb785363/nebuchadnezzar-9.1.0b3-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "9.1.0b4": [ { "comment_text": "", "digests": { "md5": "6f1b157ca4089007bdf864fb644114b3", "sha256": "284f19f79a208c4bc6c02f0fa7f50105996400e42f19eab06fcc15dec9b29c3f" }, "downloads": -1, "filename": "nebuchadnezzar-9.1.0b4-py3-none-any.whl", "has_sig": false, "md5_digest": "6f1b157ca4089007bdf864fb644114b3", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 96845, "upload_time": "2019-03-28T20:52:43", "upload_time_iso_8601": "2019-03-28T20:52:43.090730Z", "url": "https://files.pythonhosted.org/packages/e5/7d/341334cb38332c1e613510aaea87b11f5159d27235ea0d71563ba03a2509/nebuchadnezzar-9.1.0b4-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "9.1.0b5": [ { "comment_text": "", "digests": { "md5": "deab4d7b2b343cfb673f977fb0188522", "sha256": "999c352d1451304adeda32f607cf333cdc7cdd9a68423abd6ba4cd3bf405b6a7" }, "downloads": -1, "filename": "nebuchadnezzar-9.1.0b5-py3-none-any.whl", "has_sig": false, "md5_digest": "deab4d7b2b343cfb673f977fb0188522", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 96985, "upload_time": "2019-04-02T15:04:44", "upload_time_iso_8601": "2019-04-02T15:04:44.142476Z", "url": "https://files.pythonhosted.org/packages/81/00/fc8f2e1dd32b26a3249f5c2c3156eca17cf58302515b48e41118ec99a2c9/nebuchadnezzar-9.1.0b5-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "9.1.0b6": [ { "comment_text": "", "digests": { "md5": "e87826ecbc20aa3d28ab52ea27651b9a", "sha256": "6fa85140ca700a12ced57f87fd82c40fb6b6877d6d36d082bc14f6dfa185e69e" }, "downloads": -1, "filename": "nebuchadnezzar-9.1.0b6-py3-none-any.whl", "has_sig": false, "md5_digest": "e87826ecbc20aa3d28ab52ea27651b9a", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 96949, "upload_time": "2019-04-04T21:11:35", "upload_time_iso_8601": "2019-04-04T21:11:35.237125Z", "url": "https://files.pythonhosted.org/packages/b0/17/6f32e90c50919f335352b268e578b60260faaa27451dee18c854c61d71d8/nebuchadnezzar-9.1.0b6-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "9.10.0": [ { "comment_text": "", "digests": { "md5": "988fd03c3b52c88bbf9d3f26b291d2d8", "sha256": "b7d2f0f5bb72bbf15b3f72a11c7d8f5151cac9b2b7d890395f3e464aee0eb96c" }, "downloads": -1, "filename": "nebuchadnezzar-9.10.0-py3-none-any.whl", "has_sig": false, "md5_digest": "988fd03c3b52c88bbf9d3f26b291d2d8", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 132872, "upload_time": "2021-09-28T21:13:21", "upload_time_iso_8601": "2021-09-28T21:13:21.910943Z", "url": "https://files.pythonhosted.org/packages/85/79/72968289aa2202a73142e279763c3ce74bbcd306892492c461689205d94e/nebuchadnezzar-9.10.0-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "9.11.0": [ { "comment_text": "", "digests": { "md5": "96060a53f3b4f8afd8dbbd1cc0fd9f33", "sha256": "74694cefc5de0f9c899c39ed5370236db2e6419a90a28618b047ac62c4468ebe" }, "downloads": -1, "filename": "nebuchadnezzar-9.11.0-py3-none-any.whl", "has_sig": false, "md5_digest": "96060a53f3b4f8afd8dbbd1cc0fd9f33", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 132876, "upload_time": "2021-10-22T19:13:53", "upload_time_iso_8601": "2021-10-22T19:13:53.011297Z", "url": "https://files.pythonhosted.org/packages/27/35/46971f9f50d349cb35fc2f6e3243141f4d343a70219fff1ab09be31d2a1d/nebuchadnezzar-9.11.0-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "9.13.1": [ { "comment_text": "", "digests": { "md5": "c58c26d3db8a1a043b473db4ab557317", "sha256": "e5e9d6a6046f73976a11d54eaf93665b73c096bef40d023016dcbe5cbb872a20" }, "downloads": -1, "filename": "nebuchadnezzar-9.13.1-py3-none-any.whl", "has_sig": false, "md5_digest": "c58c26d3db8a1a043b473db4ab557317", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 133035, "upload_time": "2022-02-09T19:25:00", "upload_time_iso_8601": "2022-02-09T19:25:00.504350Z", "url": "https://files.pythonhosted.org/packages/b1/2e/a810a8d73688f650665540e1221c402bbc8c460bb84fcef9594b7c48294f/nebuchadnezzar-9.13.1-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "9.2.1": [ { "comment_text": "", "digests": { "md5": "fd529ee748932e73e8998e443fd14be0", "sha256": "403a9a6ef2ea74abf037c1392501da3c74d80e39d476e3c72227806f826a606f" }, "downloads": -1, "filename": "nebuchadnezzar-9.2.1-py3-none-any.whl", "has_sig": false, "md5_digest": "fd529ee748932e73e8998e443fd14be0", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 97061, "upload_time": "2019-10-22T19:32:31", "upload_time_iso_8601": "2019-10-22T19:32:31.908628Z", "url": "https://files.pythonhosted.org/packages/75/d6/fe0f21ed44e1e95cefd599e436278daa9a61e4fbc13b09a444fad6a0496c/nebuchadnezzar-9.2.1-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "9.3.0": [ { "comment_text": "", "digests": { "md5": "b8bccaf04a2d5abea9f2098af61b9b89", "sha256": "cce432b718c457d9dd724af7539add729425aece523c7a3759ada50f420387f0" }, "downloads": -1, "filename": "nebuchadnezzar-9.3.0-py3-none-any.whl", "has_sig": false, "md5_digest": "b8bccaf04a2d5abea9f2098af61b9b89", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 97789, "upload_time": "2019-10-24T15:28:39", "upload_time_iso_8601": "2019-10-24T15:28:39.863889Z", "url": "https://files.pythonhosted.org/packages/36/2c/a0bf62e8df627f417367d1eb6eba2669a5c8583f45f05dd2cf893ae46c8f/nebuchadnezzar-9.3.0-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "9.4.0": [ { "comment_text": "", "digests": { "md5": "d9993b1e4ae9eaa1198b530277cb5b78", "sha256": "a7f88c59ee8c890077c050f371ea0f8eff0fdebf64e13697ea585343e05fd315" }, "downloads": -1, "filename": "nebuchadnezzar-9.4.0-py3-none-any.whl", "has_sig": false, "md5_digest": "d9993b1e4ae9eaa1198b530277cb5b78", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 97922, "upload_time": "2019-11-05T22:33:52", "upload_time_iso_8601": "2019-11-05T22:33:52.550778Z", "url": "https://files.pythonhosted.org/packages/6c/48/99c0e234547ae225dc018da61114ed230afb43be9173b57c393a4198a381/nebuchadnezzar-9.4.0-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "9.5.1": [ { "comment_text": "", "digests": { "md5": "6e7dfb55da72c447e72341fecf633583", "sha256": "a3d32f10276423d71242b88c2e105cdbe75236302187ea31b2572270b91a5b30" }, "downloads": -1, "filename": "nebuchadnezzar-9.5.1-py3-none-any.whl", "has_sig": false, "md5_digest": "6e7dfb55da72c447e72341fecf633583", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 99284, "upload_time": "2020-01-16T19:41:14", "upload_time_iso_8601": "2020-01-16T19:41:14.500719Z", "url": "https://files.pythonhosted.org/packages/12/80/5d6bb8f85c9a3bdbbeeaa6d8cec1465852151ce5ccd04b0558d85134d351/nebuchadnezzar-9.5.1-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "9.6.0": [ { "comment_text": "", "digests": { "md5": "adfa1736e3d9fc10c6dcccfc14572813", "sha256": "46b27d05a6d6943d946f94cdbfa7c965842ab20008d2f27e9445af2988f7f63b" }, "downloads": -1, "filename": "nebuchadnezzar-9.6.0-py3-none-any.whl", "has_sig": false, "md5_digest": "adfa1736e3d9fc10c6dcccfc14572813", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 99458, "upload_time": "2020-01-22T18:49:25", "upload_time_iso_8601": "2020-01-22T18:49:25.452752Z", "url": "https://files.pythonhosted.org/packages/0b/ca/2235578c81ed250b4d0c47beaa737f8f79f0c21dfe3ea71ee61330b65597/nebuchadnezzar-9.6.0-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "9.6.1": [ { "comment_text": "", "digests": { "md5": "73c3a81cf369d1ac75c76daf7564a944", "sha256": "2070db1f3bfe0265d5d269ac59b2e9497a867ac69044315265611101b7f9aeea" }, "downloads": -1, "filename": "nebuchadnezzar-9.6.1-py3-none-any.whl", "has_sig": false, "md5_digest": "73c3a81cf369d1ac75c76daf7564a944", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 99843, "upload_time": "2020-05-06T14:19:06", "upload_time_iso_8601": "2020-05-06T14:19:06.124228Z", "url": "https://files.pythonhosted.org/packages/4e/84/6695c585022ada1f8ab182f54a3f5c670c6f47f8b60c7e3fee6a1ff908a6/nebuchadnezzar-9.6.1-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "9.6.2": [ { "comment_text": "", "digests": { "md5": "fea4628e5d47b99e4d3e41551bc67ea6", "sha256": "8a448f67926c2fc1bc5428bb5397bf40bc007a8c1e7e21a3ffab682a89d2a881" }, "downloads": -1, "filename": "nebuchadnezzar-9.6.2-py3-none-any.whl", "has_sig": false, "md5_digest": "fea4628e5d47b99e4d3e41551bc67ea6", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 99858, "upload_time": "2020-05-06T14:47:30", "upload_time_iso_8601": "2020-05-06T14:47:30.346006Z", "url": "https://files.pythonhosted.org/packages/d7/9d/b60802cc91b96e8aa839a3ef5c1a796844a79a858484d20bf932accb65bf/nebuchadnezzar-9.6.2-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "9.7.0": [ { "comment_text": "", "digests": { "md5": "c4871659d8398fbcffc08bcbf378e30a", "sha256": "5076fb0f78ca2406f3bab4edb5f6b813a982161676d8bbe48a83cdd2675fabb6" }, "downloads": -1, "filename": "nebuchadnezzar-9.7.0-py3-none-any.whl", "has_sig": false, "md5_digest": "c4871659d8398fbcffc08bcbf378e30a", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 101737, "upload_time": "2020-05-20T21:15:14", "upload_time_iso_8601": "2020-05-20T21:15:14.482124Z", "url": "https://files.pythonhosted.org/packages/91/38/a34cfa5fcce9daadc6f21f3699cdee5fb42b272face2e9351fd7b278f8a8/nebuchadnezzar-9.7.0-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "9.8.0": [ { "comment_text": "", "digests": { "md5": "d6f2aa1437e4eff5d2bbde382b1d364e", "sha256": "72147ba01638de1c7c1e8c79d9f5ad5892fc2e0d7f5ba86f8f785bd772fe5dc5" }, "downloads": -1, "filename": "nebuchadnezzar-9.8.0-py3-none-any.whl", "has_sig": false, "md5_digest": "d6f2aa1437e4eff5d2bbde382b1d364e", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 120148, "upload_time": "2020-06-11T21:00:28", "upload_time_iso_8601": "2020-06-11T21:00:28.007219Z", "url": "https://files.pythonhosted.org/packages/a0/56/946bf7394b621b59b3b0d65faa03454b5126ad878cf05b04ac62bbe74fc3/nebuchadnezzar-9.8.0-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "9.8.1": [ { "comment_text": "", "digests": { "md5": "b3177717d9731e26e1a78294df30944c", "sha256": "0ccac9356df7f6ba412b6ce7d243e06bc983053d07a1fc76772878d141c87a5f" }, "downloads": -1, "filename": "nebuchadnezzar-9.8.1-py3-none-any.whl", "has_sig": false, "md5_digest": "b3177717d9731e26e1a78294df30944c", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 120166, "upload_time": "2020-07-24T16:13:07", "upload_time_iso_8601": "2020-07-24T16:13:07.907045Z", "url": "https://files.pythonhosted.org/packages/49/8b/ec373b16face8452f181295c3961a51b3ce542fab55909b364142c3cbce3/nebuchadnezzar-9.8.1-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "9.8.10": [ { "comment_text": "", "digests": { "md5": "c37d1e198bcca84385ffb6b31e07b195", "sha256": "8c1a4e4c6559badf1be74cc516522f1661196c69dd419ffb0268d3ed381d7ca0" }, "downloads": -1, "filename": "nebuchadnezzar-9.8.10-py3-none-any.whl", "has_sig": false, "md5_digest": "c37d1e198bcca84385ffb6b31e07b195", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 132725, "upload_time": "2021-06-03T14:20:31", "upload_time_iso_8601": "2021-06-03T14:20:31.736869Z", "url": "https://files.pythonhosted.org/packages/fc/13/d3e753515353c6c393b757fb1cff7e16810f4de4b60cc04d95426d8f2e92/nebuchadnezzar-9.8.10-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "9.8.11": [ { "comment_text": "", "digests": { "md5": "bd5856e2464efb693ab58d77eaa0df5c", "sha256": "628668498d8b88da6f5ede7227ba38ad313c144dfe9a557efe9733ab00ceabac" }, "downloads": -1, "filename": "nebuchadnezzar-9.8.11-py3-none-any.whl", "has_sig": false, "md5_digest": "bd5856e2464efb693ab58d77eaa0df5c", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 132722, "upload_time": "2021-07-13T18:49:41", "upload_time_iso_8601": "2021-07-13T18:49:41.598586Z", "url": "https://files.pythonhosted.org/packages/1e/9d/b85f99467983f900662294ba45ae2f48f9f0dac577eb0be06579cf4aa06e/nebuchadnezzar-9.8.11-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "9.8.12": [ { "comment_text": "", "digests": { "md5": "d4c301e9e908bb45be5def440be8ec57", "sha256": "1b19ea6d3558f19e735b4ae288d9d82ef6a5d95717155689114ed3bdfd40f0a9" }, "downloads": -1, "filename": "nebuchadnezzar-9.8.12-py3-none-any.whl", "has_sig": false, "md5_digest": "d4c301e9e908bb45be5def440be8ec57", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 132723, "upload_time": "2021-07-14T15:15:25", "upload_time_iso_8601": "2021-07-14T15:15:25.615104Z", "url": "https://files.pythonhosted.org/packages/3d/73/0763573d3c6b45d0fd20a860963bed7a1ea53c7a615adb78001a767b0d0b/nebuchadnezzar-9.8.12-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "9.8.13": [ { "comment_text": "", "digests": { "md5": "a9e205e079fe3498cfe79f40b4a09405", "sha256": "7570b1d448335e736e801d0b1209560e743ac2897ff557ea712c47408494a56a" }, "downloads": -1, "filename": "nebuchadnezzar-9.8.13-py3-none-any.whl", "has_sig": false, "md5_digest": "a9e205e079fe3498cfe79f40b4a09405", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 132723, "upload_time": "2021-07-28T14:48:08", "upload_time_iso_8601": "2021-07-28T14:48:08.646824Z", "url": "https://files.pythonhosted.org/packages/e0/a7/82cba9d568eb251de74d27349bfc1efb52cb847095d2c0e30f38c5a7126d/nebuchadnezzar-9.8.13-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "9.8.14": [ { "comment_text": "", "digests": { "md5": "94a262bf9c5ac499bc51f727b7e372e5", "sha256": "bf4d073015532b5d84a13df578e2bbf9a09aa9de7c295f51cb82b7e3dfadee63" }, "downloads": -1, "filename": "nebuchadnezzar-9.8.14-py3-none-any.whl", "has_sig": false, "md5_digest": "94a262bf9c5ac499bc51f727b7e372e5", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 132722, "upload_time": "2021-08-11T18:38:57", "upload_time_iso_8601": "2021-08-11T18:38:57.165926Z", "url": "https://files.pythonhosted.org/packages/a8/be/cbf36c34bef738c5796e0b45c9744583453b3f99a75756f9e2a1cd90ba06/nebuchadnezzar-9.8.14-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "9.8.15": [ { "comment_text": "", "digests": { "md5": "05538f9cb53472a22f552bbc98d84471", "sha256": "c94e22b2fe044afd2e859128e5a3a11db9624385310529e77bb6275f29e4b0d9" }, "downloads": -1, "filename": "nebuchadnezzar-9.8.15-py3-none-any.whl", "has_sig": false, "md5_digest": "05538f9cb53472a22f552bbc98d84471", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 132721, "upload_time": "2021-08-12T14:26:52", "upload_time_iso_8601": "2021-08-12T14:26:52.019823Z", "url": "https://files.pythonhosted.org/packages/31/66/540cbb62fbfbff3a6a4ac1e09f9f898b956cf02226d3ccdd47b9bc808c02/nebuchadnezzar-9.8.15-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "9.8.16": [ { "comment_text": "", "digests": { "md5": "cf4de869611063b3ee51a768795efd64", "sha256": "24b292347e124c7e885682ed14f3355b053258a42bbc65cb712523cf7c50a61b" }, "downloads": -1, "filename": "nebuchadnezzar-9.8.16-py3-none-any.whl", "has_sig": false, "md5_digest": "cf4de869611063b3ee51a768795efd64", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 132751, "upload_time": "2021-08-13T21:18:50", "upload_time_iso_8601": "2021-08-13T21:18:50.360264Z", "url": "https://files.pythonhosted.org/packages/5d/dd/208ee1b042cc3ae4db07918f788ac75a5f28e64fa3316e5a845850cb0473/nebuchadnezzar-9.8.16-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "9.8.2": [ { "comment_text": "", "digests": { "md5": "837e8f46a479f2ab584d2a496a28d0d9", "sha256": "5d30dc78280dd4168b0e0a5b819de506d6ed4aaeb62743e59d040a4ec20fd927" }, "downloads": -1, "filename": "nebuchadnezzar-9.8.2-py3-none-any.whl", "has_sig": false, "md5_digest": "837e8f46a479f2ab584d2a496a28d0d9", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 120174, "upload_time": "2020-10-08T17:24:56", "upload_time_iso_8601": "2020-10-08T17:24:56.500790Z", "url": "https://files.pythonhosted.org/packages/76/b3/ebff94821c93c4db5a91ceb534cf4dcadc15fcc6faa772fb8472d8ce1340/nebuchadnezzar-9.8.2-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "9.8.3": [ { "comment_text": "", "digests": { "md5": "e552816a3dc09e4bb97129137323c99a", "sha256": "525709bd4eb9ce4d86a3556d67eed0ea15a8cf31fd3c3e6050cfbda0b0ef022a" }, "downloads": -1, "filename": "nebuchadnezzar-9.8.3-py3-none-any.whl", "has_sig": false, "md5_digest": "e552816a3dc09e4bb97129137323c99a", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 120176, "upload_time": "2020-12-01T15:51:33", "upload_time_iso_8601": "2020-12-01T15:51:33.784518Z", "url": "https://files.pythonhosted.org/packages/97/35/c23237ef7bc3fe679cf8ff135f8a2d718918c3e4ce3a89c8a1a8af9128c8/nebuchadnezzar-9.8.3-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "9.8.4": [ { "comment_text": "", "digests": { "md5": "97a533550276ffd04a40bd0c05a9e4b4", "sha256": "570256b3728386e4bc74d5982c118c82d496bca231f7bf66c4a0a4be2ee1a4a3" }, "downloads": -1, "filename": "nebuchadnezzar-9.8.4-py3-none-any.whl", "has_sig": false, "md5_digest": "97a533550276ffd04a40bd0c05a9e4b4", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 141359, "upload_time": "2020-12-10T20:06:49", "upload_time_iso_8601": "2020-12-10T20:06:49.024980Z", "url": "https://files.pythonhosted.org/packages/88/80/3781306f82960ac6b434e2ce748f13e4cb09638e7df432bb9d71c08b3d00/nebuchadnezzar-9.8.4-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "9.8.5": [ { "comment_text": "", "digests": { "md5": "52b62f211cac8c079fc5ef0cf00df8aa", "sha256": "0369227fbfc4f26bebc29b2f5ad80ab28800df9368a43676f50e55b7c39c4c5e" }, "downloads": -1, "filename": "nebuchadnezzar-9.8.5-py3-none-any.whl", "has_sig": false, "md5_digest": "52b62f211cac8c079fc5ef0cf00df8aa", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 141354, "upload_time": "2020-12-16T20:30:02", "upload_time_iso_8601": "2020-12-16T20:30:02.031926Z", "url": "https://files.pythonhosted.org/packages/62/7e/31b50cb807780e1a2e19c774ea8ab3bba22b1bb4cd743a7f36bca067cdd4/nebuchadnezzar-9.8.5-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "9.8.6": [ { "comment_text": "", "digests": { "md5": "45fd524dc33af1c786d790b7731c5007", "sha256": "3e1e9470137eafab7becca1b6030a4d5d9e4f2295079166e2462bc956176346c" }, "downloads": -1, "filename": "nebuchadnezzar-9.8.6-py3-none-any.whl", "has_sig": false, "md5_digest": "45fd524dc33af1c786d790b7731c5007", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 131923, "upload_time": "2021-01-05T23:10:44", "upload_time_iso_8601": "2021-01-05T23:10:44.660545Z", "url": "https://files.pythonhosted.org/packages/04/93/d2c5f7c53866a0c2ff8871f2b63a1fbea8fa53df935bed81fec45bb91489/nebuchadnezzar-9.8.6-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "9.8.7": [ { "comment_text": "", "digests": { "md5": "e0bed38e93b9e800fd109fb98b416be9", "sha256": "366bf48cae2774c92c49dc61f2bac71a887090af0df118473de92e4508d63e17" }, "downloads": -1, "filename": "nebuchadnezzar-9.8.7-py3-none-any.whl", "has_sig": false, "md5_digest": "e0bed38e93b9e800fd109fb98b416be9", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 132217, "upload_time": "2021-03-19T18:15:50", "upload_time_iso_8601": "2021-03-19T18:15:50.715092Z", "url": "https://files.pythonhosted.org/packages/1b/09/33493e2220896a0f50cd27cf182609865a7fe09f7e668f24a7c4d1533a4d/nebuchadnezzar-9.8.7-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "9.8.8": [ { "comment_text": "", "digests": { "md5": "3d84a52dd7346989d13bd7167b9b5d43", "sha256": "bda268a9a7fcd1111cdde773a5f2ee2fb505062b94d882ac84a2ae4f012af787" }, "downloads": -1, "filename": "nebuchadnezzar-9.8.8-py3-none-any.whl", "has_sig": false, "md5_digest": "3d84a52dd7346989d13bd7167b9b5d43", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 132684, "upload_time": "2021-04-16T15:31:04", "upload_time_iso_8601": "2021-04-16T15:31:04.730249Z", "url": "https://files.pythonhosted.org/packages/96/2b/d5d8f812fb5469b081ec775453c0338d5c290fba894d7f47f0e05f2cd83c/nebuchadnezzar-9.8.8-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "9.8.9": [ { "comment_text": "", "digests": { "md5": "775931f103915ec074dc240cf09dd20b", "sha256": "1f702607fa688783b2b8842ea35adf5e85049e8d83a6c564aab112aee349c2e3" }, "downloads": -1, "filename": "nebuchadnezzar-9.8.9-py3-none-any.whl", "has_sig": false, "md5_digest": "775931f103915ec074dc240cf09dd20b", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 132695, "upload_time": "2021-05-14T17:19:17", "upload_time_iso_8601": "2021-05-14T17:19:17.741145Z", "url": "https://files.pythonhosted.org/packages/8a/28/f8cb8d5e1fa6a4eb026334b21a0fe53c13377312927264550738965370ed/nebuchadnezzar-9.8.9-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "9.9.1": [ { "comment_text": "", "digests": { "md5": "25b4168ba1b726bc72cc91ede0ff480a", "sha256": "3448df279d03b02e9be82b47b096104f7684d87a5e59f6f724a3ad04f2c22882" }, "downloads": -1, "filename": "nebuchadnezzar-9.9.1-py3-none-any.whl", "has_sig": false, "md5_digest": "25b4168ba1b726bc72cc91ede0ff480a", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 132857, "upload_time": "2021-08-30T20:52:52", "upload_time_iso_8601": "2021-08-30T20:52:52.591460Z", "url": "https://files.pythonhosted.org/packages/0d/be/c2fd1ed504925156e5ff89ab5090c0482ca746e56adb46541f7faf6a6dcf/nebuchadnezzar-9.9.1-py3-none-any.whl", "yanked": false, "yanked_reason": null } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "c58c26d3db8a1a043b473db4ab557317", "sha256": "e5e9d6a6046f73976a11d54eaf93665b73c096bef40d023016dcbe5cbb872a20" }, "downloads": -1, "filename": "nebuchadnezzar-9.13.1-py3-none-any.whl", "has_sig": false, "md5_digest": "c58c26d3db8a1a043b473db4ab557317", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 133035, "upload_time": "2022-02-09T19:25:00", "upload_time_iso_8601": "2022-02-09T19:25:00.504350Z", "url": "https://files.pythonhosted.org/packages/b1/2e/a810a8d73688f650665540e1221c402bbc8c460bb84fcef9594b7c48294f/nebuchadnezzar-9.13.1-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "vulnerabilities": [] }