Skip to content

ethiopicai/Amharic-Text-Processor

Repository files navigation

Amharic Text Processor

PyPI CI Docs License: MIT

Amharic Text Processor is a modular Python toolkit for cleaning, normalizing, and formatting Amharic text. Each processing step is a small class with a predictable .apply() method, and steps are easily chained with Pipeline.

Why this exists: Amharic text from the web, documents, and OCR often arrives with HTML noise, mixed Ethiopic variants, inconsistent punctuation, legacy abbreviations, and numerals in different forms. This toolkit provides predictable, composable processors so you can rapidly build robust pipelines for ML datasets, search indexing, or downstream NLP tasks without reinventing cleaning logic. Many of these components were developed while processing large volumes of Amharic text crawled from Amharic-focused websites indexed by Common Crawl.


✨ Features

  • Composable pipeline built from simple processor classes
  • Consistent I/O contract: accepts str or {"text": ...}, returns a dict with "text"
  • HTML stripping, whitespace cleanup, Amharic character filtering
  • Punctuation and Unicode normalization (keeps Ethiopic marks, preserves decimals) plus configurable regex filtering
  • Sentence-level deduplication using fuzzy similarity
  • Abbreviation handling for slash/dot forms; dotted abbreviations can be normalized before expansion
  • Helpers to add spaces between Ethiopic letters and digits, and to place sentences on separate lines
  • Noise removal for common Latin/underscore tokens and foreign-only brackets
  • Ethiopic→Latin transliteration using a romanization table
  • Pure, side-effect-free processors that are easy to test and extend

📦 Installation

pip install amharic-text-processor

🚀 Quick Start

from amharic_text_processor import Pipeline
from amharic_text_processor.processors import (
    HtmlStripper,
    WhitespaceNormalizer,
    PunctuationNormalizer,
    UnicodeNormalizer,
    CharacterRemapper,
    AbbreviationExpander,
    DottedAbbreviationNormalizer,
    AmharicCharacterFilter,
    CommonNoiseRemover,
)

pipeline = Pipeline([
    HtmlStripper(),             # drop HTML/script/style
    UnicodeNormalizer(),        # NFC + strip control chars
    CharacterRemapper(),        # normalize Ethiopic variants (ሠ->ሰ, ዐ->አ, ...)
    DottedAbbreviationNormalizer(),  # turn dotted abbreviations into slash form
    AbbreviationExpander(),     # expand slash/dot abbreviations (e.g., ዓ.ም. -> ዓመተ ምሕረት)
    PunctuationNormalizer(),    # unify punctuation (keeps Ethiopic marks, protects decimals)
    WhitespaceNormalizer(),     # collapse repeated whitespace
    AmharicCharacterFilter(),   # keep Ethiopic chars and safe punctuation/digits
    CommonNoiseRemover(),       # drop tokens like IMG_1124 or (FlyDubai)
])

raw = """
<article>
  <p>  ሰላም። ልኡኣ ዓ.ም. 2016 ሀ/ማርያም በሚሊዮን ይዘት ሰጠ። </p>
  <script>alert('ignore me')</script>
</article>
"""

result = pipeline.apply(raw)
print(result["text"])
# -> ሰላም። ሏ ዓመተ ምሕረት 2016 ሀይለ ማርያም በሚሊዮን ይዘት ሰጠ።

# Transliteration to Latin
rawtext = "እሺ፣ የክፍያ ሂደቱን በአማርኛ እመራዎታለሁ። የአካውንት ቁጥርዎን ያስገቡ። 565 የኢትዮጵያ ንግድ ባንክ ነው።"
new_text = AmharicTransliterator().apply(rawtext)
print(new_text["text"])
# -> eshi, yakefeyaa hidatune baamaarenyaa emaraawotaalahu. yaakaawenete quterewone yaasegabu. 565 yaiteyopheyaa negede baaneke nawe.

🔗 Pipeline Contract

  • Input: str or dict containing "text": str
  • Output: always a dict with at least "text": str
  • Processors run in order; output from one is passed to the next
  • Fail-fast validation on invalid inputs or processor outputs

