{"id":15663995,"url":"https://github.com/facelessuser/backrefs","last_synced_at":"2025-04-13T16:12:41.189Z","repository":{"id":8299235,"uuid":"57872901","full_name":"facelessuser/backrefs","owner":"facelessuser","description":"Wrapper around re or regex that adds additional back references","archived":false,"fork":false,"pushed_at":"2025-02-27T16:59:08.000Z","size":20106,"stargazers_count":12,"open_issues_count":1,"forks_count":1,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-04-13T16:12:32.400Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://facelessuser.github.io/backrefs/","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/facelessuser.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":"SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null},"funding":{"github":"facelessuser","custom":["https://www.paypal.me/facelessuser"]}},"created_at":"2016-05-02T07:41:09.000Z","updated_at":"2025-02-27T16:58:50.000Z","dependencies_parsed_at":"2024-05-07T14:31:08.004Z","dependency_job_id":"6cc95c67-4411-4827-8b16-445b13fb986a","html_url":"https://github.com/facelessuser/backrefs","commit_stats":{"total_commits":353,"total_committers":5,"mean_commits":70.6,"dds":"0.022662889518413554","last_synced_commit":"d8518ec657e67b5b4ae58e9fd93b90863ab731ee"},"previous_names":[],"tags_count":53,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/facelessuser%2Fbackrefs","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/facelessuser%2Fbackrefs/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/facelessuser%2Fbackrefs/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/facelessuser%2Fbackrefs/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/facelessuser","download_url":"https://codeload.github.com/facelessuser/backrefs/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248741195,"owners_count":21154255,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-10-03T13:40:50.173Z","updated_at":"2025-04-13T16:12:41.182Z","avatar_url":"https://github.com/facelessuser.png","language":"Python","funding_links":["https://github.com/sponsors/facelessuser","https://www.paypal.me/facelessuser"],"categories":[],"sub_categories":[],"readme":"[![Donate via PayPal][donate-image]][donate-link]\n[![Discord][discord-image]][discord-link]\n[![Build][github-ci-image]][github-ci-link]\n[![Coverage Status][codecov-image]][codecov-link]\n[![PyPI Version][pypi-image]][pypi-link]\n[![PyPI Downloads][pypi-down]][pypi-link]\n[![PyPI - Python Version][python-image]][pypi-link]\n![License][license-image-mit]\n\n# Backrefs\n\nBackrefs is a wrapper around Python's built-in [Re][re] and the 3rd party [Regex][regex] library.  Backrefs adds various\nadditional back references (and a couple other features) that are known to some regular expression engines, but not to\nPython's Re and/or Regex.  The supported back references actually vary depending on the regular expression engine being\nused as the engine may already have support for some.\n\n```python\n\u003e\u003e\u003e from backrefs import bre\n\u003e\u003e\u003e pattern = bre.compile(r'(\\p{Letter}+)')\n\u003e\u003e\u003e pattern.sub(r'\\C\\1\\E', 'sometext')\n'SOMETEXT'\n```\n\n# Documentation\n\nhttps://facelessuser.github.io/backrefs/\n\n# License\n\nMIT\n\n[github-ci-image]: https://github.com/facelessuser/backrefs/workflows/build/badge.svg\n[github-ci-link]: https://github.com/facelessuser/backrefs/actions?query=workflow%3Abuild+branch%3Amaster\n[discord-image]: https://img.shields.io/discord/678289859768745989?logo=discord\u0026logoColor=aaaaaa\u0026color=mediumpurple\u0026labelColor=333333\n[discord-link]:https://discord.gg/TWs8Tgr\n[codecov-image]: https://img.shields.io/codecov/c/github/facelessuser/backrefs/master.svg?logo=codecov\u0026logoColor=aaaaaa\u0026labelColor=333333\n[codecov-link]: https://codecov.io/github/facelessuser/backrefs\n[pypi-image]: https://img.shields.io/pypi/v/backrefs.svg?logo=pypi\u0026logoColor=aaaaaa\u0026labelColor=333333\n[pypi-down]: https://img.shields.io/pypi/dm/backrefs.svg?logo=pypi\u0026logoColor=aaaaaa\u0026labelColor=333333\n[pypi-link]: https://pypi.python.org/pypi/backrefs\n[python-image]: https://img.shields.io/pypi/pyversions/backrefs?logo=python\u0026logoColor=aaaaaa\u0026labelColor=333333\n[license-image-mit]: https://img.shields.io/badge/license-MIT-blue.svg?labelColor=333333\n[donate-image]: https://img.shields.io/badge/Donate-PayPal-3fabd1?logo=paypal\n[donate-link]: https://www.paypal.me/facelessuser\n\n[re]: https://docs.python.org/3/library/re.html\n[regex]: https://pypi.python.org/pypi/regex\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffacelessuser%2Fbackrefs","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffacelessuser%2Fbackrefs","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffacelessuser%2Fbackrefs/lists"}