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
Hi guys, why url_query_cleaner removes the fragment part? Is it expected?
url_query_cleaner
In [5]: url_query_cleaner('http://domain.tld/?bla=123#123123', ['bla'], remove=True) Out[5]: 'http://domain.tld/'
The text was updated successfully, but these errors were encountered:
Is it expected?
Yes. The URL would be explicitly defragmented at line 204 of url.py:
url = urldefrag(url)[0]
Sorry, something went wrong.
36cbdc2
No branches or pull requests
Hi guys, why
url_query_cleaner
removes the fragment part? Is it expected?The text was updated successfully, but these errors were encountered: