Simple URL shortener CLI written in Python. Uses free API from https://oor.lu
pip install oorlu-cli
... or manually
pip install .
... or if you just to play with code in dev-env:
git clone https://github.com/adamwojt/yee-cli.git
cd yee-cli
poetry install
poetry shell
oorlu https://google.com
No config needed.
Usage: oorlu [OPTIONS] [LONG_URL*]`
--limit=int | Set click limit for URL (default: no limit) |
-h, --help | Show this message and exit. |
* url max length: 500.
Example Usage:
oorlu google.com
oorlu www.clicklimit2.com -l 2
- Connection Issues (make sure):
- You have internet connection.
- https://oor.lu is alive.
- Other:
- For more debug ideas visit https://github.com/adamwojt/ur_l - API source code
- Uses click
- Uses requests
- Created with Cookiecutter and the johanvergeer/cookiecutter-poetry project template.