Skip to main content

Nibiru Python SDK

Project description

Nibiru Python SDK - nibiru

Python-based client for interacting with the Nibiru blockchain.

Nibiru Test workflow PyPI Version MIT license

The nibiru-py package allows you to index, query, and send transactions on the Nibiru Blockchain using Python. It provides access to market data for analysis, visualization, indicator development, algorithmic trading, strategy backtesting, bot programming, and related software engineering.

The package is intended to be used by coders, developers, technically-skilled traders and data-scientists for building trading algorithms.

README Contents

User Guidelines

Documentation Website

Documentation can be found here: Nibiru-py documentation

  • Learn more about opening and managing your spot and perp positions here
  • Learn about querying the chain using the Sdk here

Installation from PyPI

pip install nibiru-py  # requires Python 3.9

You may need to update pip to get this to run:

python -m pip install --upgrade pip

Development Guidelines

Our recommended setup is pyenv in combination with poetry.

  • pyenv is a tool for installing and managing Python interpreters. This will let you seamlessly switch between Python versions.
  • poetry is used for managing virtual environments, dependency resolution, package installations, package building, and package publishing.
  • We assume you're on a Unix machine such as WSL2 Ubuntu, MacOS, or a common Linux distro.

Currently, nibiru-py is created with Python 3.9.13. It may be compatible with higher versions, but we only run end-to-end tests in 3.9.13.

Setting up a professional dev environment with pyenv and poetry

Pyenv for managing multiple Python interpreters

If you're on MacOS or a common Linux distro, you can install pyenv with brew.

brew install pyenv

You'll then need to add the following snippet to your shell config, e.g. your .bash_profile, .bashrc, or .zshrc.

export PYENV_ROOT="$HOME/.pyenv"
export PATH="$PYENV_ROOT/bin:$PATH"
eval "$(pyenv init -)"
eval "$(pyenv init --path)"

After using source on your config or restarting the shell, you should have the pyenv root command.

The command use to install any version of python is pyenv install. Display additional info for this command with pyenv install --help.

pyenv install 3.9.13 # example for nibiru-py

Once you have a version installed, you can print out the versions on your machine with:

pyenv versions
# example output
  system
* 3.9.13 (set by /home/realu/.python-version)
  3.10.4

In this example, I have 2 different interpreters installed on my machine. The one with the * is currently set as my global interpreter. This is set manually using the pyenv global command.

pyenv global 3.10.4   # switches the global interpreter to 3.10.4

You can verify this works as expected using python --version. You may be familiar with using python3 as the command instead of python. With pyenv, this is not necessary.

Additional usage and installation instructions can be found in the pyenv repo.

Installing poetry for dependency resolution and publishing packages

Reference: Poetry docs

Poetry can be installed with both curl and pip. We recommended using curl so that it will be global to your machine.

NOTE We highly, highly, highly recommend that you DO NOT use brew to install poetry. If you use brew, it's going to install directly to your system, which prevents you from being able to leverage pyenv to seamlessly switch between Python interpreters.

# installation with pip: recommended option in tandem with pyenv
pip install poetry
# For UNIX systems - installation with curl 
curl -sSL https://install.python-poetry.org/ | python -

