Skip to content

Latest commit

 

History

History
44 lines (28 loc) · 680 Bytes

README.md

File metadata and controls

44 lines (28 loc) · 680 Bytes

Contract Code & ABI crawler

Environment

Ubuntu, Linux

python 2.xx / 3.xx

Requirement

pip install requests
pip install bs4
pip install json

Components

How to use Simple Contract Parser

how2use

How to use Token Parser

import sys
sys.path.append('../')

from parser_library import token

t = token()
t.get_address(1)
t.save_address('page-1', path='../address/')

You can easily use the modules by checking the following examples.

example