디지털 노마드/ 자연인/ IT개발

개발자

[python] URL 리다이렉션 솔루션 pyshorteners

포하 2021. 7. 14. 10:25

URL 리다이렉션은 긴 URL주소를 짧은 주소로 바꿔주는 서비스입니다.

 

파이썬 에서 설치

pip install PyShorteners

아래 함수로 사용할 수 있습니다.

import pyshorteners as ps

def ShortUrl(url):
    pyshorturl = ps.Shortener()
    short_url = pyshorturl.tinyurl.short(url)
    return short_url

약 1초정도 소요되기 때문에 관련 서비스 회사들은 csv일괄 API는 유료로 제공합니다.

 

tinyurl만 사용해보았습니다. 다른 서비스도 궁금하시면 메뉴얼 참고바랍니다.

 

오피셜 사이트 : https://pyshorteners.readthedocs.io/en/latest/

 

Welcome to pyshorteners documentation — pyshorteners 1.0.0 documentation

 

pyshorteners.readthedocs.io