├── .github └── workflows │ ├── release.yml │ └── tests.yml ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── docs ├── demo.gif └── rexi.png ├── poetry.lock ├── poetry.toml ├── pyproject.toml ├── rexi ├── __init__.py ├── cli.py ├── regex_help.py ├── rexi.py └── rexi.tcss └── tests ├── __init__.py ├── conftest.py ├── test_cli.py ├── test_logic.py └── test_ui.py /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royreznik/rexi/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royreznik/rexi/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royreznik/rexi/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royreznik/rexi/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royreznik/rexi/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royreznik/rexi/HEAD/README.md -------------------------------------------------------------------------------- /docs/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royreznik/rexi/HEAD/docs/demo.gif -------------------------------------------------------------------------------- /docs/rexi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royreznik/rexi/HEAD/docs/rexi.png -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royreznik/rexi/HEAD/poetry.lock -------------------------------------------------------------------------------- /poetry.toml: -------------------------------------------------------------------------------- 1 | [virtualenvs] 2 | in-project = true -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royreznik/rexi/HEAD/pyproject.toml -------------------------------------------------------------------------------- /rexi/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = "1.2.0" 2 | -------------------------------------------------------------------------------- /rexi/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royreznik/rexi/HEAD/rexi/cli.py -------------------------------------------------------------------------------- /rexi/regex_help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royreznik/rexi/HEAD/rexi/regex_help.py -------------------------------------------------------------------------------- /rexi/rexi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royreznik/rexi/HEAD/rexi/rexi.py -------------------------------------------------------------------------------- /rexi/rexi.tcss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royreznik/rexi/HEAD/rexi/rexi.tcss -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royreznik/rexi/HEAD/tests/test_cli.py -------------------------------------------------------------------------------- /tests/test_logic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royreznik/rexi/HEAD/tests/test_logic.py -------------------------------------------------------------------------------- /tests/test_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royreznik/rexi/HEAD/tests/test_ui.py --------------------------------------------------------------------------------