Metadata-Version: 2.3
Name: py-rust-regex
Version: 0.1.3
Classifier: Programming Language :: Rust
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
License-File: LICENSE
Requires-Python: >=3.8
Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM
Project-URL: homepage, https://github.com/dttvn0010/py-rust-regex

## Python Wrapper for Rust regex crate  

### Install:  
    pip install py-rust-regex

### Usage:  

```python
import py_rust_regex as pr
reg = pr.new_regex('[0-9]+')
for match in reg.find_all('abc123def456'):
    print(match.range.start, match.range.end, match.len)
```

### Github:  
https://github.com/dttvn0010/py-rust-regex

