We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
query
fragments
We need an interface to uri query parameters and fragments.
Could be:
class UPath(...): @property def query(self) -> Mapping[str, str]: ... @property def fragment(self) -> str: ... def with_query(self, **params: Any) -> UPath: ... def with_fragment(self, fragment: str) -> UPath: ...
The text was updated successfully, but these errors were encountered:
Once this is implemented we can deprecate ._url
._url
Sorry, something went wrong.
No branches or pull requests
We need an interface to uri
query
parameters andfragments
.Could be:
The text was updated successfully, but these errors were encountered: