Metadata-Version: 2.1
Name: python-firebase-url-shortener
Version: 0.1.0
Summary: A Python Client for Firebase Dynamic Links to Shorten URLs.
Home-page: https://github.com/saadmk11/firebase_url_shortener
Author: saadmk11
Author-email: saad.mk112@gmail.com
License: GNU Public License
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
Requires-Dist: requests (==2.21.0)

# Firebase Dynamic Links URL Shortener 

This is a Python Client for [Firebase Dynamic Links](https://firebase.google.com/docs/dynamic-links/) to Shorten URLs.

## Requirements

Be sure you have the following installed on your development machine:

+ Python >= 3.6.3
+ requests


## Usage

```python
from python_firebase_url_shortener.url_shortener import UrlShortener

url_shortener = UrlShortener('your_api_key', 'domain_name')
url_shortener.get_short_link('https://www.example.com/')
```

## Note
Here Domain Name Refers to The Subdomain you set for your Dynamic Links.

