mirror of
https://github.com/status-im/c-kzg-4844.git
synced 2025-01-23 16:39:13 +00:00
d0201ca2c4
* Remove pyecc tests * Remove pyecc tests in CI too
24 lines
397 B
Markdown
24 lines
397 B
Markdown
# Python bindings
|
|
|
|
This directory contains Python bindings for the C-KZG-4844 library.
|
|
|
|
## Prerequisites
|
|
|
|
These bindings require `python3` and `PyYAML`.
|
|
```
|
|
sudo apt install python3 python3-pip
|
|
python3 -m pip install PyYAML
|
|
```
|
|
|
|
## Build & test
|
|
|
|
Everything is consolidated into one command:
|
|
```
|
|
make
|
|
```
|
|
|
|
You should expect to see these messages at the bottom:
|
|
```
|
|
python3 tests.py
|
|
tests passed
|
|
``` |