1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-10-12 10:58:59 +00:00
trezor-firmware/README.rst

91 lines
2.0 KiB
ReStructuredText
Raw Normal View History

2014-07-26 10:22:32 +00:00
python-trezor
=============
2014-02-03 18:19:45 +00:00
2015-12-21 19:42:33 +00:00
.. image:: https://travis-ci.org/trezor/python-trezor.svg?branch=master
:target: https://travis-ci.org/trezor/python-trezor
2016-05-11 19:15:22 +00:00
.. image:: https://badges.gitter.im/trezor/community.svg
:target: https://gitter.im/trezor/community
2016-11-27 12:48:45 +00:00
Python library for communicating with TREZOR Hardware Wallet
2014-02-03 18:19:45 +00:00
2016-11-27 12:48:45 +00:00
See https://trezor.io for more information
2014-02-03 18:19:45 +00:00
2016-09-14 19:33:49 +00:00
Install
-------
(Run with sudo if not running in superuser mode under Linux)
.. code::
pip install trezor
On Linux you might need to run these commands first:
.. code::
2017-02-10 13:39:54 +00:00
2016-09-14 19:33:49 +00:00
sudo apt-get install python-dev cython libusb-1.0-0-dev libudev-dev git
sudo pip install setuptools
2014-08-11 19:31:34 +00:00
Example
-------
also found in ``tools/helloworld.py``
2014-08-11 19:31:34 +00:00
.. code:: python
#!/usr/bin/env python
2014-08-11 19:31:34 +00:00
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:
2016-05-20 11:36:17 +00:00
print('No TREZOR found')
2014-08-11 19:31:34 +00:00
return
# Use first connected device
transport = HidTransport(devices[0])
# Creates object for manipulating TREZOR
client = TrezorClient(transport)
# Print out TREZOR's features and settings
2016-05-20 11:36:17 +00:00
print(client.features)
2014-08-11 19:31:34 +00:00
# Get the first address of first BIP44 account
2017-01-10 14:25:13 +00:00
# (should be the same address as shown in wallet.trezor.io)
2014-08-11 19:31:34 +00:00
bip32_path = client.expand_path("44'/0'/0'/0/0")
address = client.get_address('Bitcoin', bip32_path)
2016-05-20 11:36:17 +00:00
print('Bitcoin address:', address)
2014-08-11 19:31:34 +00:00
client.close()
if __name__ == '__main__':
main()
2015-07-08 20:36:10 +00:00
PIN Entering
------------
2015-07-08 20:36:10 +00:00
When you are asked for PIN, you have to enter scrambled PIN. Follow the numbers shown on TREZOR display and enter the their positions using the numeric keyboard mapping:
2015-07-08 20:36:10 +00:00
=== === ===
7 8 9
4 5 6
1 2 3
=== === ===
2015-07-08 20:36:10 +00:00
Example: your PIN is **1234** and TREZOR is displaying the following:
2015-07-08 20:36:10 +00:00
=== === ===
2 8 3
5 4 6
7 9 1
=== === ===
You have to enter: **3795**