Skip to content

Commit 6df4c5e

Browse files
committed
Migrate to bangseongbeom/python-urlpattern
1 parent 35fda83 commit 6df4c5e

3 files changed

Lines changed: 7 additions & 7 deletions

File tree

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ version = "0.3.1"
44
authors = ["방성범 (Bang Seongbeom) <bangseongbeom@gmail.com>"]
55
edition = "2024"
66
description = "An implementation of the URL Pattern Standard for Python written in Rust."
7-
repository = "https://github.com/urlpattern/python-urlpattern"
7+
repository = "https://github.com/bangseongbeom/python-urlpattern"
88
license = "MIT"
99
keywords = ["urlpattern"]
1010
categories = ["web-programming"]

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
[![PyPI - Version](https://img.shields.io/pypi/v/urlpattern)](https://pypi.org/project/urlpattern/)
44
[![PyPI - Python Version](https://img.shields.io/pypi/pyversions/urlpattern)](https://pypi.org/project/urlpattern/)
55
[![Ruff](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/ruff/main/assets/badge/v2.json)](https://github.com/astral-sh/ruff)
6-
[![CI](https://github.com/urlpattern/python-urlpattern/actions/workflows/CI.yml/badge.svg)](https://github.com/urlpattern/python-urlpattern/actions/workflows/CI.yml)
6+
[![CI](https://github.com/bangseongbeom/python-urlpattern/actions/workflows/CI.yml/badge.svg)](https://github.com/bangseongbeom/python-urlpattern/actions/workflows/CI.yml)
77

88
An implementation of [the URL Pattern Standard](https://urlpattern.spec.whatwg.org/) for Python written in Rust.
99

@@ -29,7 +29,7 @@ py -m pip install urlpattern
2929

3030
## Usage
3131

32-
This library aims to expose an interface as close as possible to the URL Pattern Standard, but some differences are unavoidable because it is designed for Python, not JavaScript. For the exact details, please refer to [urlpattern.pyi](https://github.com/urlpattern/python-urlpattern/blob/main/urlpattern.pyi).
32+
This library aims to expose an interface as close as possible to the URL Pattern Standard, but some differences are unavoidable because it is designed for Python, not JavaScript. For the exact details, please refer to [urlpattern.pyi](https://github.com/bangseongbeom/python-urlpattern/blob/main/urlpattern.pyi).
3333

3434
Most JavaScript examples from [Chrome for Developers](https://developer.chrome.com/docs/web-platform/urlpattern) and [MDN](https://developer.mozilla.org/en-US/docs/Web/API/URL_Pattern_API) can be adapted to Python without much difficulty.
3535

@@ -150,7 +150,7 @@ with make_server("", 8000, app) as httpd:
150150

151151
Due to limitations in the dependency [denoland/rust-urlpattern](https://github.com/denoland/rust-urlpattern), it may not support all features specified in [the standard](https://urlpattern.spec.whatwg.org/).
152152

153-
Check `pytest.skip` in [`tests/test_lib.py`](https://github.com/urlpattern/python-urlpattern/blob/main/tests/test_lib.py).
153+
Check `pytest.skip` in [`tests/test_lib.py`](https://github.com/bangseongbeom/python-urlpattern/blob/main/tests/test_lib.py).
154154

155155
## Why camelCase?
156156

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,6 @@ classifiers = [
3333
dynamic = ["version"]
3434

3535
[project.urls]
36-
Homepage = "https://github.com/urlpattern/python-urlpattern"
37-
Repository = "https://github.com/urlpattern/python-urlpattern.git"
38-
Issues = "https://github.com/urlpattern/python-urlpattern/issues"
36+
Homepage = "https://github.com/bangseongbeom/python-urlpattern"
37+
Repository = "https://github.com/bangseongbeom/python-urlpattern.git"
38+
Issues = "https://github.com/bangseongbeom/python-urlpattern/issues"

0 commit comments

Comments
 (0)