After this installation command, add the poetry binary to the path in your shell config (if it's not done automatically).

export PATH=$PATH:$HOME/.poetry/bin

Installing external dependencies

The nibiru-py project is defined by its pyproject.toml. At the root of the repo, simply call:

poetry install

This will resolve dependencies between each of the project's packages and install them into a virtual environment.

Running tests

Setting environment variables

There's currently a "devnet" running in GCP that the CI workflows use. You can find these secrets at this notion page if you have access to it or contact one of the CODEOWNERS (@Unique-Divine, @matthiasmatt, @nibiruheisenberg). This is useful so that you can run every part of the package code without needing to visit other repositories.

Set up a .env file to set environment variables for the tests. The variables used in the CI build can be found in the env section of the pytests.yml workflow:

jobs:
  tests:
    env: 
      # https://www.notion.so/nibiru/Resources-and-Repo-Configs-b31aa8074a2b419d80b0c946ed5efab0
      CHAIN_ID: ${{ secrets.CHAIN_ID }}
      HOST: ${{ secrets.HOST }}
      VALIDATOR_MNEMONIC: ${{ secrets.VALIDATOR_MNEMONIC }}
      GRPC_PORT: ${{ secrets.GRPC_PORT }}
      LCD_PORT: ${{ secrets.LCD_PORT }}

You'll need an .env configuration like this.

# Example configuration for the Nibiry Python SDK
HOST="..."
VALIDATOR_MNEMONIC="..."
GRPC_PORT="..."
LCD_PORT="..."
CHAIN_ID="..."

Running the tests with poetry + pytest

After following the instructions for setting up poetry, you can run the tests with poetry run pytest:

poetry run pytest -p no:warnings # silences warnings

(option B). Install the nibiru-py package with pip

# from local
# build and install
pip install .

# from local build
pip uninstall nibiru-py
pip install nibiru-py --no-index --find-links /path/to/nibiru/nibiru-py/dist

# from pypi
pip uninstall nibiru-py
pip install nibiru-py

Makefile and Protocol Buffers

Other dependencies

To run shell scripts and commands in the Makefile, you'll need to install the following tools depending on your operating system.

  • Ubuntu
    sudo apt install python3.X-dev autoconf automake build-essential libffi-dev libtool pkg-config
    
  • macOS
    brew install autoconf automake libtool
    
  • Fedora
    sudo dnf install python3-devel autoconf automake gcc gcc-c++ libffi-devel libtool make pkgconfig
    

Generating types wth protobuf

The objective is to run make proto-gen, which simply executes scripts/protocgen.sh.

In order to do this, you'll need to install a few packages on your system.

python -m pip install --user grpcio-tools
pip install mypy-protobuf

If you get a permissions error such as

rm: cannot remove 'proto/proto/epochs/query.proto': Permission denied

call sudo chown -R [USER-NAME] proto using the name of user directory. You can find the value for [USER-NAME] quickly by running whoami. In other words, this should work:

sudo chown -R $(whoami) proto

You're done generating types once you've successfully called

make proto-gen
poetry build # equivalently, you can run `python -m build`

Linting

Enable git hook which will perform linting before each commit:

pre-commit install

This will keep your code clean.

Gotchas

The protobuf package must be version 3.20.x or lower. Otherwise, the following error appears at runtime.

nibiru/clients/__init__.py:1: in <module>
    from .dex import Dex  # noqa
nibiru/clients/dex.py:8: in <module>
    from nibiru.proto.dex.v1 import query_pb2 as dex_type
nibiru/proto/dex/v1/query_pb2.py:16: in <module>
    from google.api import annotations_pb2 as google_dot_api_dot_annotations__pb2
../../../anaconda3/envs/divine/lib/python3.9/site-packages/google/api/annotations_pb2.py:30: in <module>
    from google.api import http_pb2 as google_dot_api_dot_http__pb2
../../../anaconda3/envs/divine/lib/python3.9/site-packages/google/api/http_pb2.py:48: in <module>
    _descriptor.FieldDescriptor(
../../../anaconda3/envs/divine/lib/python3.9/site-packages/google/protobuf/descriptor.py:560: in __new__
    _message.Message._CheckCalledFromGeneratedFile()
E   TypeError: Descriptors cannot not be created directly.
E   If this call came from a _pb2.py file, your generated code is out of date and must be regenerated with protoc >= 3.19.0.
E   If you cannot immediately regenerate your protos, some other possible workarounds are:
E    1. Downgrade the protobuf package to 3.20.x or lower.
E    2. Set PROTOCOL_BUFFERS_PYTHON_IMPLEMENTATION=python (but this will use pure-Python parsing and will be much slower).
E
E   More information: https://developers.google.com/protocol-buffers/docs/news/2022-05-06#python-updates

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

nibiru-py-0.0.15.tar.gz (190.0 kB view hashes)

Uploaded Source

Built Distribution

nibiru_py-0.0.15-py3-none-any.whl (324.4 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page