Metadata-Version: 2.1
Name: ethhelper
Version: 0.4.2
Summary: Asynchronous Geth node connection encapsulation based on httpx, websockets and web3.py. Geth node and Ethereum type extension based on pydantic.
Home-page: https://github.com/XiaoHuiHui233/ETHHelper
License: Apache-2.0
Keywords: ethereum,asyncio,geth,pydantic
Author: XiaoHuiHui233
Author-email: 1025184872@qq.com
Requires-Python: >=3.10,<4.0
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Requires-Dist: eth-typing (>=3.3.0,<4.0.0)
Requires-Dist: httpx (>=0.23.3,<0.24.0)
Requires-Dist: orjson (>=3.8.12,<4.0.0)
Requires-Dist: pydantic (>=1.10.7,<2.0.0)
Requires-Dist: web3 (>=6.4.0,<7.0.0)
Requires-Dist: websockets (>=10.4,<11.0)
Project-URL: Repository, https://github.com/XiaoHuiHui233/ETHHelper
Description-Content-Type: text/markdown

# ETHHelper

[![Build Status](https://img.shields.io/github/actions/workflow/status/XiaoHuiHui233/ETHHelper/publish.yml)](https://github.com/XiaoHuiHui233/ETHHelper/actions)
[![Documentation Status](https://readthedocs.org/projects/ethhelper/badge/?version=latest)](https://ethhelper.readthedocs.io/en/latest/?badge=latest)
![Python Version](https://img.shields.io/pypi/pyversions/ethhelper)
![Wheel Status](https://img.shields.io/pypi/wheel/ethhelper)
[![Latest Version](https://img.shields.io/github/v/release/XiaoHuiHui233/ETHHelper)](https://github.com/XiaoHuiHui233/ETHHelper/releases)
[![License](https://img.shields.io/github/license/XiaoHuiHui233/ETHHelper)](https://github.com/XiaoHuiHui233/ETHHelper/blob/main/LICENSE)

Asynchronous Geth node connection encapsulation based on httpx, websockets and web3.py. Geth node and Ethereum type extension based on pydantic.

Quickstart see [this](https://ethhelper.readthedocs.io/en/latest/quickstart.html).

[中文](docs/README_cn.md) | English

## Usage

### pypi

If you prefer to use pypi to install this package, you can just run the following command:

```bash
pip install ethhelper
```

### git

The project is managed by poetry. If you prefer to use git to install this package, you can use poetry to directly add a reference to the project's build package through git.

The command is as follow:

```bash
poetry add git+ssh://git@github.com:XiaoHuiHui233/ETHHelper.git
```

## Build

You can use poetry's tools to generate a build of this project (pure Python).

The command is as follow:

```bash
poetry build
```

## Author and License

ETHHelper was written by [XiaoHuiHui233](https://github.com/XiaoHuiHui233/), licensed under the Apache 2.0.

