본문 바로가기

Python/예제

[Python] URL 단축(han.gl)

import requests

def shorturl(url):
    headers = {'content-type' : 'application/x-www-form-urlencoded; charset=UTF-8', 'user-agent' : 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.106 Whale/2.8.108.15 Safari/537.36'}
    data = {'url' : url, 'multiple' : '0'}
    res = requests.post('https://han.gl/shorten', data=data, headers=headers)

    return res.json()['short']

#shorturl('https://www.google.com')

 

url 단축 파이썬 예제

 

 

request로 post 요청을 날립니다.

 

header랑 data를 넣어서 요청을 합니다.

'Python > 예제' 카테고리의 다른 글

파이썬 업다운 게임 v.2  (0) 2020.12.20
[Python] 업다운 게임  (0) 2020.10.31