Metadata-Version: 2.4
Name: brickdetector
Version: 0.1.0
Summary: A package for detecting the word 'brick' in any form within any provided text
Author-email: Kaper365 <kacperdezor@kaper365.de>
License-Expression: MIT
Project-URL: Source, https://github.com/kaper365/brickdetector
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# brickdetector

**brickdetector** is a lightweight Python package that detects the presence of the word "brick" in any form (e.g., "Brick", "bricked", "bricking") within a given text input.

## Features

- Detects all variants of the word "brick" (case-insensitive, including prefixes and suffixes as well as unicode characters resembling characters in the word "brick")
- Easy-to-use
- Lightweight

## Installation

```bash
$ pip install brickdetector
```

## Usage

```py
from brickdetector import brickbasher

# w -- string. word to check
brickbasher(w)
```
