- Author: Daniel J. Umpierrez
- License: UNLICENSE
Just another short to long URL converter application.
> pip3 install git+https://github.com/havocesp/unshurlfrom unshurl.core import unshurl, shurl
# URL to short or un-short
url = 'https://github.com/havocesp/unshurl'
# URL short
url = shurl(url)
print(url)
# URL un-short
url = unshurl(url)
print(url)- Added URL short feature.
- Initial version