Metadata-Version: 2.1
Name: abiparser
Version: 1.0.1
Summary: A Python package to parse Ethereum contract ABI files
Author: August Radjoe
Author-email: atg271@gmail.com
Description-Content-Type: text/markdown

### abi_parser

A simple way to parse your ABIs in Python.

### Installation

```bash
pip install abiparser
```

```python
from abiparser import ContractABI
abi = ContractABI('<PATH TO ABI JSON'>)

# name
name = abi.name

# functions
functions = abi.functions

# events - todo
# events = abi.events

# get function by name
function = abi.get_function('<function_name>')

# bytecode - todo
# bytecode = abi.bytecode

# get function by signature - todo
# function = abi.get_function_by_signature('<function_signature>')
```
