Bhola Kumar
Bhola Kumar
Hi, I am thinking that can we add is_domain in init of `furl` class and according to that value prepend `://` to the `url`. I have changes the code in...
``` >>> f = furl('www.google.com', is_domain=True) >>> {'url': '://www.google.com', 'scheme': '', 'username': None, 'password': None, 'host': 'www.google.com', 'host_encoded': 'www.google.com', 'port': None, 'netloc': 'www.google.com', 'origin': '://www.google.com', 'path': {'encoded': '', 'isdir': True,...
I will try to develop both features. Thanks.
Hey, Is my solution is fine ??