├── .github ├── renovate.json └── workflows │ ├── ci-pre-publish.yml │ ├── ci-publish.yaml │ └── ci-test.yaml ├── .gitignore ├── .pre-commit-config.yaml ├── .readthedocs.yaml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── codecov.yml ├── docs ├── assets │ └── images │ │ ├── trrex_favicon.ico │ │ └── trrex_logo.png ├── how_to_guides.md ├── index.md ├── reference.md ├── requirements.txt └── tutorials.md ├── mkdocs.yml ├── pyproject.toml ├── requirements-dev.txt ├── tests ├── __init__.py ├── test_advanced_usage.py ├── test_basic_functions.py ├── test_basic_functions_hypothesis.py └── test_pandas_integration.py ├── trrex ├── __init__.py ├── benchmarks │ ├── find.py │ ├── pandas_contains.py │ └── pandas_findall.py └── trrex.py └── uv.lock /.github/renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesejo/trrex/HEAD/.github/renovate.json -------------------------------------------------------------------------------- /.github/workflows/ci-pre-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesejo/trrex/HEAD/.github/workflows/ci-pre-publish.yml -------------------------------------------------------------------------------- /.github/workflows/ci-publish.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesejo/trrex/HEAD/.github/workflows/ci-publish.yaml -------------------------------------------------------------------------------- /.github/workflows/ci-test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesejo/trrex/HEAD/.github/workflows/ci-test.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesejo/trrex/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesejo/trrex/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesejo/trrex/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesejo/trrex/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesejo/trrex/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesejo/trrex/HEAD/README.md -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesejo/trrex/HEAD/codecov.yml -------------------------------------------------------------------------------- /docs/assets/images/trrex_favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesejo/trrex/HEAD/docs/assets/images/trrex_favicon.ico -------------------------------------------------------------------------------- /docs/assets/images/trrex_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesejo/trrex/HEAD/docs/assets/images/trrex_logo.png -------------------------------------------------------------------------------- /docs/how_to_guides.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesejo/trrex/HEAD/docs/how_to_guides.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesejo/trrex/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/reference.md: -------------------------------------------------------------------------------- 1 | ::: trrex 2 | -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesejo/trrex/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /docs/tutorials.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesejo/trrex/HEAD/docs/tutorials.md -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesejo/trrex/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesejo/trrex/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesejo/trrex/HEAD/requirements-dev.txt -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_advanced_usage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesejo/trrex/HEAD/tests/test_advanced_usage.py -------------------------------------------------------------------------------- /tests/test_basic_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesejo/trrex/HEAD/tests/test_basic_functions.py -------------------------------------------------------------------------------- /tests/test_basic_functions_hypothesis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesejo/trrex/HEAD/tests/test_basic_functions_hypothesis.py -------------------------------------------------------------------------------- /tests/test_pandas_integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesejo/trrex/HEAD/tests/test_pandas_integration.py -------------------------------------------------------------------------------- /trrex/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesejo/trrex/HEAD/trrex/__init__.py -------------------------------------------------------------------------------- /trrex/benchmarks/find.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesejo/trrex/HEAD/trrex/benchmarks/find.py -------------------------------------------------------------------------------- /trrex/benchmarks/pandas_contains.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesejo/trrex/HEAD/trrex/benchmarks/pandas_contains.py -------------------------------------------------------------------------------- /trrex/benchmarks/pandas_findall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesejo/trrex/HEAD/trrex/benchmarks/pandas_findall.py -------------------------------------------------------------------------------- /trrex/trrex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesejo/trrex/HEAD/trrex/trrex.py -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesejo/trrex/HEAD/uv.lock --------------------------------------------------------------------------------