A toolbox to easily setup each bot for the algorithms (converts algo output into calldata)
You can install this library directly from GitHub using pip:
pip install git+https://github.com/Lobster-Protocol/Python-bot-utils.gitOr if you want to install a specific branch:
pip install git+https://github.com/Lobster-Protocol/Python-bot-utils.git@branch-nameFor local development and contributing:
make venvsource .venv/bin/activatemake installAfter installation, you can import the library in your Python code:
import python_bot_utils
# or import specific modules
from python_bot_utils import your_moduleFormat the code:
make fmtEnsure formatting is correct:
make check