Open Source Bengali Computing

A community-driven initiative developing modern tools for Bengali language computing. Current focus: high-performance text input engine with Avro Phonetic layout support.

Active Projects

Current Development

Open-source tools focused on performance and standards compliance

Obadh

Active Development

A Rust-based implementation of the Avro Phonetic keyboard layout. Features include: - Optimized text processing engine - Full Unicode compliance - Customizable phonetic rules - Cross-platform compatibility

High-performance Rust implementation
Linguistically accurate transliteration
// Interactive demo
let input = "ami banglay gan gai";
let output = obadh::convert(input);
// Output: আমি বাংলায় গান গাই

// Advanced usage
let options = Options {
    smart_quote: true,
    auto_correct: true
};

let enhanced = obadh::convert_with_options(
    input,
    options
);