Skip to content

havocesp/unshurl

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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