mesiriak / aurlcutter

Simple asynchronous python url shortener api wrapper

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

aurlcutter

Simple asynchronous python url shortener api wrapper


Source code: https://github.com/mesiriak/aurlcutter


Installation guide:

pip install aurlcutter

For watcing full list of services:

from aurlcutter import Cutter

cutter_instance = Cutter()

print(cutter_instance.cutters)

>>> ["tinyurl", "isgd", "dagd", ...]

Usage example:

from aurlcutter import Cutter

cutter_instance = Cutter()

your_link = "www.google.com"

# you can choose api what you need by yourself
cutted_link = await cutter_instance.tinyurl.cut(your_link)

About

Simple asynchronous python url shortener api wrapper

License:GNU General Public License v3.0


Languages

Language:Python 100.0%