Skip to content

Installation

Requirements

  • Python 3.11 or higher

From PyPI

Install the SDK using pip:

pip install finwise-python

Using Nix

If you have Nix installed with flakes enabled, you can use this package directly:

# Build the package
nix build github:rameezk/finwise-python

# Or use in your flake.nix
{
  inputs.finwise-python.url = "github:rameezk/finwise-python";
}

For Development

If you want to contribute or modify the SDK:

pip install finwise-python[dev]

Or with Nix:

git clone https://github.com/rameezk/finwise-python.git
cd finwise-python
nix develop
pip install -e .

For Documentation

To build the documentation locally:

pip install finwise-python[docs]

Or with Nix:

nix develop .#docs
mkdocs serve