Skip to content

Commit

Permalink
description change
Browse files Browse the repository at this point in the history
  • Loading branch information
itsmeadarsh2008 committed Jun 15, 2024
1 parent 57eada0 commit 3610116
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 7 deletions.
10 changes: 6 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,13 @@
<img src="https://svgshare.com/i/17F2.svg" height="300">

# flpc
![PyPI - Implementation](https://img.shields.io/pypi/implementation/flpc)
![GitHub Issues or Pull Requests](https://img.shields.io/github/issues/itsmeadarsh2008/flpc)
![PyPI - Downloads](https://img.shields.io/pypi/dm/flpc)
<img alt="Star" src="https://img.shields.io/badge/Please%20Give%20A%20Star%20%E2%AD%90-30323D">
<img alt="PyPI - Implementation" src="https://img.shields.io/pypi/implementation/flpc?style=flat-square">
<img alt="GitHub Issues or Pull Requests" src="https://img.shields.io/github/issues/itsmeadarsh2008/flpc?style=flat-square">
<img alt="PyPI - Downloads" src="https://img.shields.io/pypi/dd/flpc?style=flat-square">

A Rust-based regex port for Python3 to get faster performance. 👾

A Rust-based **[regex crate](https://crates.io/crates/regex) wrapper** for Python3 to get faster performance. 👾

## DEAD-SIMPLE
Just import `flpc` as `re` and use it as you like and the namings are same as the native `re` module. Only thing is that `match` function name of the `re` native library is replaced with `fmatch`
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[project]
name = "flpc"
version = "0.1.2"
description = "A Rust-based regex port for Python3 to faster performance. 👾"
version = "0.1.3"
description = "A Rust-based regex crate wrapper for Python3 to get faster performance. 👾"
maintainers = [{ name = "Adarsh Gourab Mahalik", email = "[email protected]" }]
readme = "README.md"
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ fn flpc(m: &Bound<'_, PyModule>) -> PyResult<()> {
m.add("__version__", "0.1.0")?;
m.add(
"__doc__",
"A Rust-based regex port for Python3 to get faster performance. 👾",
"A Rust-based regex crate wrapper for Python3 to get faster performance. 👾",
)?;
m.add("__name__", "flpc")?;
m.add("__package__", "flpc")?;
Expand Down

0 comments on commit 3610116

Please sign in to comment.