Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/saadmk11/python_firebase_url_shortener
This is a Python Client for Firebase Dynamic Links to Create Short URLs.
https://github.com/saadmk11/python_firebase_url_shortener
firebase firebasedynamiclinks python python3 pythonclient pythonurlshortener requests url-shortener url-shortener-microservice urlshortener
Last synced: 13 days ago
JSON representation
This is a Python Client for Firebase Dynamic Links to Create Short URLs.
- Host: GitHub
- URL: https://github.com/saadmk11/python_firebase_url_shortener
- Owner: saadmk11
- License: gpl-3.0
- Created: 2019-01-03T21:18:35.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2023-05-22T21:55:01.000Z (over 1 year ago)
- Last Synced: 2024-12-13T05:08:48.522Z (21 days ago)
- Topics: firebase, firebasedynamiclinks, python, python3, pythonclient, pythonurlshortener, requests, url-shortener, url-shortener-microservice, urlshortener
- Language: Python
- Homepage: https://pypi.org/project/python-firebase-url-shortener/
- Size: 17.6 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# 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
+ pip## Installation
Install the package:
```bash
pip install python-firebase-url-shortener
```## Usage
```python
from python_firebase_url_shortener.url_shortener import UrlShortenerurl_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.