📚 Code Documentation

  • Each processor and the pipeline include docstrings describing inputs/outputs and behavior (see amharic_text_processor/base.py, pipeline.py, and files in amharic_text_processor/processors/).
  • Browse in an editor or via pydoc amharic_text_processor.processors.<name> for details.
  • All processors follow the same contract: .apply(data: str | {"text": str}) -> {"text": str, ...}.
  • See docs/ for a quick reference (docs/index.md, docs/processors.md). To generate HTML docs locally you can run pdoc -o docs amharic_text_processor.

🧰 Built-in Processors

  • HtmlStripper: remove HTML tags and script/style content
  • WhitespaceNormalizer: collapse repeated whitespace and trim
  • PunctuationNormalizer: unify Ethiopic/ASCII punctuation, collapse repeats, keep decimals intact
  • UnicodeNormalizer: normalize Unicode (default NFC) and strip control chars
  • AmharicCharacterFilter: keep Ethiopic characters plus safe punctuation/digits
  • CharacterRemapper: normalize variant Ethiopic glyphs to canonical forms
  • DottedAbbreviationNormalizer: convert dotted abbreviations (e.g., እ.ኤ.አ) into slash form before expansion
  • AbbreviationExpander: expand slash/dot Amharic abbreviations to full forms (e.g., ፍ/ቤቱ -> ፍርድ ቤቱ, ፕ/ር -> ፕሮፌሰር, ዓ.ም. -> ዓመተ ምሕረት)
  • NumberToGeez: convert Arabic digits in text to Ethiopic (Geez) numerals (e.g., 31 -> ፴፩)
  • GeezToNumber: convert Ethiopic (Geez) numerals back to Arabic digits (e.g., ፴፩ -> 31)
  • WordNumberToDigits: convert Amharic worded numbers (e.g., “ሁለት ሺህ ሶስት መቶ”) to Arabic digits
  • DigitsToWordNumber: turn Arabic digit sequences into Amharic worded numbers (supports up to trillions)
  • OldPhoneMapper: convert legacy phone representations to modern forms via a predefined mapping
  • EthiopicNumberSpacer: insert spaces between Ethiopic letters and adjacent digits (e.g., "ዜና11" -> "ዜና 11")
  • SentenceLineFormatter: place each sentence on its own line after end punctuation
  • SentenceDeduplicator: drop exact or near-duplicate sentences with RapidFuzz similarity
  • AmharicTransliterator: transliterate Ethiopic (Amharic) text to Latin using a romanization table
  • CommonNoiseRemover: remove noisy tokens like IMG_1124 or non-Ethiopic bracketed text (some_not_amharic_words)
  • RegexFilter: run a configurable regex substitution with counts

Sentence deduplication example

from amharic_text_processor.processors import SentenceDeduplicator

deduper = SentenceDeduplicator(similarity_threshold=0.85)
text = "ሰላም ዓለም። ሰላም ዓለም። እንዴት ነህ? እርስዎ እንዴት ነው?"
result = deduper.apply(text)
print(result["text"])
# -> ሰላም ዓለም። እንዴት ነህ?
print(result["sentences_removed"])  # duplicates that were dropped

🧧 Custom Processor Example

from amharic_text_processor import BaseProcessor


class ExampleProcessor(BaseProcessor):
    def apply(self, data):
        text = BaseProcessor._extract_text(data)
        processed = text.replace("old", "new")
        return {"text": processed, "modified": True}

Add it to a pipeline just like the built-ins.


🧪 Testing

pytest -q

🤝 Contributing

See CONTRIBUTING.md for guidelines on adding processors, running tests, and coding style.

📦 Publishing

GitHub Actions workflows are included:

  • CI runs tests on pushes/PRs.
  • Publish to PyPI builds and publishes on release creation.
  • See CHANGELOG.md for release notes.

📜 License

MIT License.

About

Modular Amharic text preprocessing toolkit with composable processors and pipeline.

Topics

Resources

Contributing

Stars

Watchers

Forks

Packages

 
 
 

Contributors

Languages