Metadata-Version: 2.4
Name: pyfastgrep
Version: 0.1.1
License-File: LICENSE
Summary: ripgrep powered search inside python without subprocess overhead
Author: Your Name
Requires-Python: >=3.8
Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM

# pyfastgrep

Fast file search for Python powered by ripgrep's engine.

## Install

pip install pyfastgrep

## Usage

```python
import pyfastgrep

results = pyfastgrep.search(r'"/[^"]*-[^"]*"', "src")

for r in results:
    print(r)
```

## Features
1. Uses ripgrep internals (fast)
2. Parallel search
3. Respects .gitignore
4. Python-friendly API
