BTHLABS-50: Safari Web extension

Co-authored-by: Tomek Wójcik <labs@tomekwojcik.pl>
Co-committed-by: Tomek Wójcik <labs@tomekwojcik.pl>
This commit is contained in:
2025-09-08 18:11:36 +00:00
committed by Tomek Wójcik
parent ffecf780ee
commit b6d02dbe78
184 changed files with 7536 additions and 163 deletions

View File

@@ -85,6 +85,10 @@ class URL:
def password(self) -> str | None:
return self.parsed_url.password
@property
def raw_path(self) -> str:
return self.parsed_url.path
@property
def path(self) -> pathlib.PurePosixPath:
return pathlib.PurePosixPath(self.parsed_url.path)