Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/1marcuth/py.abreai
https://github.com/1marcuth/py.abreai
Last synced: 6 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/1marcuth/py.abreai
- Owner: 1Marcuth
- Created: 2023-01-01T13:47:26.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-01-01T15:48:20.000Z (almost 2 years ago)
- Last Synced: 2024-11-06T21:05:52.967Z (6 days ago)
- Language: Python
- Size: 3.91 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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 AbreAishortener = 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())
```