platon-account


Nameplaton-account JSON
Version 1.2.1 PyPI version JSON
download
home_pagehttps://github.com/platonnetwork/platon-account
Summaryplaton-account: Sign Platon transactions and messages with local private keys
upload_time2022-06-01 08:09:28
maintainer
docs_urlNone
authorShinnng
requires_python>=3.6, <4
licenseMIT
keywords platon
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # platon-account

[![Join the chat at https://gitter.im/platonnetwork/platon-account](https://badges.gitter.im/platonnetwork/platon-account.svg)](https://gitter.im/platonnetwork/platon-account?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
[![Build Status](https://circleci.com/gh/platonnetwork/platon-account.svg?style=shield)](https://circleci.com/gh/platonnetwork/platon-account)
[![PyPI version](https://badge.fury.io/py/platon-account.svg)](https://badge.fury.io/py/platon-account)
[![Python versions](https://img.shields.io/pypi/pyversions/platon-account.svg)](https://pypi.python.org/pypi/platon-account)
[![Docs build](https://readthedocs.org/projects/platon-account/badge/?version=latest)](http://platon-account.readthedocs.io/en/latest/?badge=latest)
   

Sign Platon transactions and messages with local private keys

Read more in the [documentation on ReadTheDocs](https://platon-account.readthedocs.io/). [View the change log](https://platon-account.readthedocs.io/en/latest/release_notes.html).

## Quickstart

```sh
pip install platon-account
```

## Developer Setup

If you would like to hack on platon-account, please check out the [Snake Charmers
Tactical Manual](https://github.com/platonnetwork/snake-charmers-tactical-manual)
for information on how we do:

- Testing
- Pull Requests
- Code Style
- Documentation

### Development Environment Setup

You can set up your dev environment with:

```sh
git clone git@github.com:platon/platon-account.git
cd platon-account
virtualenv -p python3 venv
. venv/bin/activate
pip install -e .[dev]
```

To run the integration test cases, you need to install node and the custom cli tool as follows:

```sh
apt-get install -y nodejs  # As sudo
./tests/integration/ethers-cli/setup_node_v12.sh  # As sudo
cd tests/integration/ethers-cli
npm install -g .  # As sudo
```

### Testing Setup

During development, you might like to have tests run on every file save.

Show flake8 errors on file change:

```sh
# Test flake8
when-changed -v -s -r -1 platon_account/ tests/ -c "clear; flake8 platon_account tests && echo 'flake8 success' || echo 'error'"
```

Run multi-process tests in one command, but without color:

```sh
# in the project root:
pytest --numprocesses=4 --looponfail --maxfail=1
# the same thing, succinctly:
pytest -n 4 -f --maxfail=1
```

Run in one thread, with color and desktop notifications:

```sh
cd venv
ptw --onfail "notify-send -t 5000 'Test failure' 'python 3 test on platon-account failed'" ../tests ../platon_account
```

### Release setup

For Debian-like systems:
```
apt install pandoc
```

To release a new version:

```sh
make release bump=$$VERSION_PART_TO_BUMP$$
```

#### How to bumpversion

The version format for this repo is `{major}.{minor}.{patch}` for stable, and
`{major}.{minor}.{patch}-{stage}.{devnum}` for unstable (`stage` can be alpha or beta).

To issue the next version in line, specify which part to bump,
like `make release bump=minor` or `make release bump=devnum`. This is typically done from the
master branch, except when releasing a beta (in which case the beta is released from master,
and the previous stable branch is released from said branch).

If you are in a beta version, `make release bump=stage` will switch to a stable.

To issue an unstable version when the current version is stable, specify the
new version explicitly, like `make release bump="--new-version 4.0.0-alpha.1 devnum"`



            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/platonnetwork/platon-account",
    "name": "platon-account",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.6, <4",
    "maintainer_email": "",
    "keywords": "platon",
    "author": "Shinnng",
    "author_email": "Shinnng@outlook.com",
    "download_url": "https://files.pythonhosted.org/packages/3e/c1/08b5bb0862421ae94939fac6168d127838bfdeaee58bcb77318560c68232/platon-account-1.2.1.tar.gz",
    "platform": null,
    "description": "# platon-account\n\n[![Join the chat at https://gitter.im/platonnetwork/platon-account](https://badges.gitter.im/platonnetwork/platon-account.svg)](https://gitter.im/platonnetwork/platon-account?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\n[![Build Status](https://circleci.com/gh/platonnetwork/platon-account.svg?style=shield)](https://circleci.com/gh/platonnetwork/platon-account)\n[![PyPI version](https://badge.fury.io/py/platon-account.svg)](https://badge.fury.io/py/platon-account)\n[![Python versions](https://img.shields.io/pypi/pyversions/platon-account.svg)](https://pypi.python.org/pypi/platon-account)\n[![Docs build](https://readthedocs.org/projects/platon-account/badge/?version=latest)](http://platon-account.readthedocs.io/en/latest/?badge=latest)\n   \n\nSign Platon transactions and messages with local private keys\n\nRead more in the [documentation on ReadTheDocs](https://platon-account.readthedocs.io/). [View the change log](https://platon-account.readthedocs.io/en/latest/release_notes.html).\n\n## Quickstart\n\n```sh\npip install platon-account\n```\n\n## Developer Setup\n\nIf you would like to hack on platon-account, please check out the [Snake Charmers\nTactical Manual](https://github.com/platonnetwork/snake-charmers-tactical-manual)\nfor information on how we do:\n\n- Testing\n- Pull Requests\n- Code Style\n- Documentation\n\n### Development Environment Setup\n\nYou can set up your dev environment with:\n\n```sh\ngit clone git@github.com:platon/platon-account.git\ncd platon-account\nvirtualenv -p python3 venv\n. venv/bin/activate\npip install -e .[dev]\n```\n\nTo run the integration test cases, you need to install node and the custom cli tool as follows:\n\n```sh\napt-get install -y nodejs  # As sudo\n./tests/integration/ethers-cli/setup_node_v12.sh  # As sudo\ncd tests/integration/ethers-cli\nnpm install -g .  # As sudo\n```\n\n### Testing Setup\n\nDuring development, you might like to have tests run on every file save.\n\nShow flake8 errors on file change:\n\n```sh\n# Test flake8\nwhen-changed -v -s -r -1 platon_account/ tests/ -c \"clear; flake8 platon_account tests && echo 'flake8 success' || echo 'error'\"\n```\n\nRun multi-process tests in one command, but without color:\n\n```sh\n# in the project root:\npytest --numprocesses=4 --looponfail --maxfail=1\n# the same thing, succinctly:\npytest -n 4 -f --maxfail=1\n```\n\nRun in one thread, with color and desktop notifications:\n\n```sh\ncd venv\nptw --onfail \"notify-send -t 5000 'Test failure' 'python 3 test on platon-account failed'\" ../tests ../platon_account\n```\n\n### Release setup\n\nFor Debian-like systems:\n```\napt install pandoc\n```\n\nTo release a new version:\n\n```sh\nmake release bump=$$VERSION_PART_TO_BUMP$$\n```\n\n#### How to bumpversion\n\nThe version format for this repo is `{major}.{minor}.{patch}` for stable, and\n`{major}.{minor}.{patch}-{stage}.{devnum}` for unstable (`stage` can be alpha or beta).\n\nTo issue the next version in line, specify which part to bump,\nlike `make release bump=minor` or `make release bump=devnum`. This is typically done from the\nmaster branch, except when releasing a beta (in which case the beta is released from master,\nand the previous stable branch is released from said branch).\n\nIf you are in a beta version, `make release bump=stage` will switch to a stable.\n\nTo issue an unstable version when the current version is stable, specify the\nnew version explicitly, like `make release bump=\"--new-version 4.0.0-alpha.1 devnum\"`\n\n\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "platon-account: Sign Platon transactions and messages with local private keys",
    "version": "1.2.1",
    "project_urls": {
        "Homepage": "https://github.com/platonnetwork/platon-account"
    },
    "split_keywords": [
        "platon"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5ad2b4ffe2f7417d48d9cd8a53482165e9d7a936de64ad1d8abe0983bcb12473",
                "md5": "9fcb6c171c492a5524a2738bd565e8ee",
                "sha256": "bd6e00a25fbf2fdba39ba0f7b2d80adac1c7658a9bf8e393cbbc95a6b8333af3"
            },
            "downloads": -1,
            "filename": "platon_account-1.2.1-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "9fcb6c171c492a5524a2738bd565e8ee",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.6, <4",
            "size": 102197,
            "upload_time": "2022-06-01T08:09:26",
            "upload_time_iso_8601": "2022-06-01T08:09:26.467967Z",
            "url": "https://files.pythonhosted.org/packages/5a/d2/b4ffe2f7417d48d9cd8a53482165e9d7a936de64ad1d8abe0983bcb12473/platon_account-1.2.1-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3ec108b5bb0862421ae94939fac6168d127838bfdeaee58bcb77318560c68232",
                "md5": "8fea68e839797ade6437ed7f8bce25da",
                "sha256": "7206ccd4ebb38082ef4e81affcbd0153632e2467cf24d3843389a5ab16a7f5af"
            },
            "downloads": -1,
            "filename": "platon-account-1.2.1.tar.gz",
            "has_sig": false,
            "md5_digest": "8fea68e839797ade6437ed7f8bce25da",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.6, <4",
            "size": 100974,
            "upload_time": "2022-06-01T08:09:28",
            "upload_time_iso_8601": "2022-06-01T08:09:28.914231Z",
            "url": "https://files.pythonhosted.org/packages/3e/c1/08b5bb0862421ae94939fac6168d127838bfdeaee58bcb77318560c68232/platon-account-1.2.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2022-06-01 08:09:28",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "platonnetwork",
    "github_project": "platon-account",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "circle": true,
    "tox": true,
    "lcname": "platon-account"
}
        
Elapsed time: 0.25867s