Utility functions for monitoring the Stride blockchain
Project description
Description
Strideutils contains common patterns for cosmos api requests, monitoring, and other integrations for gsheets, slack, and twilio.
Setup
In a virtual environment of your choice install strideutils.
pip install strideutils
with poetry
poetry add strideutils
This package is frequently updated, so keep that in mind while developing.
Configuration
Strideutils requires three different environment variables that can be added to ~/.zshrc
or ~/.bashrc
export STRIDEUTILS_CONFIG_PATH=
export STRIDEUTILS_ENV_PATH=
Examples of these files are included under strideutils/config_examples. Stride Labs employees can find config.yaml in launchpad and .env.local in lastpass. We recommend you place .env.local in your launchpad repo.
Any configuration or secrets that aren't consumed don't need to be set. However if one is accessed but unset, an error will be thrown for easier debugging.
Once strideutils is installed and configured, each module you need should be imported individually. This isolates the different secrets that are expected and consumed.
Some common imports:
from strideutils.stride_config import config
config.get_chain(name='osmosis')
from strideutils import stride_requests
stride_requests.request('https://google.com')
from strideutils.stride_alerts import raise_alert
Slack Connector
TODO
Sheets Connector
TODO
Redis Connector
TODO
Developing Strideutils
To access the strideutils repo locally rather than using the pip version (for actively making changes to strideutils and a dependency), add the path to strideutils to the beginning of PYTHONPATH
import sys
sys.path = ['/path/to/strideutils/'] + sys.path
Alternatively, you can install strideutils through local mode. However, please be warned that this will make your local Python environment always use your local strideutils. This might lead to unexpected behavior if you local changes.
To install in local mode, run the following:
pip3 install -e /Users/username/Documents/strideutils
Confirm the location of where it's being imported from by printing the module. After making changes to strideutils, reload it before testing your application.
from importlib import reload
reload(strideutils)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file strideutils-0.8.3.tar.gz
.
File metadata
- Download URL: strideutils-0.8.3.tar.gz
- Upload date:
- Size: 56.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9a0c0c447e5663147cd86a8eebdae06c0bf5f01cb337cc31c45253afe6faaffb |
|
MD5 | da138a36a4bd4f8dc20fe0fc1fc3ad12 |
|
BLAKE2b-256 | e8f9999bdc8d3178f252cf5378a9c32db0aada423f8cdc4e98f41f0d1a338386 |
Provenance
File details
Details for the file strideutils-0.8.3-py3-none-any.whl
.
File metadata
- Download URL: strideutils-0.8.3-py3-none-any.whl
- Upload date:
- Size: 53.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b5bfa97e16ce8ae8365c503d1dfef243b1d64133ed6e788307199d5d0136e15f |
|
MD5 | b9721c2defe774785c5fc195e7b08ea6 |
|
BLAKE2b-256 | 88e9c37c6d4f64bc5243146c65e2fa7b1866106972a81c6379fa384050739831 |