nod


Namenod JSON
Version 1.9.3 PyPI version JSON
download
home_pageNone
SummaryPython bindings for the nod library.
upload_time2024-06-21 20:34:19
maintainerNone
docs_urlNone
authorHenrique Gemignani
requires_python>=3.8
licenseLicense :: OSI Approved :: MIT License
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # py-nod
Python 3.8 bindings for the [NOD](https://gitlab.axiodl.com/AxioDL/nod), a library for traversing, dumping, and authoring
GameCube and Wii optical disc images.


## Usage

### Unpacking
```python
import nod

def progress_callback(path, progress):
    if args.verbose:
        print("Extraction {:.0%} Complete; Current node: {}".format(progress, path))

context = nod.ExtractionContext()
context.set_progress_callback(progress_callback)

try:
    disc, is_wii = nod.open_disc_from_image("game.iso")
    data_partition = disc.get_data_partition()
    if not data_partition:
        raise RuntimeError("Could not find a data partition in the disc.")
    data_partition.extract_to_directory("dir_out", context)
except RuntimeError as e:
    raise Exception("Could not extract disc at 'game.iso' to 'dir_out': {}".format(e))

```

### Packing

```python
import nod

if nod.DiscBuilderGCN.calculate_total_size_required("dir_out") is None:
    raise Exception("Image built with given directory would pass the maximum size.")

def fprogress_callback(progress: float, name: str, bytes: int):
    print("\r" + " " * 100, end="")
    print("\r{:.0%} {} {} B".format(progress, name, bytes), flush=True)

disc_builder = nod.DiscBuilderGCN("game.iso", fprogress_callback)
try:
    disc_builder.build_from_directory("dir_out")    
except RuntimeError as e:
    raise Exception("Failure building the image: {}".format(e))


```

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "nod",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": null,
    "keywords": null,
    "author": "Henrique Gemignani",
    "author_email": null,
    "download_url": "https://files.pythonhosted.org/packages/9d/ba/cb919497683ad78632985b4b3754a6d25fec8d4a2ac61222e0638e8633e8/nod-1.9.3.tar.gz",
    "platform": null,
    "description": "# py-nod\nPython 3.8 bindings for the [NOD](https://gitlab.axiodl.com/AxioDL/nod), a library for traversing, dumping, and authoring\nGameCube and Wii optical disc images.\n\n\n## Usage\n\n### Unpacking\n```python\nimport nod\n\ndef progress_callback(path, progress):\n    if args.verbose:\n        print(\"Extraction {:.0%} Complete; Current node: {}\".format(progress, path))\n\ncontext = nod.ExtractionContext()\ncontext.set_progress_callback(progress_callback)\n\ntry:\n    disc, is_wii = nod.open_disc_from_image(\"game.iso\")\n    data_partition = disc.get_data_partition()\n    if not data_partition:\n        raise RuntimeError(\"Could not find a data partition in the disc.\")\n    data_partition.extract_to_directory(\"dir_out\", context)\nexcept RuntimeError as e:\n    raise Exception(\"Could not extract disc at 'game.iso' to 'dir_out': {}\".format(e))\n\n```\n\n### Packing\n\n```python\nimport nod\n\nif nod.DiscBuilderGCN.calculate_total_size_required(\"dir_out\") is None:\n    raise Exception(\"Image built with given directory would pass the maximum size.\")\n\ndef fprogress_callback(progress: float, name: str, bytes: int):\n    print(\"\\r\" + \" \" * 100, end=\"\")\n    print(\"\\r{:.0%} {} {} B\".format(progress, name, bytes), flush=True)\n\ndisc_builder = nod.DiscBuilderGCN(\"game.iso\", fprogress_callback)\ntry:\n    disc_builder.build_from_directory(\"dir_out\")    \nexcept RuntimeError as e:\n    raise Exception(\"Failure building the image: {}\".format(e))\n\n\n```\n",
    "bugtrack_url": null,
    "license": "License :: OSI Approved :: MIT License",
    "summary": "Python bindings for the nod library.",
    "version": "1.9.3",
    "project_urls": {
        "Homepage": "https://github.com/henriquegemignani/py-nod"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "88a002122c0800c8ee44f074213cba3957f8505f059992ff25cc52d46dedd49e",
                "md5": "4f75b9e161ac332b111bb9960025fac4",
                "sha256": "1d5569ef2f646d3fe93a56cbda4a2edcccce3c1f701c6db5fff8f65a15a33674"
            },
            "downloads": -1,
            "filename": "nod-1.9.3-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4f75b9e161ac332b111bb9960025fac4",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 506758,
            "upload_time": "2024-06-21T20:33:40",
            "upload_time_iso_8601": "2024-06-21T20:33:40.351225Z",
            "url": "https://files.pythonhosted.org/packages/88/a0/02122c0800c8ee44f074213cba3957f8505f059992ff25cc52d46dedd49e/nod-1.9.3-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "66a30ac7dc6028abe7b4d69d9a7e822b6e5dffbab6f562fff9ac7882ef8654a3",
                "md5": "5fb0be53e141a7208088f300bcd5afcc",
                "sha256": "d5056234da350aad7d6c29c373af9bc49d6789bed67fa52bd2adbbf317d3f5e3"
            },
            "downloads": -1,
            "filename": "nod-1.9.3-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "5fb0be53e141a7208088f300bcd5afcc",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 477713,
            "upload_time": "2024-06-21T20:33:42",
            "upload_time_iso_8601": "2024-06-21T20:33:42.757285Z",
            "url": "https://files.pythonhosted.org/packages/66/a3/0ac7dc6028abe7b4d69d9a7e822b6e5dffbab6f562fff9ac7882ef8654a3/nod-1.9.3-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a09474663a8e401e78e30784ec69b397cc8ee3da058e2da6645e008da165ef4b",
                "md5": "0b0f2cde04d7521c33e19e4b9f700e88",
                "sha256": "18c41b6ad8c5fd9029c682f7825e200bb87075f2793f6cd67d4024ed4912c9f5"
            },
            "downloads": -1,
            "filename": "nod-1.9.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0b0f2cde04d7521c33e19e4b9f700e88",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1102247,
            "upload_time": "2024-06-21T20:33:44",
            "upload_time_iso_8601": "2024-06-21T20:33:44.299391Z",
            "url": "https://files.pythonhosted.org/packages/a0/94/74663a8e401e78e30784ec69b397cc8ee3da058e2da6645e008da165ef4b/nod-1.9.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "65f5f57bcef95b1d95adde836f1f67dd061791adf531e6aa160440d863519d37",
                "md5": "a488218ac244de87d1b16d6cce0c7c63",
                "sha256": "cbf2fde892fec82268b7f3ed679301a2d9ab369c27319d4cd85bf067db574e8a"
            },
            "downloads": -1,
            "filename": "nod-1.9.3-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "a488218ac244de87d1b16d6cce0c7c63",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 11565104,
            "upload_time": "2024-06-21T20:33:46",
            "upload_time_iso_8601": "2024-06-21T20:33:46.458903Z",
            "url": "https://files.pythonhosted.org/packages/65/f5/f57bcef95b1d95adde836f1f67dd061791adf531e6aa160440d863519d37/nod-1.9.3-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8d2f9626892b860bc1fdccdc1d212ae362f462a1adc0477e5698fe8e5d05f578",
                "md5": "d878f61cebd9ed3f9bfaa04a5e0cd2f7",
                "sha256": "9e2db7820e0cc2187d7340f5b4da5fb3729dbdc4a7c23f88f0da5129118985f3"
            },
            "downloads": -1,
            "filename": "nod-1.9.3-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d878f61cebd9ed3f9bfaa04a5e0cd2f7",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 507416,
            "upload_time": "2024-06-21T20:33:48",
            "upload_time_iso_8601": "2024-06-21T20:33:48.461971Z",
            "url": "https://files.pythonhosted.org/packages/8d/2f/9626892b860bc1fdccdc1d212ae362f462a1adc0477e5698fe8e5d05f578/nod-1.9.3-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e86a3073e9ebd8aae661588b7627b6d03924d1a9a3a000f3165ee2a8e5cb1af0",
                "md5": "2935ecaeff2b6c1b5c9a2ad4cecfdee9",
                "sha256": "b3d6b7f87ff7b749a61409e7d31f4a2948562380198fe5c9f9bfbb2337d8167c"
            },
            "downloads": -1,
            "filename": "nod-1.9.3-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "2935ecaeff2b6c1b5c9a2ad4cecfdee9",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 478007,
            "upload_time": "2024-06-21T20:33:50",
            "upload_time_iso_8601": "2024-06-21T20:33:50.285790Z",
            "url": "https://files.pythonhosted.org/packages/e8/6a/3073e9ebd8aae661588b7627b6d03924d1a9a3a000f3165ee2a8e5cb1af0/nod-1.9.3-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0992ea67a0b0e2cb0b27b66718c568533521eb5ae276878598d12fa1f4d6618c",
                "md5": "1d931ad42c5339a2cb5cabaaeaf0470b",
                "sha256": "221144e18a1d0d016ed3a2c098e5310437659ae85444b626f92af80456763783"
            },
            "downloads": -1,
            "filename": "nod-1.9.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1d931ad42c5339a2cb5cabaaeaf0470b",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1119369,
            "upload_time": "2024-06-21T20:33:52",
            "upload_time_iso_8601": "2024-06-21T20:33:52.076933Z",
            "url": "https://files.pythonhosted.org/packages/09/92/ea67a0b0e2cb0b27b66718c568533521eb5ae276878598d12fa1f4d6618c/nod-1.9.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d19ed230bd48b49d64bb085823790e52442625a4c2532afb9b8d278b44c35642",
                "md5": "67043cd60f05a4f6afbcfa59463dfea6",
                "sha256": "90e7a0021b0dcbc6132605cec993bb539904062a4abf450edd6fc19266bbd9e3"
            },
            "downloads": -1,
            "filename": "nod-1.9.3-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "67043cd60f05a4f6afbcfa59463dfea6",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 11565170,
            "upload_time": "2024-06-21T20:33:54",
            "upload_time_iso_8601": "2024-06-21T20:33:54.206213Z",
            "url": "https://files.pythonhosted.org/packages/d1/9e/d230bd48b49d64bb085823790e52442625a4c2532afb9b8d278b44c35642/nod-1.9.3-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ec6f37399d996af95181594c03098e8930e824d40cfa0f7cf44200c3e75da59e",
                "md5": "bcd06244cf46b892a39b793d31cb59c5",
                "sha256": "c375ad9d2712266a18a2dcbd97a396b446af06a3c82ecbc850aa25cba8a979c8"
            },
            "downloads": -1,
            "filename": "nod-1.9.3-cp312-cp312-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "bcd06244cf46b892a39b793d31cb59c5",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 507764,
            "upload_time": "2024-06-21T20:33:56",
            "upload_time_iso_8601": "2024-06-21T20:33:56.722152Z",
            "url": "https://files.pythonhosted.org/packages/ec/6f/37399d996af95181594c03098e8930e824d40cfa0f7cf44200c3e75da59e/nod-1.9.3-cp312-cp312-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d3ddba4b8665971bab7eb0b13230730aaaf3f2ec5275391c1a258a1e01816774",
                "md5": "5ff863cfc3e2e3470ef90609d8d3be40",
                "sha256": "af700d544286454adaa7aeea62f2d64e363aacc8878e8da2edde102f74ea7040"
            },
            "downloads": -1,
            "filename": "nod-1.9.3-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "5ff863cfc3e2e3470ef90609d8d3be40",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 478027,
            "upload_time": "2024-06-21T20:33:58",
            "upload_time_iso_8601": "2024-06-21T20:33:58.044682Z",
            "url": "https://files.pythonhosted.org/packages/d3/dd/ba4b8665971bab7eb0b13230730aaaf3f2ec5275391c1a258a1e01816774/nod-1.9.3-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "da6ce8e9fc82fcfdfbc09ccdd52ac57254346638e45d8f87f00633053b5f8727",
                "md5": "214a93bd4dc5fd38a5ca8d7ac603b7d2",
                "sha256": "9c87a033cb25be33f2b5de41cba720d3e529faa9c409bf9ca94427c602c5a215"
            },
            "downloads": -1,
            "filename": "nod-1.9.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "214a93bd4dc5fd38a5ca8d7ac603b7d2",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1129067,
            "upload_time": "2024-06-21T20:33:59",
            "upload_time_iso_8601": "2024-06-21T20:33:59.338473Z",
            "url": "https://files.pythonhosted.org/packages/da/6c/e8e9fc82fcfdfbc09ccdd52ac57254346638e45d8f87f00633053b5f8727/nod-1.9.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e4a524d17aed001e7128e4d73eac872bddf234c6c059b3253c4028b9217e38bd",
                "md5": "f6bcdfc5f9bb60bae0d5ced9b72f8f2a",
                "sha256": "e91602a43ad39df7ce44577b91f4f82d8f7b95e27c94e32262aa1ac7997b78a8"
            },
            "downloads": -1,
            "filename": "nod-1.9.3-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "f6bcdfc5f9bb60bae0d5ced9b72f8f2a",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 11565313,
            "upload_time": "2024-06-21T20:34:00",
            "upload_time_iso_8601": "2024-06-21T20:34:00.893794Z",
            "url": "https://files.pythonhosted.org/packages/e4/a5/24d17aed001e7128e4d73eac872bddf234c6c059b3253c4028b9217e38bd/nod-1.9.3-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1e0870cf469b16a532c965986af10af4fe132e3990d169044d061bad6aac5b8b",
                "md5": "d019706a5b97b0081d5f48f8bacba5b1",
                "sha256": "474a37feef026e19482ff2fbbb75c09b230afe60de6bcf85dd6e6e9ca2975730"
            },
            "downloads": -1,
            "filename": "nod-1.9.3-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d019706a5b97b0081d5f48f8bacba5b1",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 507969,
            "upload_time": "2024-06-21T20:34:03",
            "upload_time_iso_8601": "2024-06-21T20:34:03.601214Z",
            "url": "https://files.pythonhosted.org/packages/1e/08/70cf469b16a532c965986af10af4fe132e3990d169044d061bad6aac5b8b/nod-1.9.3-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4da3198a97c4f92675e34607c9826d4d2d96ed8ddf6c10125f4b43faae1796ab",
                "md5": "9b01e714a387c3511e435535484f4dea",
                "sha256": "d925fe34e895be7396b4748d3eb21f34d4520b55928c94deea4f45ec4b8b0e1f"
            },
            "downloads": -1,
            "filename": "nod-1.9.3-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "9b01e714a387c3511e435535484f4dea",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 313121,
            "upload_time": "2024-06-21T20:34:05",
            "upload_time_iso_8601": "2024-06-21T20:34:05.387458Z",
            "url": "https://files.pythonhosted.org/packages/4d/a3/198a97c4f92675e34607c9826d4d2d96ed8ddf6c10125f4b43faae1796ab/nod-1.9.3-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1b8fe37922165c38a26bc123319b31fdd8eb8b55e1ae325e63c829b4223466d9",
                "md5": "1d4c56da66b6105646f8ad5d1603119d",
                "sha256": "c4aa287a0124304d2839c15df701873cbcd9b8056c2ea895529907bc6b4b52b9"
            },
            "downloads": -1,
            "filename": "nod-1.9.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1d4c56da66b6105646f8ad5d1603119d",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1108002,
            "upload_time": "2024-06-21T20:34:06",
            "upload_time_iso_8601": "2024-06-21T20:34:06.727833Z",
            "url": "https://files.pythonhosted.org/packages/1b/8f/e37922165c38a26bc123319b31fdd8eb8b55e1ae325e63c829b4223466d9/nod-1.9.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c26a662d872bc9bbf1ffde21e3d476ee4a2c9f1bcc43b36ed695b03f7b506f31",
                "md5": "6e44bbfa56c2b4a9d8f93fc051c83a88",
                "sha256": "077c2a87a3cbadb6cd059f9b4ca7abdea26c0b5b37d2c8299a11f144408f13c0"
            },
            "downloads": -1,
            "filename": "nod-1.9.3-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "6e44bbfa56c2b4a9d8f93fc051c83a88",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 11565895,
            "upload_time": "2024-06-21T20:34:08",
            "upload_time_iso_8601": "2024-06-21T20:34:08.412509Z",
            "url": "https://files.pythonhosted.org/packages/c2/6a/662d872bc9bbf1ffde21e3d476ee4a2c9f1bcc43b36ed695b03f7b506f31/nod-1.9.3-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "45c3ae71bb699c6d8e3fba8b7784744d87550afba60c55755c22ef132ba7a107",
                "md5": "a5cb12f939f4b29744e333e887a20848",
                "sha256": "0522ddcc895d84b17570f69c47a29c39023f4addf10b8f37aa6fd2a03f3f8d42"
            },
            "downloads": -1,
            "filename": "nod-1.9.3-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a5cb12f939f4b29744e333e887a20848",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 507550,
            "upload_time": "2024-06-21T20:34:10",
            "upload_time_iso_8601": "2024-06-21T20:34:10.437086Z",
            "url": "https://files.pythonhosted.org/packages/45/c3/ae71bb699c6d8e3fba8b7784744d87550afba60c55755c22ef132ba7a107/nod-1.9.3-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d5bea75bfe1c1efca6224f354a36699e670a07e53fdba62c3bd35f5cb4080e0e",
                "md5": "8692b1b17f5b5402fed64413fbfcf2c0",
                "sha256": "0d633282b65b1a7727bf441b942dde1c7ff6671b891ea2ba2f5c25df9ca1ba6c"
            },
            "downloads": -1,
            "filename": "nod-1.9.3-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "8692b1b17f5b5402fed64413fbfcf2c0",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 478284,
            "upload_time": "2024-06-21T20:34:12",
            "upload_time_iso_8601": "2024-06-21T20:34:12.287963Z",
            "url": "https://files.pythonhosted.org/packages/d5/be/a75bfe1c1efca6224f354a36699e670a07e53fdba62c3bd35f5cb4080e0e/nod-1.9.3-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "aab2cac87f7a8b80e30b4884a3fb28bb1404fe258d39f2f4ce76f4f29151a21e",
                "md5": "c3e8e3c49ab91928d79de4edf5a3b5f5",
                "sha256": "0e611045be2e9df2161cda58911306c395135e9653c08acb140a267a62356b8f"
            },
            "downloads": -1,
            "filename": "nod-1.9.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c3e8e3c49ab91928d79de4edf5a3b5f5",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1105296,
            "upload_time": "2024-06-21T20:34:14",
            "upload_time_iso_8601": "2024-06-21T20:34:14.425441Z",
            "url": "https://files.pythonhosted.org/packages/aa/b2/cac87f7a8b80e30b4884a3fb28bb1404fe258d39f2f4ce76f4f29151a21e/nod-1.9.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d1f37e640f4da06a224c0ff4e55f09c8bfe50eb1164541bec698c426bdab068c",
                "md5": "8467c67f26548fc1315f19b9e9e7fb6e",
                "sha256": "3483d7c55d17400f59873aad249edce45079dad71ca79693502fa331dba9ebc0"
            },
            "downloads": -1,
            "filename": "nod-1.9.3-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "8467c67f26548fc1315f19b9e9e7fb6e",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 11565715,
            "upload_time": "2024-06-21T20:34:16",
            "upload_time_iso_8601": "2024-06-21T20:34:16.661715Z",
            "url": "https://files.pythonhosted.org/packages/d1/f3/7e640f4da06a224c0ff4e55f09c8bfe50eb1164541bec698c426bdab068c/nod-1.9.3-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9dbacb919497683ad78632985b4b3754a6d25fec8d4a2ac61222e0638e8633e8",
                "md5": "8e76d91283cee8b6993adcac2c0766b1",
                "sha256": "b17ccf8daa088ef4f8e87c3125fa82fae0a68612b0da44bf3a282a93f67c3a04"
            },
            "downloads": -1,
            "filename": "nod-1.9.3.tar.gz",
            "has_sig": false,
            "md5_digest": "8e76d91283cee8b6993adcac2c0766b1",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 1034331,
            "upload_time": "2024-06-21T20:34:19",
            "upload_time_iso_8601": "2024-06-21T20:34:19.369173Z",
            "url": "https://files.pythonhosted.org/packages/9d/ba/cb919497683ad78632985b4b3754a6d25fec8d4a2ac61222e0638e8633e8/nod-1.9.3.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-06-21 20:34:19",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "henriquegemignani",
    "github_project": "py-nod",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "nod"
}
        
Elapsed time: 0.23265s