neo-mamba


Nameneo-mamba JSON
Version 2.6.0 PyPI version JSON
download
home_pageNone
SummaryPython SDK for the NEO 3 blockchain
upload_time2024-03-20 18:50:14
maintainerNone
docs_urlNone
authorNone
requires_python<=3.13,>=3.11.0
licenseCopyright (c) 2019-present COZ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
keywords neo neo3 blockchain sdk
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            .. image:: .github/resources/images/logo.png
    :width: 400 px
    :align: center

neo-mamba
-----------

.. image:: https://img.shields.io/github/actions/workflow/status/CityOfZion/neo-mamba/validate-pr-commit.yml?branch=master
  :target: https://shields.io/

.. image:: https://coveralls.io/repos/github/CityOfZion/neo-mamba/badge.svg?branch=master
  :target: https://coveralls.io/github/CityOfZion/neo-mamba?branch=master

.. image:: http://www.mypy-lang.org/static/mypy_badge.svg
  :target: http://mypy-lang.org/

.. image:: https://img.shields.io/badge/code%20style-black-000000.svg
   :target: https://github.com/psf/black

.. image:: https://img.shields.io/python/required-version-toml?tomlFilePath=https://raw.githubusercontent.com/CityOfZion/neo-mamba/master/pyproject.toml
   :target: https://pypi.org/project/neo-mamba

.. image:: .github/resources/images/platformbadge.svg
   :target: https://github.com/CityOfZion/neo-mamba

This project is for you if you're looking to use Python to

* Deploy smart contracts
* Transfer NEP-11 and NEP-17 tokens
* Vote for your favourite consensus node
* Interact with on-chain smart contracts
* Manage wallets
* Build and sign specialized transactions
* and more..

This SDK provides building blocks for Python developers to interact with the NEO blockchain without requiring to run a full node.
In order to interact with the chain and obtain information it relies heavily on RPC nodes. You can find a list of public RPC nodes `here <https://dora.coz.io/monitor>`_.

Please report any issues on `Github <https://github.com/CityOfZion/neo-mamba/issues>`_ or submit ideas how to improve the SDK.

Also check out our Python smart contract compiler `Boa <https://github.com/CityOfZion/neo3-boa>`_ !

Installation and usage
----------------------
Installation instructions, how to interact with smart contracts as well as API reference documentation can be found at
https://mamba.coz.io/

Developing or contributing
--------------------------
Install the requirements, modify the code and PR :-)
::

   pip install -e .[dev]

For larger changes consider opening an issue first to discuss the change. Below are a few guidelines for contributing

* The project uses `Black <https://github.com/psf/black>`_ for code formatting. PRs will fail if formatted incorrectly.
  You might want to `integrate <https://black.readthedocs.io/en/stable/integrations/editors.html>`_ ``black`` into your
  editor or run it manually with ``make black``.
* All public functions/classes must have docstrings.
* All your code must be typed. Test your typing with ``make type``. In rare cases it might be hard/impractical to add typing.
  Point it out if that is the case and add a short description why we could do without.
