Metadata-Version: 2.1
Name: py-fdl
Version: 1.1.0
Summary: Python client for Firebase Dynamic Links
Home-page: https://github.com/heykarimoff/py-fdl
Author: Mukhammad Karimov
Author-email: hey@karimoff.me
Maintainer: Mukhammad Karimov
Maintainer-email: hey@karimoff.me
License: MIT
Project-URL: Bug Reports, https://github.com/heykarimoff/py-fdl/issues
Project-URL: Funding, https://www.karimoff.me
Project-URL: Say Thanks!, https://saythanks.io/to/heykarimoff
Project-URL: Source, https://github.com/heykarimoff/py-fdl
Keywords: firebase dynamic links super links
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Description-Content-Type: text/markdown
Provides-Extra: dev
Requires-Dist: requests
Provides-Extra: dev
Requires-Dist: pytest; extra == 'dev'

[![Build Status](https://travis-ci.org/heykarimoff/firebase_dynamic_links.svg?branch=master)](https://travis-ci.org/heykarimoff/firebase_dynamic_links)
[![Say Thanks!](https://img.shields.io/badge/Say%20Thanks-!-1EAEDB.svg)](https://saythanks.io/to/heykarimoff)
# py-fdl
Python client for [Firebase Dynamic Links](https://firebase.google.com/docs/dynamic-links/)

## Get started
Get you *Web API Key* from [Firebase console Settings page](https://console.firebase.google.com/project/_/settings/general/).
Reference: [Create Dynamic Links with the REST API](https://firebase.google.com/docs/dynamic-links/rest) 

## Usage

```python

from firebase_dynamic_links import dynamic_link_builder

builder = dynamic_link_builder(api_key='your_api_key')

long_link = builder.generate_long_link(app_code='your_app_code', isi='com.example.app')
short_link = builder.generate_short_link(app_code='your_app_code', isi='com.example.app')

```

## Install

```bash
pip install py-fdl
```

