Metadata-Version: 2.4
Name: mk_shorturl
Version: 1.0.0
Summary: Python library to creating a short link
Author-email: Mohamed Khaled <mk.programmed@gmail.com>
Maintainer-email: Mohamed Khaled <mk.programmed@gmail.com>
License: MIT
Project-URL: Homepage, https://shorturl-dev.netlify.app
Keywords: short,url
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE.txt
Requires-Dist: requests>=2.25.0
Dynamic: license-file

# mk_shorturl

Python library to creating:
- Create a short link

## Installation
```bash
pip install mk_shorturl
```
## Usage

```python

import mk_shorturl

# لتنزيل الحزمة cmd اكتب هذا الامر في
# pip install mk_shorturl

s = mk_shorturl.Short_url("URL")

short = s.shorten()
print("Short URL:", short)

s.generate_qr("img.png")


