Installing HDWallet

The easiest way to install hdwallet is via pip:

pip install hdwallet

To install hdwallet command line interface globally, for Linux sudo may be required:

pip install hdwallet[cli]

After you have installed, type hdwallet to verify that it worked:

hdwallet
Usage: hdwallet [OPTIONS] COMMAND [ARGS]...

Options:
  -v, --version  Show HDWallet version and exit
  -h, --help     Show this message and exit.

Commands:
  dump (d)      Select Dump hdwallet keys
  dumps (ds)    Select Dumps hdwallet keys
  generate (g)  Select Generate for HDWallet
  list (l)      Select List for HDWallet information

If you want to run the latest version of the code, you can install from git:

pip install git+git://github.com/hdwallet-io/python-hdwallet.git

For the versions available, see the tags on this repository.

Development

We welcome pull requests. To get started, just fork this github repository, clone it locally, and run:

pip install -e .[cli,tests,docs]