git clone https://github.com/xujiahuayz/contango.git
cd contango
chmod +x setup_repo.sh
./setup_repo.sh
. venv/bin/activate
or follow the step-by-step instructions below between the two horizontal rules:
- MacOS / Linux
python3 -m venv venv
- Windows
python -m venv venv
- MacOS / Linux
. venv/bin/activate
- Windows (in Command Prompt, NOT Powershell)
venv\Scripts\activate.bat
pip install toml
pip install -e ".[dev]"
put your COINGLASS_SECRET
in .env
:
COINGLASS_SECRET="abc123"
KAIKO_API_KEY="abc123"
export $(cat .env | xargs)
All files in data/
are stored with lfs
:
git lfs track data/**/*
pytest