Skip to content
New issue

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

Creating a URL without a scheme, then adding one, results in scheme:///url, with 3 / #18

Open
MicaelJarniac opened this issue Aug 9, 2022 · 0 comments
Labels
bug Something isn't working

Comments

@MicaelJarniac
Copy link
Owner

from buildurl import BuildURL

url = BuildURL("example.com")
url.get  # example.com
url.scheme = "https"
url.get  # https:///example.com
url.parts  # ('https', '', 'example.com', '', '')
@MicaelJarniac MicaelJarniac added the bug Something isn't working label Aug 9, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

1 participant