Bases:object Reference represents a node in the Firebase realtime database. - child(path)
Returns a Reference to the specified child node. The path may point to an immediate child of the current Reference, or a deeply nestedchild. Child paths must not begin with ‘/’. - Parameters:
path – Path to the child node. - Returns:
A database Reference representing the specified child node. - Return type:
Reference - Raises:
ValueError – If the child path is not a string, not well-formed or begins with ‘/’.
- delete()
Deletes this node from the database. - Raises:
FirebaseError – If an error occurs while communicating with the remote database server.
- get(etag=False,shallow=False)
Returns the value, and optionally the ETag, at the current location of the database. - Parameters:
etag – A boolean indicating whether the Etag value should be returned or not (optional). shallow – A boolean indicating whether to execute a shallow read (optional). Shallowreads do not retrieve the child nodes of the current database location. Cannot beset to True ifetag is also set to True.
- Returns:
If etag is False returns the decoded JSON value of the current database location.If etag is True, returns a 2-tuple consisting of the decoded JSON value and the Etagassociated with the current database location. - Return type:
object - Raises:
- get_if_changed(etag)
Gets data in this location only if the specified ETag does not match. - Parameters:
etag – The ETag value to be checked against the ETag of the current location. - Returns:
A 3-tuple consisting of a boolean, a decoded JSON value and an ETag. If the ETagspecified by the caller did not match, the boolen value will be True and the JSONand ETag values would reflect the corresponding values in the database. If the ETagmatched, the boolean value will be False and the other elements of the tuple will beNone. - Return type:
tuple - Raises:
- listen(callback)
Registers thecallback function to receive realtime updates. The specified callback function will get invoked withdb.Event objects for eachrealtime update received from the database. It will also get called whenever the SDKreconnects to the server due to network issues or credential expiration. In general,the OAuth2 credentials used to authorize connections to the server expire every hour.Therefore clients should expect thecallback to fire at least once every hour, even ifthere are no updates in the database. This API is based on the event streaming support available in the Firebase REST API. Eachcall tolisten() starts a new HTTP connection and a background thread. This is anexperimental feature. It currently does not honor the auth overrides and timeout settings.Cannot be used in thread-constrained environments like Google App Engine. - Parameters:
callback – A function to be called when a data change is detected. - Returns:
An object that can be used to stop the event listener. - Return type:
ListenerRegistration - Raises:
FirebaseError – If an error occurs while starting the initial HTTP connection.
- order_by_child(path)
Returns a Query that orders data by child values. Returned Query can be used to set additional parameters, and execute complex databasequeries (e.g. limit queries, range queries). - Parameters:
path – Path to a valid child of the current Reference. - Returns:
A database Query instance. - Return type:
Query - Raises:
ValueError – If the child path is not a string, not well-formed or None.
- order_by_key()
Creates a Query that orderes data by key. Returned Query can be used to set additional parameters, and execute complex databasequeries (e.g. limit queries, range queries). - Returns:
A database Query instance. - Return type:
Query
- order_by_value()
Creates a Query that orderes data by value. Returned Query can be used to set additional parameters, and execute complex databasequeries (e.g. limit queries, range queries). - Returns:
A database Query instance. - Return type:
Query
- push(value='')
Creates a new child node. The optional value argument can be used to provide an initial value for the child node. Ifno value is provided, child node will have empty string as the default value. - Parameters:
value – JSON-serializable initial value for the child node (optional). - Returns:
A Reference representing the newly created child node. - Return type:
Reference - Raises:
ValueError – If the value is None. TypeError – If the value is not JSON-serializable. FirebaseError – If an error occurs while communicating with the remote database server.
- set(value)
Sets the data at this location to the given value. The value must be JSON-serializable and not None. - Parameters:
value – JSON-serializable value to be set at this location. - Raises:
ValueError – If the provided value is None. TypeError – If the value is not JSON-serializable. FirebaseError – If an error occurs while communicating with the remote database server.
- set_if_unchanged(expected_etag,value)
Conditonally sets the data at this location to the given value. Sets the data at this location to the given value only ifexpected_etag is same as theETag value in the database. - Parameters:
- Returns:
A 3-tuple consisting of a boolean, a decoded JSON value and an ETag. The booleanindicates whether the set operation was successful or not. The decoded JSON and theETag corresponds to the latest value in this database location. - Return type:
tuple - Raises:
ValueError – If the value is None, or if expected_etag is not a string. FirebaseError – If an error occurs while communicating with the remote database server.
- transaction(transaction_update)
Atomically modifies the data at this location. Unlike a normalset(), which just overwrites the data regardless of its previous state,transaction() is used to modify the existing value to a new value, ensuring there areno conflicts with other clients simultaneously writing to the same location. This is accomplished by passing an update function which is used to transform the currentvalue of this reference into a new value. If another client writes to this location beforethe new value is successfully saved, the update function is called again with the newcurrent value, and the write will be retried. In case of repeated failures, this methodwill retry the transaction up to 25 times before giving up and raising aTransactionAbortedError. The update function may also force an early abort by raising anexception instead of returning a value. - Parameters:
transaction_update – A function which will be passed the current data stored at thislocation. The function should return the new value it would like written. Ifan exception is raised, the transaction will be aborted, and the data at thislocation will not be modified. The exceptions raised by this function arepropagated to the caller of the transaction method. - Returns:
New value of the current database Reference (only if the transaction commits). - Return type:
object - Raises:
- update(value)
Updates the specified child keys of this Reference to the provided values. - Parameters:
value – A dictionary containing the child keys to update, and their new values. - Raises:
|