rure-python
rure-python copied to clipboard
Python wrapper of the RuRe.
This line: ```python [m.groupdict() for m in rure.compile('(?P\w+)').finditer("hello there")] ``` Returns this: [{'word': 'h'}, {'word': 't'}] I would expect it to return this: [{'word': 'hello'}, {'word': 'there'}] Adding a second...
Hey, Rure-python is excellent, it would be nice if there where wheels for ARM Macs.
I was wondering if you'd be open to adding python types directly to the repo to support `mypy` and similar tools. Since `rure` supports python 2.7 the comment based type...
The installation instructions in https://github.com/davidblewett/rure-python/blob/master/README.rst instruct to set the `simd-accel` feature for rust::Regex, but starting with version 1.0.1 the SIMD features are automatically activated at runtime: https://github.com/rust-lang/regex/pull/490 I suggest stating...
* Add a git submodule for the `regex` repo * Use [milksnake](https://blog.sentry.io/2017/11/14/evolving-our-rust-with-milksnake) to generate bindings This will resolve #12, with the caveat that you will need Rust installed to build...
Minor README updates following my build from source today.
I'm trying to follow the instructions for "installing from a source tarball". I cloned the Rust regex repo, put it in a dir named 'rust-regex', and built it okay. I...
``` $ pip install rure Requirement already satisfied: rure in /home/eth/tools/virtualenvs/w3af/lib/python2.7/site-packages (0.2.0) Requirement already satisfied: six in /home/eth/tools/virtualenvs/w3af/lib/python2.7/site-packages (from rure) (1.11.0) Requirement already satisfied: cffi>=1.5.0 in /home/eth/tools/virtualenvs/w3af/lib/python2.7/site-packages (from rure) (1.11.5)...
The current pypi release only has Mac wheels. Can you release a plain sdist? not everyone runs on mac ;) Thanks!