https://github.com/ryzeon-dev/unshorten
Url unshortener written in Python
https://github.com/ryzeon-dev/unshorten
Last synced: 2 months ago
JSON representation
Url unshortener written in Python
- Host: GitHub
- URL: https://github.com/ryzeon-dev/unshorten
- Owner: ryzeon-dev
- License: gpl-3.0
- Created: 2023-06-30T10:53:46.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-06-30T11:10:06.000Z (almost 2 years ago)
- Last Synced: 2025-02-04T15:47:19.640Z (4 months ago)
- Language: Python
- Size: 16.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# unshorten
Url unshortener written in Python## Usage
- the usage requires the package "requests" to be installed### Basic usage requires the short URL you wish to unshorten
```commandline
unshorten https://short.url/
```
output:
```
Provided url -> https://short.url/
Unshortened url -> https://unshortened.url/
```### Add the "-c" or "--concise" option to obtain a more concise output
```commandline
unshorten -c https://short.url/
```
output:
```
https://unshortened.url/
```If nor "https://" nor "http://" is found in the url, "https://" is assumed