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

why is str() the same as repr()? #49

Closed
wbolster opened this issue Nov 16, 2017 · 3 comments
Closed

why is str() the same as repr()? #49

wbolster opened this issue Nov 16, 2017 · 3 comments

Comments

@wbolster
Copy link
Contributor

>>> url = URL.from_text('https://example.org/api/v2')

>>> str(url)
"URL.from_text('https://example.org/api/v2')"

>>> repr(url)
"URL.from_text('https://example.org/api/v2')"

why is str() not just the url?

https://example.org/api/v2

the requests library "stringifies" urls (by design). in practice that means that for instance furl instances can be passed directly. this is not possible with hyperlink:

>>> from hyperlink import URL
>>> import requests

>>> url = URL.from_text('https://example.org/api/v2')
>>> requests.get(url)
[...]
InvalidSchema: No connection adapters were found for 'URL.from_text('https://example.org/api/v2')'
@mahmoud
Copy link
Member

mahmoud commented Dec 1, 2017

That's a good point, I don't think I'd be opposed to this change. Maybe @Lukasa has an opinion?

@mahmoud
Copy link
Member

mahmoud commented Jan 7, 2018

Just merged the fix, this will be released soon! Just need #54 and maybe #56 merged and we'll have a brand new hyperlink 18 :)

Thanks again for the issue!

@wbolster
Copy link
Contributor Author

wbolster commented Jan 7, 2018

awesome, keep up the good work.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants