Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/1marcuth/py.abreai


https://github.com/1marcuth/py.abreai

Last synced: 6 days ago
JSON representation

Awesome Lists containing this project

README

        

# Install
**Pypi**
```
pip install abreai
```

**GitHub**
```
pip install git+https://github.com/1Marcuth/encurtanet-py.git
```

# Simple use example
```py
from abreai import AbreAi

shortener = AbreAi()

url_info = shortener.shorten(
url="https://google.com", # Your url
alias="url-alias" # Alias of the url
)
shortened_url = url_info.get_shortened_url()

print(url_info.get_shortened_url())
```