Skip to content

rahulkp220/Tinyurl.jl

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

34 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

License: MIT Build Status codecov.io GitHub contributors GitHub issues GitHub version

ForTheBadge built-by-developers

Tinyurl.jl 😎

A Julia wrapper around https://tinyurl.com/

Installation

Since Tinyurl is registered in METADATA.jl, you can directly install it like,

julia> Pkg.add("Tinyurl")

Usage

  • Once installed, type and run
using Tinyurl 
tinyurl(your_url_here)

Example

julia> using Tinyurl

# dead simple
julia> tinyurl("http://google.com")
"http://tinyurl.com/2tx"

# hmm, is that even needed? ;-)
help?> tinyurl
search: tinyurl Tinyurl

  tinyurl(url::AbstractString)

  Shortens the supplied URL.