1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-10-12 10:58:59 +00:00
Go to file
2015-07-08 14:52:09 -03:00
docs
tests don't assign tx_api when not needed 2015-06-03 14:53:53 +02:00
tools
trezorlib update protobuf with ECDSA curve selection 2015-06-23 17:26:31 +03:00
.gitignore
build_pb.sh
cmdtr.py
COPYING
helloworld.py Update hashbang to use /usr/bin/env python 2015-05-13 02:36:56 +12:00
mnemonic_check.py Update hashbang to use /usr/bin/env python 2015-05-13 10:23:02 +02:00
README.rst Add information to README on how to enter scrambled pin 2015-07-08 14:52:09 -03:00
setup.py cleanup and release 0.6.5 2015-06-03 16:47:01 +02:00
trezorctl cleanup and release 0.6.5 2015-06-03 16:47:01 +02:00
trezorctl-emu.sh

python-trezor
=============

Client side implementation for Trezor-compatible Bitcoin hardware wallets.

See http://bitcointrezor.com for more information.

Example
-------

also found in ``helloworld.py``

.. code:: python

  #!/usr/bin/env python

  from trezorlib.client import TrezorClient
  from trezorlib.transport_hid import HidTransport

  def main():
      # List all connected TREZORs on USB
      devices = HidTransport.enumerate()

      # Check whether we found any
      if len(devices) == 0:
          print 'No TREZOR found'
          return

      # Use first connected device
      transport = HidTransport(devices[0])

      # Creates object for manipulating TREZOR
      client = TrezorClient(transport)

      # Print out TREZOR's features and settings
      print client.features

      # Get the first address of first BIP44 account
      # (should be the same address as shown in mytrezor.com)
      bip32_path = client.expand_path("44'/0'/0'/0/0")
      address = client.get_address('Bitcoin', bip32_path)
      print 'Bitcoin address:', address

      client.close()

  if __name__ == '__main__':
      main()

When you got asked for PIN, you have to enter scrambled pin shown in Trezor display using the numeric keyboard mapping.

  7 8 9
  4 5 6
  1 2 3

Example: your pin is 1234 and your Trezor is displaying

  2 8 3
  5 4 6
  7 9 1

You have to enter: 3795

How to install (Windows)
------------------------
* Install Python 2.7 (http://python.org)
* Install Cython (Windows binaries on http://cython.org/#download)
* Install Microsoft Visual Studio 2008 Express
* Add "C:\\Program Files (x86)\\Microsoft Visual Studio 9.0" to system PATH
* Clone repository (using TortoiseGit) to local directory
* Run C:\\python27\\python.exe setup.py install (or develop)

How to install (Debian-Ubuntu)
------------------------------
* sudo apt-get install python-dev python-setuptools cython libusb-1.0-0-dev libudev-dev git
* git clone https://github.com/trezor/python-trezor.git
* cd python-trezor
* python setup.py install (or develop)