Skip to main content

A simple python wrapper for Google's Firebase REST API's.

Project description

Firebase REST API

build tests Documentation Status codecov PyPI - Python Version PyPI

A simple python wrapper for Google's Firebase REST API's.

Installation

pip install firebase-rest-api

Quick Start

In order to use this library, you first need to go through the following steps:

  1. Select or create a Firebase project from Firebase Console.

  2. Register an Web App.

Example Usage

# Import Firebase REST API library
import firebase

# Firebase configuration
config = {
   "apiKey": "apiKey",
   "authDomain": "projectId.firebaseapp.com",
   "databaseURL": "https://databaseName.firebaseio.com",
   "projectId": "projectId",
   "storageBucket": "projectId.appspot.com",
   "messagingSenderId": "messagingSenderId",
   "appId": "appId"
}

# Instantiates a Firebase app
app = firebase.initialize_app(config)


# Firebase Authentication
auth = app.auth()

# Create new user and sign in
auth.create_user_with_email_and_password(email, password)
user = auth.sign_in_with_email_and_password(email, password)


# Firebase Realtime Database
db = app.database()

# Data to save in database
data = {
   "name": "Robert Downey Jr.",
   "email": user.get('email')
}

# Store data to Firebase Database
db.child("users").push(data, user.get('idToken'))


# Firebase Storage
storage = app.storage()

# File to store in storage
file_path = 'static/img/example.png'

# Store file to Firebase Storage
storage.child(user.get('localId')).child('uploaded-picture.png').put(file_path, user.get('idToken'))

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

firebase-rest-api-1.0.1.tar.gz (38.5 kB view details)

Uploaded Source

Built Distribution

firebase_rest_api-1.0.1-py3-none-any.whl (21.3 kB view details)

Uploaded Python 3

File details

Details for the file firebase-rest-api-1.0.1.tar.gz.

File metadata

  • Download URL: firebase-rest-api-1.0.1.tar.gz
  • Upload date:
  • Size: 38.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: python-requests/2.28.1

File hashes

Hashes for firebase-rest-api-1.0.1.tar.gz
Algorithm Hash digest
SHA256 b1240f87d23c124ba899bd649e1d60f3930693234e066bf3c9525550d6cdd314
MD5 36c778bdf9e20724870a72ece4acdcf0
BLAKE2b-256 aa12704144627959a5780992e749f7f9c5426deaae52ad66ba5b64fec71cff4f

See more details on using hashes here.

File details

Details for the file firebase_rest_api-1.0.1-py3-none-any.whl.

File metadata

File hashes

Hashes for firebase_rest_api-1.0.1-py3-none-any.whl
Algorithm Hash digest
SHA256 e5c00064e311729a0005063c96aa988333ce2c7b9c760bdf24309cfc8fcc3f2d
MD5 f14d98a93992de6d5ab8612cd2fc7302
BLAKE2b-256 5060f3ddc60d90139592813d0ad9760d7abc0b343ca9ce4b6dd4f8d7e2b01465

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page