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
Might make sense to make a dedicated module and tests for this. Some ideal features of good URL matching:
^(?P<proto>.+?)://(?P<url>.+?)(\?(?P<server_vars>.+?))?(#(?P<client_vars>.+?))?$
The text was updated successfully, but these errors were encountered:
In general, searches could be more efficient for things like this and more if we migrate our database to PostgreSQL and take advantage of its features. (https://docs.djangoproject.com/en/2.1/ref/contrib/postgres/search/#searchrank)
Another thing which could be done to help the search along is to explicitly split urls into their components:
import urllib parsed_url = urllib.parse.urlparse(url) urllib.parse.urlparse('http://me:[email protected]/hello/world?q=hi&b=bye#c=f') # ParseResult(scheme='http', netloc='me:[email protected]', path='/hello/world', params='', query='q=hi&b=bye', fragment='c=f')
Sorry, something went wrong.
Migrate database to PostgreSQL
e4fcc35
References #92
Slightly improved fuzzy url matching
cd9b5de
No branches or pull requests
Might make sense to make a dedicated module and tests for this. Some ideal features of good URL matching:
The text was updated successfully, but these errors were encountered: