### Install flpc Python Library Source: https://github.com/itsmeadarsh2008/flpc/blob/main/README.md This snippet shows how to install the flpc library using pip, the Python package installer. ```Shell pip install flpc ``` -------------------------------- ### flpc Python API Reference Source: https://github.com/itsmeadarsh2008/flpc/blob/main/README.md This section outlines the core API functions of the flpc library, highlighting differences from Python's native `re` module. It details specific function names and usage notes for `fmatch()` and `group()`. ```APIDOC flpc API Overview: - Mirrors Python's 're' module API. - Key differences: - fmatch(): Use instead of 'match()' to avoid Python keyword conflict. - group(index): When using on a match object, always provide an index (e.g., group(0) for the entire match). Commonly available functions: - compile() - search() - findall() - finditer() - split() - sub() - subn() ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.