mirror of
https://github.com/MCV-Software/TWBlue.git
synced 2025-04-05 03:12:29 -04:00
22 lines
718 B
Python
22 lines
718 B
Python
from __future__ import unicode_literals
|
|
from future import standard_library
|
|
standard_library.install_aliases()
|
|
import urllib.request, urllib.parse, urllib.error
|
|
import requests
|
|
from . url_shortener import URLShortener
|
|
|
|
class HKCShortener (URLShortener):
|
|
def __init__ (self, *args, **kwargs):
|
|
self.name = "HKC.im"
|
|
super(HKCShortener, self).__init__(*args, **kwargs)
|
|
|
|
def _shorten (self, url):
|
|
answer = url
|
|
api = requests.get ("http://hkc.im/yourls-api.php?action=shorturl&format=simple&url=" + urllib.parse.quote(url))
|
|
if api.status_code == 200:
|
|
answer = api.text
|
|
return answer
|
|
|
|
def created_url (self, url):
|
|
return 'hkc.im' in url.lower()
|