Coder Social home page Coder Social logo

pyethereum's Introduction

Next generation cryptocurrency network

Ethereum Python Client

https://travis-ci.org/ethereum/pyethereum.png?branch=master

Install

Python2.7 is required.

pip install -r requirements.txt

Buildout(optional)

You can have dependencies managed by buildout -- a buildout.cfg is already included in the project.

Bootstrap:

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.

Building:

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).

To Do

For Developer

Coding

  1. Should write codes compatible with Python3
  2. codes should pass PEP8 check.

Testing

  1. behave is used for testing.

    Tips for writing test code for behave

    1. write test scenario in xxx.feature
    2. run behave, then behave will report the newly written scenario are not implemented, and code skeleton for the corresponding steps will also be generated.
    3. copy & copy the generated code skeleton in a file in the steps directory and then write your own codes basing on it.
    4. 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

    1. for test specific scenario while ignoring all other ones, just add @wip in the uppper line of the scenario.

    2. for debug, run:

      $ BEHAVE_DEBUG_ON_ERROR=yes behave -w
      

Logging:

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.

Licence

See LICENCE

Author

Vitalik Buterin

pyethereum's People

Contributors

vbuterin avatar heikoheiko avatar schmir avatar konradkonrad avatar jam10o-new avatar uwecerron avatar conceptpending avatar sunny-g avatar super3 avatar

Watchers

James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.