Skip to content

Latest commit

 

History

History
executable file
·
39 lines (26 loc) · 520 Bytes

README.md

File metadata and controls

executable file
·
39 lines (26 loc) · 520 Bytes

UNSHURL

  • Author: Daniel J. Umpierrez
  • License: UNLICENSE

Description

Just another short to long URL converter application.

Install

> pip3 install git+https://github.com/havocesp/unshurl

Usage

from 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)

Changelog

v0.1.1

  • Added URL short feature.

v0.1.0

  • Initial version