Ethereum Python Client
Python2.7 is required.
pip install -r requirements.txt
You can have dependencies managed by buildout --
a buildout.cfg
is already included in the project.
In order to do so, you'll need to bootstrap the project (needs only be
done once). On systems that provide curl
you can use the following handy
one-liner:
curl http://downloads.buildout.org/2/bootstrap.py | python
If your system has wget
and not curl
you can also use wget -O -
in place of curl
. Otherwise download the bootstrap script
into the project folder and call python bootstrap.py
.
Build the project via bin/buildout
.
This will install dependencies in a virtualenv, provide you with a scoped python
interpreter (bin/python
) and make all console_scripts available in the
bin
directory (e.g. bin/behave
in order to run tests).
- Should write codes compatible with Python3
- codes should pass PEP8 check.
behave is used for testing.
Tips for writing test code for behave
- write test scenario in xxx.feature
- run
behave
, then behave will report the newly written scenario are not implemented, and code skeleton for the corresponding steps will also be generated. - copy & copy the generated code skeleton in a file in the steps directory and then write your own codes basing on it.
- if you need setup/teardown for feature/scenario with specific tag of mytag, create a file called mytag.py in the hooks directory
Tips for debug
for test specific scenario while ignoring all other ones, just add @wip in the uppper line of the scenario.
for debug, run:
$ BEHAVE_DEBUG_ON_ERROR=yes behave -w
Please use the logging
module for logging.
For basic, verbose logging functionality, the following is sufficient (adjust level to your needs):
import logging logging.basicConfig(format='[%(asctime)s] %(name)s %(levelname)s %(message)s', level=logging.DEBUG) logger = logging.getLogger(__name__)
If you need a more advanced setup, have a look at the python docs
Easy Debugging:
The eth.py
script, understands a command line flag for easy debugging, e.g.:
pyethereum/eth.py -L pyethereum.wire:DEBUG,:INFO ...<other args>
will set the log-level for wire
to DEBUG
and the root logger to INFO
.
See LICENCE
Vitalik Buterin