python 단축 url 생성하기
작성자 정보
- 마스터 작성
- 작성일
컨텐츠 정보
- 222 조회
- 목록
본문
1.pyshorteners 설치하기
라이브러리 설치pip install pyshorteners
2.전체코드
import pyshorteners as ps
link = "https://todaykeywords.kr/" #바꿀 url
sh = ps.Shortener()
short_url = sh.bitly.short(link)
print(short_url)
링크를 pyshorteners 라이브러리를 사용하여 단축 url로 바꿀 수 있습니다.
bitly를 대신하여 아래에 있는 api를 이용 할 수 있습니다.
[‘adfly’, ‘bitly’, ‘chilpit’, ‘clckru’, ‘cuttly’, ‘dagd’, ‘gitio’, ‘isgd’, ‘nullpointer’, ‘osdb’, ‘owly’, ‘post’, ‘qpsru’, ‘shortcm’, ‘tinycc’, ‘tinyurl’]
이 글은 외부글을 참고하여 만들었습니다.
[추가 테스트 해본것들] - 좋음 보통 나쁨
dagd- 무료 너무 많이 사용하면 ip블럭 됨
clckru - 무료
osdb - 무료
tinyurl - 무료 (네이버카페에 못올림)
adfly - 유료
bitly - 유료
post - 유료
owly - 유료
cuttly - 유료
tinycc - 안됨
shortcm - 안됨
chilpit - 안됨
gitio - 안됨
nullpointer - 안됨
qpsru - 안됨
관련자료
-
이전
-
다음
댓글 0
등록된 댓글이 없습니다.