* Add tests that cover the newly added (or changed if applicable) code. Use ``make test`` and ``make coverage``.

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "neo-mamba",
    "maintainer": null,
    "docs_url": null,
    "requires_python": "<=3.13,>=3.11.0",
    "maintainer_email": "Erik van den Brink <erik@coz.io>",
    "keywords": "NEO, NEO3, blockchain, SDK",
    "author": null,
    "author_email": "Erik van den Brink <erik@coz.io>",
    "download_url": "https://files.pythonhosted.org/packages/3b/5a/146d247d1fa1d0e665e713516fbf1eeb56ffbafbd74fab81e12ab0dbccf9/neo-mamba-2.6.0.tar.gz",
    "platform": null,
    "description": ".. image:: .github/resources/images/logo.png\n    :width: 400 px\n    :align: center\n\nneo-mamba\n-----------\n\n.. image:: https://img.shields.io/github/actions/workflow/status/CityOfZion/neo-mamba/validate-pr-commit.yml?branch=master\n  :target: https://shields.io/\n\n.. image:: https://coveralls.io/repos/github/CityOfZion/neo-mamba/badge.svg?branch=master\n  :target: https://coveralls.io/github/CityOfZion/neo-mamba?branch=master\n\n.. image:: http://www.mypy-lang.org/static/mypy_badge.svg\n  :target: http://mypy-lang.org/\n\n.. image:: https://img.shields.io/badge/code%20style-black-000000.svg\n   :target: https://github.com/psf/black\n\n.. image:: https://img.shields.io/python/required-version-toml?tomlFilePath=https://raw.githubusercontent.com/CityOfZion/neo-mamba/master/pyproject.toml\n   :target: https://pypi.org/project/neo-mamba\n\n.. image:: .github/resources/images/platformbadge.svg\n   :target: https://github.com/CityOfZion/neo-mamba\n\nThis project is for you if you're looking to use Python to\n\n* Deploy smart contracts\n* Transfer NEP-11 and NEP-17 tokens\n* Vote for your favourite consensus node\n* Interact with on-chain smart contracts\n* Manage wallets\n* Build and sign specialized transactions\n* and more..\n\nThis SDK provides building blocks for Python developers to interact with the NEO blockchain without requiring to run a full node.\nIn order to interact with the chain and obtain information it relies heavily on RPC nodes. You can find a list of public RPC nodes `here <https://dora.coz.io/monitor>`_.\n\nPlease report any issues on `Github <https://github.com/CityOfZion/neo-mamba/issues>`_ or submit ideas how to improve the SDK.\n\nAlso check out our Python smart contract compiler `Boa <https://github.com/CityOfZion/neo3-boa>`_ !\n\nInstallation and usage\n----------------------\nInstallation instructions, how to interact with smart contracts as well as API reference documentation can be found at\nhttps://mamba.coz.io/\n\nDeveloping or contributing\n--------------------------\nInstall the requirements, modify the code and PR :-)\n::\n\n   pip install -e .[dev]\n\nFor larger changes consider opening an issue first to discuss the change. Below are a few guidelines for contributing\n\n* The project uses `Black <https://github.com/psf/black>`_ for code formatting. PRs will fail if formatted incorrectly.\n  You might want to `integrate <https://black.readthedocs.io/en/stable/integrations/editors.html>`_ ``black`` into your\n  editor or run it manually with ``make black``.\n* All public functions/classes must have docstrings.\n* All your code must be typed. Test your typing with ``make type``. In rare cases it might be hard/impractical to add typing.\n  Point it out if that is the case and add a short description why we could do without.\n* Add tests that cover the newly added (or changed if applicable) code. Use ``make test`` and ``make coverage``.\n",
    "bugtrack_url": null,
    "license": "Copyright (c) 2019-present COZ  Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:  The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.  THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.",
    "summary": "Python SDK for the NEO 3 blockchain",
    "version": "2.6.0",
    "project_urls": {
        "documentation": "https://mamba.coz.io/",
        "repository": "https://github.com/CityOfZion/neo-mamba"
    },
    "split_keywords": [
        "neo",
        " neo3",
        " blockchain",
        " sdk"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b3da9a25706cae99286d65b6a33e77fad48449a66f75276814ccb9ad72009042",
                "md5": "3b13aa7fb7c4156fe0631f58fa5c50a3",
                "sha256": "8a37445c204ee9cf9610d66fae8628be63ad9b36018e5d4b99c08f49f257ee09"
            },
            "downloads": -1,
            "filename": "neo_mamba-2.6.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "3b13aa7fb7c4156fe0631f58fa5c50a3",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": "<=3.13,>=3.11.0",
            "size": 126220,
            "upload_time": "2024-03-20T18:50:12",
            "upload_time_iso_8601": "2024-03-20T18:50:12.393373Z",
            "url": "https://files.pythonhosted.org/packages/b3/da/9a25706cae99286d65b6a33e77fad48449a66f75276814ccb9ad72009042/neo_mamba-2.6.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3b5a146d247d1fa1d0e665e713516fbf1eeb56ffbafbd74fab81e12ab0dbccf9",
                "md5": "8fd1dcc9fe4539ec23893459d72570ca",
                "sha256": "24b3f3bba3a1e6bd503990ec28176e4ff3fe65e1f6a42531f4594ce91d3fe876"
            },
            "downloads": -1,
            "filename": "neo-mamba-2.6.0.tar.gz",
            "has_sig": false,
            "md5_digest": "8fd1dcc9fe4539ec23893459d72570ca",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": "<=3.13,>=3.11.0",
            "size": 206585,
            "upload_time": "2024-03-20T18:50:14",
            "upload_time_iso_8601": "2024-03-20T18:50:14.579910Z",
            "url": "https://files.pythonhosted.org/packages/3b/5a/146d247d1fa1d0e665e713516fbf1eeb56ffbafbd74fab81e12ab0dbccf9/neo-mamba-2.6.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-03-20 18:50:14",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "CityOfZion",
    "github_project": "neo-mamba",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "neo-mamba"
}
        
Elapsed time: 0.20714s