yarl
yarl copied to clipboard
Yet another URL library
## Are there changes in behavior for the user? No ## Checklist - [x] I think the code is well written - [x] Unit tests for the changes exist -...
## What do these changes do? Support for using the subtraction operator to calculate the difference between the *paths* of two URLs. A new URL with the relative path is...
### Is your feature request related to a problem? _No response_ ### Describe the solution you'd like #### Current Behavior The `yarl` library provides an intuitive API for handling URL...
## What do these changes do? Fancy 3.13t stuff. ## Are there changes in behavior for the user? Being able to install from wheels under free-threaded Python builds. ## Related...
### Please confirm the following - [X] I agree to follow the [aio-libs Code of Conduct][CoC] [CoC]: ../../.github/blob/master/CODE_OF_CONDUCT.md - [X] I have checked the [current issues][issue search] for duplicates. [issue...
I realized that auto-merging dependabot bumps of $sbj like https://github.com/aio-libs/yarl/pull/1185 relies on building a small subset of wheels. However, this is an important bit of infrastructure that might manifest incompatibilities...
### Please confirm the following - [X] I agree to follow the [aio-libs Code of Conduct][CoC] [CoC]: ../../.github/blob/master/CODE_OF_CONDUCT.md - [X] I have checked the [current issues][issue search] for duplicates. [issue...
### Describe the bug When requoting a redirection URL, you use `yarl.URL` and the single quotation mark gets unquoted: `%27` => `'` https://github.com/aio-libs/aiohttp/blob/4635161ee8e7ad321cca46e01ce5bfeb1ad8bf26/aiohttp/client.py#L578-L580 ```python In [1]: from yarl import URL...
### Describe the bug I want to use pass parameter in URL like requests method, but it give me different response ### To Reproduce 1. Import packages: ```python import aiohttp...