Metadata-Version: 2.1
Name: shortify
Version: 0.6.0
Summary: A simple URL-shortening library with CLI support.
Home-page: https://github.com/Dositan/shortify
License: MIT
Keywords: url,shortener,cli
Author: Dastan Ozgeldi
Author-email: ozgdastan@gmail.com
Requires-Python: >=3.8,<4.0
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: End Users/Desktop
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Requires-Dist: requests (==2.26.0)
Project-URL: Documentation, https://shortify.readthedocs.io/en/latest/
Project-URL: Repository, https://github.com/Dositan/shortify
Description-Content-Type: text/markdown

<h1 align="center">
    Shortify - shorten your URL
</h1>

A simple URL shortening API wrapper library written in Python by Dositan.

## Supported services
1. [TinyURL](https://tinyurl.com)
2. [Git.io](https://git.io)
3. [Shrtco.de](https://shrtco.de)
4. [Is.gd](is.gd)
5. [Clck.ru](clck.ru)

-----

## Installing
```console
$ pip install shortify

---> 100%
```

After pressing enter, pip will install all the required packages for the project.

</div>

-----

## CLI usage
Like all CLIs, `shortify` supports `--help` flag.
```console
$ shortify --help

usage: shortify [-h] {tinyurl,git} url

Shortify CLI!

.....
```

Generating a shortened URL using git.io:
```console
$ shortify git https://www.github.com/Dositan/Boribay/

https://git.io/JBsPu
```

