Skip to content

Installation

Requirements

BASA supports:

  • Python 3.10 or newer

Install from PyPI

pip install basa

Verify Installation

Open a Python shell and run:

from basa import quick

quick("gw gk ngerti")

Expected output:

'saya tidak mengerti'

Development Installation

Clone the repository:

git clone https://github.com/muanai/basa.git
cd basa

Install development dependencies using uv:

uv sync --extra dev

Run tests:

uv run pytest

Run Ruff:

uv run ruff check .
uv run ruff format .

Build the package:

uv build